text
stringlengths 9
498k
| input_ids
sequencelengths 5
331k
| attention_mask
sequencelengths 5
331k
|
---|---|---|
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* The Original Code is Copyright (C) 2017 Blender Foundation.
* All rights reserved.
*/
/** \file
* \ingroup spoutliner
*/
#include <string.h>
#include "BLI_utildefines.h"
#include "DNA_action_types.h"
#include "DNA_screen_types.h"
#include "DNA_space_types.h"
#include "BKE_context.h"
#include "BKE_outliner_treehash.h"
#include "BKE_layer.h"
#include "BKE_object.h"
#include "ED_armature.h"
#include "ED_outliner.h"
#include "UI_interface.h"
#include "UI_view2d.h"
#include "outliner_intern.h"
/* -------------------------------------------------------------------- */
/** \name Tree View Context
* \{ */
void outliner_viewcontext_init(const bContext *C, TreeViewContext *tvc)
{
memset(tvc, 0, sizeof(*tvc));
/* Scene level. */
tvc->scene = CTX_data_scene(C);
tvc->view_layer = CTX_data_view_layer(C);
/* Objects. */
tvc->obact = OBACT(tvc->view_layer);
if (tvc->obact != NULL) {
tvc->ob_edit = OBEDIT_FROM_OBACT(tvc->obact);
if ((tvc->obact->type == OB_ARMATURE) ||
/* This could be made into it's own function. */
((tvc->obact->type == OB_MESH) && tvc->obact->mode & OB_MODE_WEIGHT_PAINT)) {
tvc->ob_pose = BKE_object_pose_armature_get(tvc->obact);
}
}
}
/** \} */
/**
* Try to find an item under y-coordinate \a view_co_y (view-space).
* \note Recursive
*/
TreeElement *outliner_find_item_at_y(const SpaceOutliner *soops,
const ListBase *tree,
float view_co_y)
{
for (TreeElement *te_iter = tree->first; te_iter; te_iter = te_iter->next) {
if (view_co_y < (te_iter->ys + UI_UNIT_Y)) {
if (view_co_y >= te_iter->ys) {
/* co_y is inside this element */
return te_iter;
}
else if (TSELEM_OPEN(te_iter->store_elem, soops)) {
/* co_y is lower than current element, possibly inside children */
TreeElement *te_sub = outliner_find_item_at_y(soops, &te_iter->subtree, view_co_y);
if (te_sub) {
return te_sub;
}
}
}
}
return NULL;
}
static TreeElement *outliner_find_item_at_x_in_row_recursive(const TreeElement *parent_te,
float view_co_x,
bool *r_merged)
{
TreeElement *child_te = parent_te->subtree.first;
bool over_element = false;
while (child_te) {
over_element = (view_co_x > child_te->xs) && (view_co_x < child_te->xend);
if ((child_te->flag & TE_ICONROW) && over_element) {
return child_te;
}
else if ((child_te->flag & TE_ICONROW_MERGED) && over_element) {
if (r_merged) {
*r_merged = true;
}
return child_te;
}
TreeElement *te = outliner_find_item_at_x_in_row_recursive(child_te, view_co_x, r_merged);
if (te != child_te) {
return te;
}
child_te = child_te->next;
}
/* return parent if no child is hovered */
return (TreeElement *)parent_te;
}
/**
* Collapsed items can show their children as click-able icons. This function tries to find
* such an icon that represents the child item at x-coordinate \a view_co_x (view-space).
*
* \return a hovered child item or \a parent_te (if no hovered child found).
*/
TreeElement *outliner_find_item_at_x_in_row(const SpaceOutliner *soops,
const TreeElement *parent_te,
float view_co_x,
bool *r_merged)
{
/* if parent_te is opened, it doesn't show children in row */
if (!TSELEM_OPEN(TREESTORE(parent_te), soops)) {
return outliner_find_item_at_x_in_row_recursive(parent_te, view_co_x, r_merged);
}
return (TreeElement *)parent_te;
}
/* Find specific item from the treestore */
TreeElement *outliner_find_tree_element(ListBase *lb, const TreeStoreElem *store_elem)
{
TreeElement *te, *tes;
for (te = lb->first; te; te = te->next) {
if (te->store_elem == store_elem) {
return te;
}
tes = outliner_find_tree_element(&te->subtree, store_elem);
if (tes) {
return tes;
}
}
return NULL;
}
/* Find parent element of te */
TreeElement *outliner_find_parent_element(ListBase *lb,
TreeElement *parent_te,
const TreeElement *child_te)
{
TreeElement *te;
for (te = lb->first; te; te = te->next) {
if (te == child_te) {
return parent_te;
}
TreeElement *find_te = outliner_find_parent_element(&te->subtree, te, child_te);
if (find_te) {
return find_te;
}
}
return NULL;
}
/* tse is not in the treestore, we use its contents to find a match */
TreeElement *outliner_find_tse(SpaceOutliner *soops, const TreeStoreElem *tse)
{
TreeStoreElem *tselem;
if (tse->id == NULL) {
return NULL;
}
/* check if 'tse' is in treestore */
tselem = BKE_outliner_treehash_lookup_any(soops->treehash, tse->type, tse->nr, tse->id);
if (tselem) {
return outliner_find_tree_element(&soops->tree, tselem);
}
return NULL;
}
/* Find treestore that refers to given ID */
TreeElement *outliner_find_id(SpaceOutliner *soops, ListBase *lb, const ID *id)
{
for (TreeElement *te = lb->first; te; te = te->next) {
TreeStoreElem *tselem = TREESTORE(te);
if (tselem->type == 0) {
if (tselem->id == id) {
return te;
}
}
TreeElement *tes = outliner_find_id(soops, &te->subtree, id);
if (tes) {
return tes;
}
}
return NULL;
}
TreeElement *outliner_find_posechannel(ListBase *lb, const bPoseChannel *pchan)
{
for (TreeElement *te = lb->first; te; te = te->next) {
if (te->directdata == pchan) {
return te;
}
TreeStoreElem *tselem = TREESTORE(te);
if (ELEM(tselem->type, TSE_POSE_BASE, TSE_POSE_CHANNEL)) {
TreeElement *tes = outliner_find_posechannel(&te->subtree, pchan);
if (tes) {
return tes;
}
}
}
return NULL;
}
TreeElement *outliner_find_editbone(ListBase *lb, const EditBone *ebone)
{
for (TreeElement *te = lb->first; te; te = te->next) {
if (te->directdata == ebone) {
return te;
}
TreeStoreElem *tselem = TREESTORE(te);
if (ELEM(tselem->type, 0, TSE_EBONE)) {
TreeElement *tes = outliner_find_editbone(&te->subtree, ebone);
if (tes) {
return tes;
}
}
}
return NULL;
}
ID *outliner_search_back(SpaceOutliner *UNUSED(soops), TreeElement *te, short idcode)
{
TreeStoreElem *tselem;
te = te->parent;
while (te) {
tselem = TREESTORE(te);
if (tselem->type == 0 && te->idcode == idcode) {
return tselem->id;
}
te = te->parent;
}
return NULL;
}
/**
* Iterate over all tree elements (pre-order traversal), executing \a func callback for
* each tree element matching the optional filters.
*
* \param filter_te_flag: If not 0, only TreeElements with this flag will be visited.
* \param filter_tselem_flag: Same as \a filter_te_flag, but for the TreeStoreElem.
* \param func: Custom callback to execute for each visited item.
*/
bool outliner_tree_traverse(const SpaceOutliner *soops,
ListBase *tree,
int filter_te_flag,
int filter_tselem_flag,
TreeTraversalFunc func,
void *customdata)
{
for (TreeElement *te = tree->first, *te_next; te; te = te_next) {
TreeTraversalAction func_retval = TRAVERSE_CONTINUE;
/* in case te is freed in callback */
TreeStoreElem *tselem = TREESTORE(te);
ListBase subtree = te->subtree;
te_next = te->next;
if (filter_te_flag && (te->flag & filter_te_flag) == 0) {
/* skip */
}
else if (filter_tselem_flag && (tselem->flag & filter_tselem_flag) == 0) {
/* skip */
}
else {
func_retval = func(te, customdata);
}
/* Don't access te or tselem from now on! Might've been freed... */
if (func_retval == TRAVERSE_BREAK) {
return false;
}
if (func_retval == TRAVERSE_SKIP_CHILDS) {
/* skip */
}
else if (!outliner_tree_traverse(
soops, &subtree, filter_te_flag, filter_tselem_flag, func, customdata)) {
return false;
}
}
return true;
}
float outliner_restrict_columns_width(const SpaceOutliner *soops)
{
int num_columns = 0;
switch (soops->outlinevis) {
case SO_DATA_API:
case SO_SEQUENCE:
case SO_LIBRARIES:
return 0.0f;
case SO_ID_ORPHANS:
num_columns = 3;
break;
case SO_VIEW_LAYER:
if (soops->show_restrict_flags & SO_RESTRICT_HOLDOUT) {
num_columns++;
}
if (soops->show_restrict_flags & SO_RESTRICT_INDIRECT_ONLY) {
num_columns++;
}
ATTR_FALLTHROUGH;
case SO_SCENES:
if (soops->show_restrict_flags & SO_RESTRICT_SELECT) {
num_columns++;
}
if (soops->show_restrict_flags & SO_RESTRICT_HIDE) {
num_columns++;
}
if (soops->show_restrict_flags & SO_RESTRICT_VIEWPORT) {
num_columns++;
}
if (soops->show_restrict_flags & SO_RESTRICT_RENDER) {
num_columns++;
}
break;
}
return (num_columns * UI_UNIT_X + V2D_SCROLL_WIDTH);
}
/* Find first tree element in tree with matching treestore flag */
TreeElement *outliner_find_element_with_flag(const ListBase *lb, short flag)
{
for (TreeElement *te = lb->first; te; te = te->next) {
if ((TREESTORE(te)->flag & flag) == flag) {
return te;
}
TreeElement *active_element = outliner_find_element_with_flag(&te->subtree, flag);
if (active_element) {
return active_element;
}
}
return NULL;
}
/* Find if element is visible in the outliner tree */
bool outliner_is_element_visible(const TreeElement *te)
{
TreeStoreElem *tselem;
while (te->parent) {
tselem = TREESTORE(te->parent);
if (tselem->flag & TSE_CLOSED) {
return false;
}
else {
te = te->parent;
}
}
return true;
}
/* Find if x coordinate is over an icon or name */
bool outliner_item_is_co_over_name_icons(const TreeElement *te, float view_co_x)
{
/* Special case: count area left of Scene Collection as empty space */
bool outside_left = (TREESTORE(te)->type == TSE_VIEW_COLLECTION_BASE) ?
(view_co_x > te->xs + UI_UNIT_X) :
(view_co_x > te->xs);
return outside_left && (view_co_x < te->xend);
}
/* Find if x coordinate is over element disclosure toggle */
bool outliner_item_is_co_within_close_toggle(const TreeElement *te, float view_co_x)
{
return (view_co_x > te->xs) && (view_co_x < te->xs + UI_UNIT_X);
}
/* Scroll view vertically while keeping within total bounds */
void outliner_scroll_view(ARegion *ar, int delta_y)
{
int y_min = MIN2(ar->v2d.cur.ymin, ar->v2d.tot.ymin);
ar->v2d.cur.ymax += delta_y;
ar->v2d.cur.ymin += delta_y;
/* Adjust view if delta placed view outside total area */
int offset;
if (ar->v2d.cur.ymax > -UI_UNIT_Y) {
offset = ar->v2d.cur.ymax;
ar->v2d.cur.ymax -= offset;
ar->v2d.cur.ymin -= offset;
}
else if (ar->v2d.cur.ymin < y_min) {
offset = y_min - ar->v2d.cur.ymin;
ar->v2d.cur.ymax += offset;
ar->v2d.cur.ymin += offset;
}
}
/* Get base of object under cursor. Used for eyedropper tool */
Base *ED_outliner_give_base_under_cursor(bContext *C, const int mval[2])
{
ARegion *ar = CTX_wm_region(C);
ViewLayer *view_layer = CTX_data_view_layer(C);
SpaceOutliner *soops = CTX_wm_space_outliner(C);
TreeElement *te;
Base *base = NULL;
float view_mval[2];
UI_view2d_region_to_view(&ar->v2d, mval[0], mval[1], &view_mval[0], &view_mval[1]);
te = outliner_find_item_at_y(soops, &soops->tree, view_mval[1]);
if (te) {
TreeStoreElem *tselem = TREESTORE(te);
if (tselem->type == 0) {
Object *ob = (Object *)tselem->id;
base = (te->directdata) ? (Base *)te->directdata : BKE_view_layer_base_find(view_layer, ob);
}
}
return base;
}
| [
1,
4949,
13,
334,
910,
1824,
338,
3889,
7047,
29936,
366,
508,
2654,
391,
2666,
372,
322,
29914,
272,
13,
334,
6623,
372,
1090,
278,
4958,
310,
278,
15143,
4593,
5236,
19245,
13,
334,
408,
6369,
491,
278,
12362,
18540,
10606,
29936,
2845,
1873,
29871,
29906,
13,
334,
310,
278,
19245,
29892,
470,
313,
271,
596,
2984,
29897,
738,
2678,
1873,
29889,
13,
334,
13,
334,
910,
1824,
338,
13235,
297,
278,
4966,
393,
372,
674,
367,
5407,
29892,
13,
334,
541,
399,
1806,
8187,
2692,
13764,
29979,
399,
1718,
29934,
13566,
29979,
29936,
1728,
1584,
278,
2411,
2957,
1370,
21867,
29891,
310,
13,
334,
341,
1001,
3210,
13566,
2882,
6227,
11937,
470,
383,
1806,
8186,
1799,
15842,
319,
349,
8322,
2965,
13309,
1718,
349,
4574,
13152,
1660,
29889,
29871,
2823,
278,
13,
334,
15143,
4593,
5236,
19245,
363,
901,
4902,
29889,
13,
334,
13,
334,
887,
881,
505,
4520,
263,
3509,
310,
278,
15143,
4593,
5236,
19245,
13,
334,
3412,
411,
445,
1824,
29936,
565,
451,
29892,
2436,
304,
278,
12362,
18540,
10606,
29892,
13,
334,
9266,
1696,
29871,
29945,
29896,
21504,
7103,
29892,
29008,
386,
383,
10102,
29892,
12115,
29892,
14861,
29871,
29900,
29906,
29896,
29896,
29900,
29899,
29896,
29941,
29900,
29896,
29892,
8278,
29889,
13,
334,
13,
334,
450,
8533,
5920,
338,
14187,
1266,
313,
29907,
29897,
29871,
29906,
29900,
29896,
29955,
3164,
1581,
10606,
29889,
13,
334,
2178,
10462,
21676,
29889,
13,
3776,
13,
13,
7918,
320,
1445,
13,
334,
320,
292,
29878,
1132,
805,
449,
1915,
261,
13,
3776,
13,
13,
29937,
2856,
529,
1807,
29889,
29882,
29958,
13,
13,
29937,
2856,
376,
29933,
5265,
29918,
4422,
1753,
1475,
29889,
29882,
29908,
13,
13,
29937,
2856,
376,
29928,
3521,
29918,
2467,
29918,
8768,
29889,
29882,
29908,
13,
29937,
2856,
376,
29928,
3521,
29918,
10525,
29918,
8768,
29889,
29882,
29908,
13,
29937,
2856,
376,
29928,
3521,
29918,
3493,
29918,
8768,
29889,
29882,
29908,
13,
13,
29937,
2856,
376,
29933,
6059,
29918,
4703,
29889,
29882,
29908,
13,
29937,
2856,
376,
29933,
6059,
29918,
449,
1915,
261,
29918,
8336,
8568,
29889,
29882,
29908,
13,
29937,
2856,
376,
29933,
6059,
29918,
13148,
29889,
29882,
29908,
13,
29937,
2856,
376,
29933,
6059,
29918,
3318,
29889,
29882,
29908,
13,
13,
29937,
2856,
376,
3352,
29918,
2817,
1535,
29889,
29882,
29908,
13,
29937,
2856,
376,
3352,
29918,
449,
1915,
261,
29889,
29882,
29908,
13,
13,
29937,
2856,
376,
3120,
29918,
13248,
29889,
29882,
29908,
13,
29937,
2856,
376,
3120,
29918,
1493,
29906,
29881,
29889,
29882,
29908,
13,
13,
29937,
2856,
376,
449,
1915,
261,
29918,
14168,
29889,
29882,
29908,
13,
13,
5515,
448,
2683,
2683,
2683,
2683,
5634,
3776,
13,
7918,
320,
978,
15472,
4533,
15228,
13,
334,
9991,
3776,
13,
13,
5405,
714,
1915,
261,
29918,
1493,
4703,
29918,
2344,
29898,
3075,
289,
2677,
334,
29907,
29892,
15472,
1043,
2677,
334,
29873,
7071,
29897,
13,
29912,
13,
29871,
2626,
842,
29898,
29873,
7071,
29892,
29871,
29900,
29892,
13810,
10456,
29873,
7071,
2483,
13,
13,
29871,
4949,
2522,
1600,
3233,
29889,
3776,
13,
29871,
260,
7071,
976,
24645,
353,
26637,
29990,
29918,
1272,
29918,
24645,
29898,
29907,
416,
13,
29871,
260,
7071,
976,
1493,
29918,
13148,
353,
26637,
29990,
29918,
1272,
29918,
1493,
29918,
13148,
29898,
29907,
416,
13,
13,
29871,
4949,
4669,
29879,
29889,
3776,
13,
29871,
260,
7071,
976,
711,
627,
353,
438,
5688,
1783,
29898,
29873,
7071,
976,
1493,
29918,
13148,
416,
13,
29871,
565,
313,
29873,
7071,
976,
711,
627,
2804,
4265,
29897,
426,
13,
1678,
260,
7071,
976,
711,
29918,
5628,
353,
438,
29933,
12378,
29918,
21482,
29918,
29949,
5688,
1783,
29898,
29873,
7071,
976,
711,
627,
416,
13,
13,
1678,
565,
5135,
29873,
7071,
976,
711,
627,
976,
1853,
1275,
438,
29933,
29918,
1718,
29924,
1299,
11499,
29897,
3830,
13,
4706,
4949,
910,
1033,
367,
1754,
964,
372,
29915,
29879,
1914,
740,
29889,
3776,
13,
4706,
5135,
29873,
7071,
976,
711,
627,
976,
1853,
1275,
438,
29933,
29918,
2303,
7068,
29897,
2607,
260,
7071,
976,
711,
627,
976,
8513,
669,
438,
29933,
29918,
20387,
29918,
8851,
22530,
29918,
7228,
10192,
876,
426,
13,
418,
260,
7071,
976,
711,
29918,
4220,
353,
350,
6059,
29918,
3318,
29918,
4220,
29918,
2817,
1535,
29918,
657,
29898,
29873,
7071,
976,
711,
627,
416,
13,
1678,
500,
13,
29871,
500,
13,
29913,
13,
13,
7918,
320,
29913,
3776,
13,
13,
7918,
13,
334,
3967,
304,
1284,
385,
2944,
1090,
343,
29899,
29302,
320,
29874,
1776,
29918,
1111,
29918,
29891,
313,
1493,
29899,
3493,
467,
13,
334,
320,
6812,
3599,
25397,
13,
3776,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
667,
29918,
271,
29918,
29891,
29898,
3075,
14121,
3744,
1915,
261,
334,
578,
3554,
29892,
13,
462,
462,
268,
1040,
2391,
5160,
334,
8336,
29892,
13,
462,
462,
268,
5785,
1776,
29918,
1111,
29918,
29891,
29897,
13,
29912,
13,
29871,
363,
313,
9643,
2642,
334,
371,
29918,
1524,
353,
5447,
976,
4102,
29936,
734,
29918,
1524,
29936,
734,
29918,
1524,
353,
734,
29918,
1524,
976,
4622,
29897,
426,
13,
1678,
565,
313,
1493,
29918,
1111,
29918,
29891,
529,
313,
371,
29918,
1524,
976,
952,
718,
3740,
29918,
3904,
1806,
29918,
29979,
876,
426,
13,
418,
565,
313,
1493,
29918,
1111,
29918,
29891,
6736,
734,
29918,
1524,
976,
952,
29897,
426,
13,
4706,
4949,
1302,
29918,
29891,
338,
2768,
445,
1543,
3776,
13,
4706,
736,
734,
29918,
1524,
29936,
13,
418,
500,
13,
418,
1683,
565,
313,
29911,
1660,
1307,
29924,
29918,
4590,
1430,
29898,
371,
29918,
1524,
976,
8899,
29918,
20461,
29892,
577,
3554,
876,
426,
13,
4706,
4949,
1302,
29918,
29891,
338,
5224,
1135,
1857,
1543,
29892,
10075,
2768,
4344,
3776,
13,
4706,
15472,
2642,
334,
371,
29918,
1491,
353,
714,
1915,
261,
29918,
2886,
29918,
667,
29918,
271,
29918,
29891,
29898,
578,
3554,
29892,
669,
371,
29918,
1524,
976,
1491,
8336,
29892,
1776,
29918,
1111,
29918,
29891,
416,
13,
4706,
565,
313,
371,
29918,
1491,
29897,
426,
13,
3986,
736,
734,
29918,
1491,
29936,
13,
4706,
500,
13,
418,
500,
13,
1678,
500,
13,
29871,
500,
13,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
7959,
15472,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
667,
29918,
271,
29918,
29916,
29918,
262,
29918,
798,
29918,
3757,
25397,
29898,
3075,
15472,
2642,
334,
3560,
29918,
371,
29892,
13,
462,
462,
462,
632,
5785,
1776,
29918,
1111,
29918,
29916,
29892,
13,
462,
462,
462,
632,
6120,
334,
29878,
29918,
1050,
3192,
29897,
13,
29912,
13,
29871,
15472,
2642,
334,
5145,
29918,
371,
353,
3847,
29918,
371,
976,
1491,
8336,
29889,
4102,
29936,
13,
13,
29871,
6120,
975,
29918,
5029,
353,
2089,
29936,
13,
13,
29871,
1550,
313,
5145,
29918,
371,
29897,
426,
13,
1678,
975,
29918,
5029,
353,
313,
1493,
29918,
1111,
29918,
29916,
1405,
2278,
29918,
371,
976,
10351,
29897,
2607,
313,
1493,
29918,
1111,
29918,
29916,
529,
2278,
29918,
371,
976,
29916,
355,
416,
13,
1678,
565,
5135,
5145,
29918,
371,
976,
15581,
669,
17067,
29918,
2965,
1164,
25180,
29897,
2607,
975,
29918,
5029,
29897,
426,
13,
418,
736,
2278,
29918,
371,
29936,
13,
1678,
500,
13,
1678,
1683,
565,
5135,
5145,
29918,
371,
976,
15581,
669,
17067,
29918,
2965,
1164,
25180,
29918,
29924,
1001,
1692,
29928,
29897,
2607,
975,
29918,
5029,
29897,
426,
13,
418,
565,
313,
29878,
29918,
1050,
3192,
29897,
426,
13,
4706,
334,
29878,
29918,
1050,
3192,
353,
1565,
29936,
13,
418,
500,
13,
418,
736,
2278,
29918,
371,
29936,
13,
1678,
500,
13,
13,
1678,
15472,
2642,
334,
371,
353,
714,
1915,
261,
29918,
2886,
29918,
667,
29918,
271,
29918,
29916,
29918,
262,
29918,
798,
29918,
3757,
25397,
29898,
5145,
29918,
371,
29892,
1776,
29918,
1111,
29918,
29916,
29892,
364,
29918,
1050,
3192,
416,
13,
1678,
565,
313,
371,
2804,
2278,
29918,
371,
29897,
426,
13,
418,
736,
734,
29936,
13,
1678,
500,
13,
13,
1678,
2278,
29918,
371,
353,
2278,
29918,
371,
976,
4622,
29936,
13,
29871,
500,
13,
13,
29871,
4949,
736,
3847,
565,
694,
2278,
338,
16758,
287,
3776,
13,
29871,
736,
313,
9643,
2642,
4748,
3560,
29918,
371,
29936,
13,
29913,
13,
13,
7918,
13,
334,
1530,
23384,
4452,
508,
1510,
1009,
4344,
408,
2828,
29899,
519,
27673,
29889,
910,
740,
14335,
304,
1284,
13,
334,
1316,
385,
9849,
393,
11524,
278,
2278,
2944,
472,
921,
29899,
29302,
320,
29874,
1776,
29918,
1111,
29918,
29916,
313,
1493,
29899,
3493,
467,
13,
334,
13,
334,
320,
2457,
263,
16758,
287,
2278,
2944,
470,
320,
29874,
3847,
29918,
371,
313,
361,
694,
16758,
287,
2278,
1476,
467,
13,
3776,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
667,
29918,
271,
29918,
29916,
29918,
262,
29918,
798,
29898,
3075,
14121,
3744,
1915,
261,
334,
578,
3554,
29892,
13,
462,
462,
9651,
1040,
15472,
2642,
334,
3560,
29918,
371,
29892,
13,
462,
462,
9651,
5785,
1776,
29918,
1111,
29918,
29916,
29892,
13,
462,
462,
9651,
6120,
334,
29878,
29918,
1050,
3192,
29897,
13,
29912,
13,
29871,
4949,
565,
3847,
29918,
371,
338,
6496,
29892,
372,
1838,
29915,
29873,
1510,
4344,
297,
1948,
3776,
13,
29871,
565,
5384,
29911,
1660,
1307,
29924,
29918,
4590,
1430,
29898,
29911,
21661,
1254,
29949,
1525,
29898,
3560,
29918,
371,
511,
577,
3554,
876,
426,
13,
1678,
736,
714,
1915,
261,
29918,
2886,
29918,
667,
29918,
271,
29918,
29916,
29918,
262,
29918,
798,
29918,
3757,
25397,
29898,
3560,
29918,
371,
29892,
1776,
29918,
1111,
29918,
29916,
29892,
364,
29918,
1050,
3192,
416,
13,
29871,
500,
13,
13,
29871,
736,
313,
9643,
2642,
4748,
3560,
29918,
371,
29936,
13,
29913,
13,
13,
5515,
10987,
2702,
2944,
515,
278,
2578,
22818,
3776,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
8336,
29918,
5029,
29898,
1293,
5160,
334,
27728,
29892,
1040,
15472,
9044,
29923,
2409,
334,
8899,
29918,
20461,
29897,
13,
29912,
13,
29871,
15472,
2642,
334,
371,
29892,
334,
2167,
29936,
13,
29871,
363,
313,
371,
353,
27981,
976,
4102,
29936,
734,
29936,
734,
353,
734,
976,
4622,
29897,
426,
13,
1678,
565,
313,
371,
976,
8899,
29918,
20461,
1275,
3787,
29918,
20461,
29897,
426,
13,
418,
736,
734,
29936,
13,
1678,
500,
13,
1678,
260,
267,
353,
714,
1915,
261,
29918,
2886,
29918,
8336,
29918,
5029,
6243,
371,
976,
1491,
8336,
29892,
3787,
29918,
20461,
416,
13,
1678,
565,
313,
2167,
29897,
426,
13,
418,
736,
260,
267,
29936,
13,
1678,
500,
13,
29871,
500,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
5515,
10987,
3847,
1543,
310,
734,
3776,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
3560,
29918,
5029,
29898,
1293,
5160,
334,
27728,
29892,
13,
462,
462,
3986,
15472,
2642,
334,
3560,
29918,
371,
29892,
13,
462,
462,
3986,
1040,
15472,
2642,
334,
5145,
29918,
371,
29897,
13,
29912,
13,
29871,
15472,
2642,
334,
371,
29936,
13,
29871,
363,
313,
371,
353,
27981,
976,
4102,
29936,
734,
29936,
734,
353,
734,
976,
4622,
29897,
426,
13,
1678,
565,
313,
371,
1275,
2278,
29918,
371,
29897,
426,
13,
418,
736,
3847,
29918,
371,
29936,
13,
1678,
500,
13,
13,
1678,
15472,
2642,
334,
2886,
29918,
371,
353,
714,
1915,
261,
29918,
2886,
29918,
3560,
29918,
5029,
6243,
371,
976,
1491,
8336,
29892,
734,
29892,
2278,
29918,
371,
416,
13,
1678,
565,
313,
2886,
29918,
371,
29897,
426,
13,
418,
736,
1284,
29918,
371,
29936,
13,
1678,
500,
13,
29871,
500,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
5515,
260,
344,
338,
451,
297,
278,
2578,
22818,
29892,
591,
671,
967,
8118,
304,
1284,
263,
1993,
3776,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
29873,
344,
29898,
14936,
3744,
1915,
261,
334,
578,
3554,
29892,
1040,
15472,
9044,
29923,
2409,
334,
29873,
344,
29897,
13,
29912,
13,
29871,
15472,
9044,
29923,
2409,
334,
29873,
344,
2409,
29936,
13,
13,
29871,
565,
313,
29873,
344,
976,
333,
1275,
4265,
29897,
426,
13,
1678,
736,
4265,
29936,
13,
29871,
500,
13,
13,
29871,
4949,
1423,
565,
525,
29873,
344,
29915,
338,
297,
2578,
22818,
3776,
13,
29871,
260,
344,
2409,
353,
350,
6059,
29918,
449,
1915,
261,
29918,
8336,
8568,
29918,
20401,
29918,
1384,
29898,
578,
3554,
976,
8336,
8568,
29892,
260,
344,
976,
1853,
29892,
260,
344,
976,
22230,
29892,
260,
344,
976,
333,
416,
13,
29871,
565,
313,
29873,
344,
2409,
29897,
426,
13,
1678,
736,
714,
1915,
261,
29918,
2886,
29918,
8336,
29918,
5029,
6243,
578,
3554,
976,
8336,
29892,
260,
344,
2409,
416,
13,
29871,
500,
13,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
5515,
10987,
2578,
22818,
393,
14637,
304,
2183,
3553,
3776,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
333,
29898,
14936,
3744,
1915,
261,
334,
578,
3554,
29892,
2391,
5160,
334,
27728,
29892,
1040,
3553,
334,
333,
29897,
13,
29912,
13,
29871,
363,
313,
9643,
2642,
334,
371,
353,
27981,
976,
4102,
29936,
734,
29936,
734,
353,
734,
976,
4622,
29897,
426,
13,
1678,
15472,
9044,
29923,
2409,
334,
29873,
344,
2409,
353,
323,
21661,
1254,
29949,
1525,
29898,
371,
416,
13,
1678,
565,
313,
29873,
344,
2409,
976,
1853,
1275,
29871,
29900,
29897,
426,
13,
418,
565,
313,
29873,
344,
2409,
976,
333,
1275,
1178,
29897,
426,
13,
4706,
736,
734,
29936,
13,
418,
500,
13,
1678,
500,
13,
13,
1678,
15472,
2642,
334,
2167,
353,
714,
1915,
261,
29918,
2886,
29918,
333,
29898,
578,
3554,
29892,
669,
371,
976,
1491,
8336,
29892,
1178,
416,
13,
1678,
565,
313,
2167,
29897,
426,
13,
418,
736,
260,
267,
29936,
13,
1678,
500,
13,
29871,
500,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
4220,
12719,
29898,
1293,
5160,
334,
27728,
29892,
1040,
289,
29925,
852,
13599,
334,
29886,
5083,
29897,
13,
29912,
13,
29871,
363,
313,
9643,
2642,
334,
371,
353,
27981,
976,
4102,
29936,
734,
29936,
734,
353,
734,
976,
4622,
29897,
426,
13,
1678,
565,
313,
371,
976,
11851,
1272,
1275,
282,
5083,
29897,
426,
13,
418,
736,
734,
29936,
13,
1678,
500,
13,
13,
1678,
15472,
9044,
29923,
2409,
334,
29873,
344,
2409,
353,
323,
21661,
1254,
29949,
1525,
29898,
371,
416,
13,
1678,
565,
313,
29923,
1307,
29924,
29898,
29873,
344,
2409,
976,
1853,
29892,
323,
1660,
29918,
13152,
1660,
29918,
25416,
29892,
323,
1660,
29918,
13152,
1660,
29918,
3210,
2190,
29940,
6670,
876,
426,
13,
418,
15472,
2642,
334,
2167,
353,
714,
1915,
261,
29918,
2886,
29918,
4220,
12719,
6243,
371,
976,
1491,
8336,
29892,
282,
5083,
416,
13,
418,
565,
313,
2167,
29897,
426,
13,
4706,
736,
260,
267,
29936,
13,
418,
500,
13,
1678,
500,
13,
29871,
500,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
5628,
15933,
29898,
1293,
5160,
334,
27728,
29892,
1040,
7641,
29933,
650,
334,
774,
650,
29897,
13,
29912,
13,
29871,
363,
313,
9643,
2642,
334,
371,
353,
27981,
976,
4102,
29936,
734,
29936,
734,
353,
734,
976,
4622,
29897,
426,
13,
1678,
565,
313,
371,
976,
11851,
1272,
1275,
321,
15933,
29897,
426,
13,
418,
736,
734,
29936,
13,
1678,
500,
13,
13,
1678,
15472,
9044,
29923,
2409,
334,
29873,
344,
2409,
353,
323,
21661,
1254,
29949,
1525,
29898,
371,
416,
13,
1678,
565,
313,
29923,
1307,
29924,
29898,
29873,
344,
2409,
976,
1853,
29892,
29871,
29900,
29892,
323,
1660,
29918,
25752,
12413,
876,
426,
13,
418,
15472,
2642,
334,
2167,
353,
714,
1915,
261,
29918,
2886,
29918,
5628,
15933,
6243,
371,
976,
1491,
8336,
29892,
321,
15933,
416,
13,
418,
565,
313,
2167,
29897,
426,
13,
4706,
736,
260,
267,
29936,
13,
418,
500,
13,
1678,
500,
13,
29871,
500,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
1367,
334,
449,
1915,
261,
29918,
4478,
29918,
1627,
29898,
14936,
3744,
1915,
261,
334,
3904,
17171,
29928,
29898,
578,
3554,
511,
15472,
2642,
334,
371,
29892,
3273,
1178,
401,
29897,
13,
29912,
13,
29871,
15472,
9044,
29923,
2409,
334,
29873,
344,
2409,
29936,
13,
29871,
734,
353,
734,
976,
3560,
29936,
13,
13,
29871,
1550,
313,
371,
29897,
426,
13,
1678,
260,
344,
2409,
353,
323,
21661,
1254,
29949,
1525,
29898,
371,
416,
13,
1678,
565,
313,
29873,
344,
2409,
976,
1853,
1275,
29871,
29900,
2607,
734,
976,
333,
401,
1275,
1178,
401,
29897,
426,
13,
418,
736,
260,
344,
2409,
976,
333,
29936,
13,
1678,
500,
13,
1678,
734,
353,
734,
976,
3560,
29936,
13,
29871,
500,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
7918,
13,
334,
20504,
403,
975,
599,
5447,
3161,
313,
1457,
29899,
2098,
13310,
284,
511,
14012,
320,
29874,
3653,
6939,
363,
13,
334,
1269,
5447,
1543,
9686,
278,
13136,
18094,
29889,
13,
334,
13,
334,
320,
3207,
4175,
29918,
371,
29918,
15581,
29901,
960,
451,
29871,
29900,
29892,
871,
15472,
18868,
411,
445,
7353,
674,
367,
16669,
29889,
13,
334,
320,
3207,
4175,
29918,
29873,
344,
2409,
29918,
15581,
29901,
19491,
408,
320,
29874,
4175,
29918,
371,
29918,
15581,
29892,
541,
363,
278,
15472,
9044,
29923,
2409,
29889,
13,
334,
320,
3207,
3653,
29901,
8701,
6939,
304,
6222,
363,
1269,
16669,
2944,
29889,
13,
3776,
13,
11227,
714,
1915,
261,
29918,
8336,
29918,
3018,
3901,
29898,
3075,
14121,
3744,
1915,
261,
334,
578,
3554,
29892,
13,
462,
9651,
2391,
5160,
334,
8336,
29892,
13,
462,
9651,
938,
4175,
29918,
371,
29918,
15581,
29892,
13,
462,
9651,
938,
4175,
29918,
29873,
344,
2409,
29918,
15581,
29892,
13,
462,
9651,
15472,
5323,
874,
284,
14400,
3653,
29892,
13,
462,
9651,
1780,
334,
6341,
1272,
29897,
13,
29912,
13,
29871,
363,
313,
9643,
2642,
334,
371,
353,
5447,
976,
4102,
29892,
334,
371,
29918,
4622,
29936,
734,
29936,
734,
353,
734,
29918,
4622,
29897,
426,
13,
1678,
15472,
5323,
874,
284,
4276,
3653,
29918,
2267,
791,
353,
323,
4717,
5348,
1660,
29918,
22412,
1177,
4462,
29936,
13,
1678,
4949,
297,
1206,
734,
338,
3005,
287,
297,
6939,
3776,
13,
1678,
15472,
9044,
29923,
2409,
334,
29873,
344,
2409,
353,
323,
21661,
1254,
29949,
1525,
29898,
371,
416,
13,
1678,
2391,
5160,
1014,
8336,
353,
734,
976,
1491,
8336,
29936,
13,
1678,
734,
29918,
4622,
353,
734,
976,
4622,
29936,
13,
13,
1678,
565,
313,
4572,
29918,
371,
29918,
15581,
2607,
313,
371,
976,
15581,
669,
4175,
29918,
371,
29918,
15581,
29897,
1275,
29871,
29900,
29897,
426,
13,
418,
4949,
14383,
3776,
13,
1678,
500,
13,
1678,
1683,
565,
313,
4572,
29918,
29873,
344,
2409,
29918,
15581,
2607,
313,
29873,
344,
2409,
976,
15581,
669,
4175,
29918,
29873,
344,
2409,
29918,
15581,
29897,
1275,
29871,
29900,
29897,
426,
13,
418,
4949,
14383,
3776,
13,
1678,
500,
13,
1678,
1683,
426,
13,
418,
3653,
29918,
2267,
791,
353,
3653,
29898,
371,
29892,
2888,
1272,
416,
13,
1678,
500,
13,
1678,
4949,
3872,
29915,
29873,
2130,
734,
470,
260,
344,
2409,
515,
1286,
373,
29991,
341,
523,
29915,
345,
1063,
3005,
287,
856,
3776,
13,
13,
1678,
565,
313,
9891,
29918,
2267,
791,
1275,
323,
4717,
5348,
1660,
29918,
29933,
1525,
22311,
29897,
426,
13,
418,
736,
2089,
29936,
13,
1678,
500,
13,
13,
1678,
565,
313,
9891,
29918,
2267,
791,
1275,
323,
4717,
5348,
1660,
29918,
16033,
5690,
29918,
3210,
6227,
8452,
29897,
426,
13,
418,
4949,
14383,
3776,
13,
1678,
500,
13,
1678,
1683,
565,
5384,
449,
1915,
261,
29918,
8336,
29918,
3018,
3901,
29898,
13,
462,
577,
3554,
29892,
669,
1491,
8336,
29892,
4175,
29918,
371,
29918,
15581,
29892,
4175,
29918,
29873,
344,
2409,
29918,
15581,
29892,
3653,
29892,
2888,
1272,
876,
426,
13,
418,
736,
2089,
29936,
13,
1678,
500,
13,
29871,
500,
13,
13,
29871,
736,
1565,
29936,
13,
29913,
13,
13,
7411,
714,
1915,
261,
29918,
5060,
4146,
29918,
13099,
29918,
2103,
29898,
3075,
14121,
3744,
1915,
261,
334,
578,
3554,
29897,
13,
29912,
13,
29871,
938,
954,
29918,
13099,
353,
29871,
29900,
29936,
13,
13,
29871,
4607,
313,
578,
3554,
976,
449,
1220,
1730,
29897,
426,
13,
1678,
1206,
7791,
29918,
14573,
29918,
8787,
29901,
13,
1678,
1206,
7791,
29918,
1660,
13356,
1430,
4741,
29901,
13,
1678,
1206,
7791,
29918,
5265,
15176,
1718,
29059,
29901,
13,
418,
736,
29871,
29900,
29889,
29900,
29888,
29936,
13,
1678,
1206,
7791,
29918,
1367,
29918,
1955,
19689,
2190,
29903,
29901,
13,
418,
954,
29918,
13099,
353,
29871,
29941,
29936,
13,
418,
2867,
29936,
13,
1678,
1206,
7791,
29918,
29963,
8673,
29956,
29918,
18799,
1001,
29901,
13,
418,
565,
313,
578,
3554,
976,
4294,
29918,
5060,
4146,
29918,
15764,
669,
7791,
29918,
1525,
1254,
3960,
1783,
29918,
29950,
5607,
3970,
2692,
29897,
426,
13,
4706,
954,
29918,
13099,
9107,
13,
418,
500,
13,
418,
565,
313,
578,
3554,
976,
4294,
29918,
5060,
4146,
29918,
15764,
669,
7791,
29918,
1525,
1254,
3960,
1783,
29918,
1177,
4571,
26282,
29918,
1164,
16786,
29897,
426,
13,
4706,
954,
29918,
13099,
9107,
13,
418,
500,
13,
418,
15531,
5659,
29918,
29943,
9818,
4690,
1672,
23338,
29950,
29936,
13,
1678,
1206,
7791,
29918,
7187,
1430,
2890,
29901,
13,
418,
565,
313,
578,
3554,
976,
4294,
29918,
5060,
4146,
29918,
15764,
669,
7791,
29918,
1525,
1254,
3960,
1783,
29918,
6404,
29897,
426,
13,
4706,
954,
29918,
13099,
9107,
13,
418,
500,
13,
418,
565,
313,
578,
3554,
976,
4294,
29918,
5060,
4146,
29918,
15764,
669,
7791,
29918,
1525,
1254,
3960,
1783,
29918,
29950,
22027,
29897,
426,
13,
4706,
954,
29918,
13099,
9107,
13,
418,
500,
13,
418,
565,
313,
578,
3554,
976,
4294,
29918,
5060,
4146,
29918,
15764,
669,
7791,
29918,
1525,
1254,
3960,
1783,
29918,
29963,
8673,
29956,
15082,
29897,
426,
13,
4706,
954,
29918,
13099,
9107,
13,
418,
500,
13,
418,
565,
313,
578,
3554,
976,
4294,
29918,
5060,
4146,
29918,
15764,
669,
7791,
29918,
1525,
1254,
3960,
1783,
29918,
29934,
1430,
8032,
29897,
426,
13,
4706,
954,
29918,
13099,
9107,
13,
418,
500,
13,
418,
2867,
29936,
13,
29871,
500,
13,
29871,
736,
313,
1949,
29918,
13099,
334,
3740,
29918,
3904,
1806,
29918,
29990,
718,
478,
29906,
29928,
29918,
7187,
1672,
2208,
29918,
22574,
416,
13,
29913,
13,
13,
5515,
10987,
937,
5447,
1543,
297,
5447,
411,
9686,
2578,
22818,
7353,
3776,
13,
9643,
2642,
334,
449,
1915,
261,
29918,
2886,
29918,
5029,
29918,
2541,
29918,
15581,
29898,
3075,
2391,
5160,
334,
27728,
29892,
3273,
7353,
29897,
13,
29912,
13,
29871,
363,
313,
9643,
2642,
334,
371,
353,
27981,
976,
4102,
29936,
734,
29936,
734,
353,
734,
976,
4622,
29897,
426,
13,
1678,
565,
5135,
29911,
21661,
1254,
29949,
1525,
29898,
371,
19969,
15581,
669,
7353,
29897,
1275,
7353,
29897,
426,
13,
418,
736,
734,
29936,
13,
1678,
500,
13,
1678,
15472,
2642,
334,
4925,
29918,
5029,
353,
714,
1915,
261,
29918,
2886,
29918,
5029,
29918,
2541,
29918,
15581,
6243,
371,
976,
1491,
8336,
29892,
7353,
416,
13,
1678,
565,
313,
4925,
29918,
5029,
29897,
426,
13,
418,
736,
6136,
29918,
5029,
29936,
13,
1678,
500,
13,
29871,
500,
13,
29871,
736,
4265,
29936,
13,
29913,
13,
13,
5515,
10987,
565,
1543,
338,
7962,
297,
278,
714,
1915,
261,
5447,
3776,
13,
11227,
714,
1915,
261,
29918,
275,
29918,
5029,
29918,
12872,
29898,
3075,
15472,
2642,
334,
371,
29897,
13,
29912,
13,
29871,
15472,
9044,
29923,
2409,
334,
29873,
344,
2409,
29936,
13,
13,
29871,
1550,
313,
371,
976,
3560,
29897,
426,
13,
1678,
260,
344,
2409,
353,
323,
21661,
1254,
29949,
1525,
29898,
371,
976,
3560,
416,
13,
13,
1678,
565,
313,
29873,
344,
2409,
976,
15581,
669,
323,
1660,
29918,
29907,
3927,
1660,
29928,
29897,
426,
13,
418,
736,
2089,
29936,
13,
1678,
500,
13,
1678,
1683,
426,
13,
418,
734,
353,
734,
976,
3560,
29936,
13,
1678,
500,
13,
29871,
500,
13,
13,
29871,
736,
1565,
29936,
13,
29913,
13,
13,
5515,
10987,
565,
921,
14821,
338,
975,
385,
9849,
470,
1024,
3776,
13,
11227,
714,
1915,
261,
29918,
667,
29918,
275,
29918,
1111,
29918,
957,
29918,
978,
29918,
27078,
29898,
3075,
15472,
2642,
334,
371,
29892,
5785,
1776,
29918,
1111,
29918,
29916,
29897,
13,
29912,
13,
29871,
4949,
12630,
1206,
29901,
2302,
4038,
2175,
310,
2522,
1600,
14348,
408,
4069,
2913,
3776,
13,
29871,
6120,
5377,
29918,
1563,
353,
313,
29911,
21661,
1254,
29949,
1525,
29898,
371,
19969,
1853,
1275,
323,
1660,
29918,
29963,
8673,
29956,
29918,
15032,
3281,
2725,
29918,
25416,
29897,
1577,
13,
462,
3986,
313,
1493,
29918,
1111,
29918,
29916,
1405,
734,
976,
10351,
718,
3740,
29918,
3904,
1806,
29918,
29990,
29897,
584,
13,
462,
3986,
313,
1493,
29918,
1111,
29918,
29916,
1405,
734,
976,
10351,
416,
13,
13,
29871,
736,
5377,
29918,
1563,
2607,
313,
1493,
29918,
1111,
29918,
29916,
529,
734,
976,
29916,
355,
416,
13,
29913,
13,
13,
5515,
10987,
565,
921,
14821,
338,
975,
1543,
766,
25071,
20429,
3776,
13,
11227,
714,
1915,
261,
29918,
667,
29918,
275,
29918,
1111,
29918,
2541,
262,
29918,
5358,
29918,
13270,
29898,
3075,
15472,
2642,
334,
371,
29892,
5785,
1776,
29918,
1111,
29918,
29916,
29897,
13,
29912,
13,
29871,
736,
313,
1493,
29918,
1111,
29918,
29916,
1405,
734,
976,
10351,
29897,
2607,
313,
1493,
29918,
1111,
29918,
29916,
529,
734,
976,
10351,
718,
3740,
29918,
3904,
1806,
29918,
29990,
416,
13,
29913,
13,
13,
5515,
28797,
1776,
4837,
1711,
1550,
12515,
2629,
3001,
13451,
3776,
13,
5405,
714,
1915,
261,
29918,
10510,
29918,
1493,
29898,
1718,
387,
291,
334,
279,
29892,
938,
19471,
29918,
29891,
29897,
13,
29912,
13,
29871,
938,
343,
29918,
1195,
353,
341,
1177,
29906,
29898,
279,
976,
29894,
29906,
29881,
29889,
2764,
29889,
962,
262,
29892,
564,
976,
29894,
29906,
29881,
29889,
4260,
29889,
962,
262,
416,
13,
13,
29871,
564,
976,
29894,
29906,
29881,
29889,
2764,
29889,
29891,
3317,
4619,
19471,
29918,
29891,
29936,
13,
29871,
564,
976,
29894,
29906,
29881,
29889,
2764,
29889,
962,
262,
4619,
19471,
29918,
29891,
29936,
13,
13,
29871,
4949,
2087,
5143,
1776,
565,
19471,
7180,
1776,
5377,
3001,
4038,
3776,
13,
29871,
938,
9210,
29936,
13,
29871,
565,
313,
279,
976,
29894,
29906,
29881,
29889,
2764,
29889,
29891,
3317,
1405,
448,
3120,
29918,
3904,
1806,
29918,
29979,
29897,
426,
13,
1678,
9210,
353,
564,
976,
29894,
29906,
29881,
29889,
2764,
29889,
29891,
3317,
29936,
13,
1678,
564,
976,
29894,
29906,
29881,
29889,
2764,
29889,
29891,
3317,
22361,
9210,
29936,
13,
1678,
564,
976,
29894,
29906,
29881,
29889,
2764,
29889,
962,
262,
22361,
9210,
29936,
13,
29871,
500,
13,
29871,
1683,
565,
313,
279,
976,
29894,
29906,
29881,
29889,
2764,
29889,
962,
262,
529,
343,
29918,
1195,
29897,
426,
13,
1678,
9210,
353,
343,
29918,
1195,
448,
564,
976,
29894,
29906,
29881,
29889,
2764,
29889,
962,
262,
29936,
13,
1678,
564,
976,
29894,
29906,
29881,
29889,
2764,
29889,
29891,
3317,
4619,
9210,
29936,
13,
1678,
564,
976,
29894,
29906,
29881,
29889,
2764,
29889,
962,
262,
4619,
9210,
29936,
13,
29871,
500,
13,
29913,
13,
13,
5515,
3617,
2967,
310,
1203,
1090,
10677,
29889,
501,
8485,
363,
321,
28133,
307,
2496,
5780,
3776,
13,
5160,
334,
3352,
29918,
449,
1915,
261,
29918,
29887,
573,
29918,
3188,
29918,
5062,
29918,
18127,
29898,
29890,
2677,
334,
29907,
29892,
1040,
938,
286,
791,
29961,
29906,
2314,
13,
29912,
13,
29871,
319,
18457,
334,
279,
353,
26637,
29990,
29918,
29893,
29885,
29918,
12803,
29898,
29907,
416,
13,
29871,
4533,
14420,
334,
1493,
29918,
13148,
353,
26637,
29990,
29918,
1272,
29918,
1493,
29918,
13148,
29898,
29907,
416,
13,
29871,
14121,
3744,
1915,
261,
334,
578,
3554,
353,
26637,
29990,
29918,
29893,
29885,
29918,
3493,
29918,
449,
1915,
261,
29898,
29907,
416,
13,
29871,
15472,
2642,
334,
371,
29936,
13,
29871,
7399,
334,
3188,
353,
4265,
29936,
13,
29871,
5785,
1776,
29918,
29885,
791,
29961,
29906,
1385,
13,
13,
29871,
3740,
29918,
1493,
29906,
29881,
29918,
12803,
29918,
517,
29918,
1493,
6243,
279,
976,
29894,
29906,
29881,
29892,
286,
791,
29961,
29900,
1402,
286,
791,
29961,
29896,
1402,
669,
1493,
29918,
29885,
791,
29961,
29900,
1402,
669,
1493,
29918,
29885,
791,
29961,
29896,
5691,
13,
13,
29871,
734,
353,
714,
1915,
261,
29918,
2886,
29918,
667,
29918,
271,
29918,
29891,
29898,
578,
3554,
29892,
669,
578,
3554,
976,
8336,
29892,
1776,
29918,
29885,
791,
29961,
29896,
5691,
13,
29871,
565,
313,
371,
29897,
426,
13,
1678,
15472,
9044,
29923,
2409,
334,
29873,
344,
2409,
353,
323,
21661,
1254,
29949,
1525,
29898,
371,
416,
13,
1678,
565,
313,
29873,
344,
2409,
976,
1853,
1275,
29871,
29900,
29897,
426,
13,
418,
4669,
334,
711,
353,
313,
2061,
4748,
29873,
344,
2409,
976,
333,
29936,
13,
418,
2967,
353,
313,
371,
976,
11851,
1272,
29897,
1577,
313,
5160,
4748,
371,
976,
11851,
1272,
584,
350,
6059,
29918,
1493,
29918,
13148,
29918,
3188,
29918,
2886,
29898,
1493,
29918,
13148,
29892,
704,
416,
13,
1678,
500,
13,
29871,
500,
13,
13,
29871,
736,
2967,
29936,
13,
29913,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
'Arthur Newman' -- 2 stars
'Arthur Newman' -- 2 stars
R; 1:41 running timeHow would "Arthur Newman" work with unknowns? Firth and Blunt, in the words of that great, great film critic Donald Rumsfeld, are known knowns ¿ enormously likable performers with actorly wiles and easy charisma to spare. But the script of "Arthur Newman," written two...
R; 1:41 running timeHow would "Arthur Newman" work with unknowns? Firth and Blunt, in the words of that great, great film critic Donald Rumsfeld, are known knowns ¿ enormously likable performers with actorly wiles and easy charisma to spare. But the script of "Arthur Newman," written two...
R; 1:41 running timeHow would "Arthur Newman" work with unknowns? Firth and Blunt, in the words of that great, great film critic Donald Rumsfeld, are known knowns ¿ enormously likable performers with actorly wiles and easy charisma to spare. But the script of "Arthur Newman," written two... | [
1,
525,
1433,
9743,
1570,
1171,
29915,
1192,
29871,
29906,
10819,
13,
13,
29915,
1433,
9743,
1570,
1171,
29915,
1192,
29871,
29906,
10819,
13,
13,
29934,
29936,
29871,
29896,
29901,
29946,
29896,
2734,
931,
5328,
723,
376,
1433,
9743,
1570,
1171,
29908,
664,
411,
9815,
29879,
29973,
383,
7515,
322,
3164,
1657,
29892,
297,
278,
3838,
310,
393,
2107,
29892,
2107,
2706,
11164,
18935,
20852,
4668,
2495,
29892,
526,
2998,
2998,
29879,
18613,
18886,
5794,
4188,
519,
2189,
414,
411,
11339,
368,
281,
5475,
322,
4780,
1373,
275,
655,
304,
29337,
29889,
1205,
278,
2471,
310,
376,
1433,
9743,
1570,
1171,
1699,
3971,
1023,
856,
13,
13,
29934,
29936,
29871,
29896,
29901,
29946,
29896,
2734,
931,
5328,
723,
376,
1433,
9743,
1570,
1171,
29908,
664,
411,
9815,
29879,
29973,
383,
7515,
322,
3164,
1657,
29892,
297,
278,
3838,
310,
393,
2107,
29892,
2107,
2706,
11164,
18935,
20852,
4668,
2495,
29892,
526,
2998,
2998,
29879,
18613,
18886,
5794,
4188,
519,
2189,
414,
411,
11339,
368,
281,
5475,
322,
4780,
1373,
275,
655,
304,
29337,
29889,
1205,
278,
2471,
310,
376,
1433,
9743,
1570,
1171,
1699,
3971,
1023,
856,
13,
13,
29934,
29936,
29871,
29896,
29901,
29946,
29896,
2734,
931,
5328,
723,
376,
1433,
9743,
1570,
1171,
29908,
664,
411,
9815,
29879,
29973,
383,
7515,
322,
3164,
1657,
29892,
297,
278,
3838,
310,
393,
2107,
29892,
2107,
2706,
11164,
18935,
20852,
4668,
2495,
29892,
526,
2998,
2998,
29879,
18613,
18886,
5794,
4188,
519,
2189,
414,
411,
11339,
368,
281,
5475,
322,
4780,
1373,
275,
655,
304,
29337,
29889,
1205,
278,
2471,
310,
376,
1433,
9743,
1570,
1171,
1699,
3971,
1023,
856
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Playstation 4 Virtual Reality Price
Vsitours.com - Playstation 4 Virtual Reality Price. Scheduling air journey, creating resort reservations and arranging family vacation journey usually has improved wholly with the arrival on the world-wide-web and several folks endeavor to be their own individual journey brokers. While you can arrange seemingly almost all of your travel your self, you can not do likewise as your journey agent in a long term!
Travel ordeals on the Nomad in advance of the world wide web and how to help save and acquire improved information, info soon after the online world by heading straight to specialist agents and vacation operators. Introducing a travel club where you could possibly get cost-free vouchers for discounted journey in about 70 countries.
Accountable tourism implies all tourism right dependent on using pure existence e.g. wildlife and landscape. Mother nature based mostly tourism include things like eco-tourism and mass tourism. This is certainly associated to Playstation 4 Virtual Reality Price.
Related to Playstation 4 Virtual Reality Price, Tourism is actually a booming marketplace. With many travellers flocking to distinct locations about the globe, tourism is now certainly one of probably the most feasible business marketplaces while in the planet. Nonetheless, air vacation, vehicle travel along with other elements of tourism are adding towards the planet's air pollution disaster and this has become a problem. Journey operators and hospitality corporates realised that some action wanted being taken, and Eco-tourism was established being a answer to this issue.
There are actually two amounts of answers towards the dilemma of why men and women vacation. The very first is the apparent just one, and doubtless the key reason why we give ourselves and quote to other people. We travel making sure that we are able to see sights, practical experience other cultures, show up at activities and discover more details on the planet. These are remarkable causes. But there are further good reasons for traveling which have much less to try and do with what we do when we journey, and even more to perform with what traveling does to us. These five sets of changes to ourselves are at the heart of what would make travel so powerful.
Tours are an easy way to see dream destinations. If you’re one of individuals people that enjoy travel but hate to organize everything yourself and also have others plan and demonstrate around, an excursion clients are the answer. | [
1,
7412,
19569,
29871,
29946,
19181,
830,
2877,
20743,
13,
13,
29963,
29879,
277,
2470,
29889,
510,
448,
7412,
19569,
29871,
29946,
19181,
830,
2877,
20743,
29889,
1102,
287,
19478,
4799,
16342,
29892,
4969,
25362,
620,
6972,
800,
322,
3948,
9776,
3942,
11757,
362,
16342,
5491,
756,
16710,
377,
18368,
411,
278,
18517,
373,
278,
3186,
29899,
8157,
29899,
2676,
322,
3196,
900,
2039,
19981,
17118,
304,
367,
1009,
1914,
5375,
16342,
2545,
29895,
414,
29889,
5806,
366,
508,
564,
3881,
2833,
11687,
4359,
599,
310,
596,
9850,
596,
1583,
29892,
366,
508,
451,
437,
763,
3538,
408,
596,
16342,
10823,
297,
263,
1472,
1840,
29991,
13,
13,
5323,
955,
470,
311,
1338,
373,
278,
20583,
328,
297,
6564,
310,
278,
3186,
9377,
1856,
322,
920,
304,
1371,
4078,
322,
1274,
1548,
16710,
2472,
29892,
5235,
4720,
1156,
278,
7395,
3186,
491,
28435,
7812,
304,
4266,
391,
19518,
322,
11757,
362,
12768,
29889,
3159,
3518,
3277,
263,
9850,
4402,
988,
366,
1033,
10075,
679,
3438,
29899,
9021,
325,
3222,
414,
363,
2313,
792,
287,
16342,
297,
1048,
29871,
29955,
29900,
10916,
29889,
13,
13,
10601,
519,
6282,
1608,
10469,
599,
6282,
1608,
1492,
14278,
373,
773,
8296,
10379,
321,
29889,
29887,
29889,
8775,
19264,
322,
24400,
29889,
21869,
5469,
2729,
11149,
6282,
1608,
3160,
2712,
763,
321,
1111,
29899,
29873,
473,
1608,
322,
4158,
6282,
1608,
29889,
910,
338,
8959,
6942,
304,
7412,
19569,
29871,
29946,
19181,
830,
2877,
20743,
29889,
13,
13,
9662,
630,
304,
7412,
19569,
29871,
29946,
19181,
830,
2877,
20743,
29892,
6371,
1608,
338,
2869,
263,
1045,
28826,
9999,
6689,
29889,
2973,
1784,
6427,
28257,
285,
908,
292,
304,
8359,
14354,
1048,
278,
15482,
915,
29892,
6282,
1608,
338,
1286,
8959,
697,
310,
3117,
278,
1556,
28326,
1821,
5381,
9999,
29886,
6048,
1550,
297,
278,
15754,
29889,
10050,
621,
6393,
29892,
4799,
11757,
362,
29892,
19716,
9850,
3412,
411,
916,
3161,
310,
6282,
1608,
526,
4417,
7113,
278,
15754,
29915,
29879,
4799,
21180,
918,
766,
1901,
322,
445,
756,
4953,
263,
1108,
29889,
435,
473,
3801,
12768,
322,
13457,
537,
17266,
1078,
1855,
3368,
393,
777,
3158,
5131,
1641,
4586,
29892,
322,
382,
1111,
29899,
29873,
473,
1608,
471,
7841,
1641,
263,
1234,
304,
445,
2228,
29889,
13,
13,
8439,
526,
2869,
1023,
26999,
310,
6089,
7113,
278,
270,
488,
29885,
655,
310,
2020,
1757,
322,
5866,
11757,
362,
29889,
450,
1407,
937,
338,
278,
20295,
925,
697,
29892,
322,
7404,
2222,
278,
1820,
2769,
2020,
591,
2367,
20278,
322,
14978,
304,
916,
2305,
29889,
1334,
9850,
3907,
1854,
393,
591,
526,
2221,
304,
1074,
269,
5861,
29892,
15031,
7271,
916,
4185,
1973,
29892,
1510,
701,
472,
14188,
322,
6523,
901,
4902,
373,
278,
15754,
29889,
4525,
526,
22567,
9946,
29889,
1205,
727,
526,
4340,
1781,
9590,
363,
9850,
292,
607,
505,
1568,
3109,
304,
1018,
322,
437,
411,
825,
591,
437,
746,
591,
16342,
29892,
322,
1584,
901,
304,
2189,
411,
825,
9850,
292,
947,
304,
502,
29889,
4525,
5320,
6166,
310,
3620,
304,
20278,
526,
472,
278,
5192,
310,
825,
723,
1207,
9850,
577,
13988,
29889,
13,
13,
29911,
2470,
526,
385,
4780,
982,
304,
1074,
12561,
15422,
800,
29889,
960,
366,
30010,
276,
697,
310,
15724,
2305,
393,
13389,
9850,
541,
26277,
304,
2894,
675,
4129,
7535,
322,
884,
505,
4045,
3814,
322,
22222,
2820,
29892,
385,
5566,
1295,
291,
13154,
526,
278,
1234,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
/**
* Stripe integration services.
* @see: https://stripe.com/
*/
// Dependencies.
const querystring = require('querystring');
const config = require('../config');
const https = require('https');
const util = require('util');
// Configure stripe debugger.
const debug = util.debuglog('stripe');
// Create library container.
const stripe = {};
/**
* Charge the payment.
* @param {number} amount - Amount of money that will be charged (e.g., 100 cents to charge $1.00).
* @param {string} currency - Three-letter ISO currency code, in lowercase.
* @param {string} source - A payment source to be charged (i.e. ID of a card, a bank account, a source, a token).
* @param {object} [metadata] - Set of key-value pairs that you can attach to an object.
* @param {string} [description] - An arbitrary string which you can attach to a Charge object.
* @return {Promise<boolean>}
*/
stripe.charge = async ({amount, currency, source, metadata = {}, description = ''}) => {
// Promisify https.request() function.
return new Promise((resolve, reject) => {
// Check that all required fields are provided.
if (!amount || !source || !currency) {
reject(new Error('Missing required payment fields'));
}
// Configure the request payload.
const payload = {
amount,
currency,
source,
description,
metadata,
};
// Stringify the payload.
const stringPayload = querystring.stringify(payload);
// Debug stripe payload.
debug('\x1b[33m%s\x1b[0m', stringPayload);
// Configure the request details.
const requestDetails = {
protocol: 'https:',
hostname: config.stripe.host,
method: 'POST',
path: '/v1/charges',
auth: `${config.stripe.secretKey}:`,
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': Buffer.byteLength(stringPayload),
},
};
// Instantiate the request object.
const request = https.request(requestDetails, (response) => {
// Grab the status of the sent request.
const status = response.statusCode;
// Return successfully if the request went through.
if (status === 200 || status === 201) {
resolve();
} else {
reject(new Error(`Payment has failed with status ${status}`));
}
});
// Bind to the error event so it doesn't get thrown.
request.on('error', (error) => {
reject(error);
});
// Add payload to the request.
request.write(stringPayload);
// End the request.
request.end();
});
};
// Export the module.
module.exports = stripe;
| [
1,
7762,
13,
334,
624,
374,
412,
13465,
5786,
29889,
13,
334,
732,
4149,
29901,
2045,
597,
303,
374,
412,
29889,
510,
29914,
13,
3776,
13,
13,
458,
10034,
7158,
29889,
13,
3075,
2346,
1807,
353,
1996,
877,
1972,
1807,
2157,
13,
3075,
2295,
353,
1996,
877,
6995,
2917,
2157,
13,
3075,
2045,
353,
1996,
877,
991,
2157,
13,
3075,
3667,
353,
1996,
877,
4422,
2157,
13,
13,
458,
1281,
4532,
10076,
412,
18297,
29889,
13,
3075,
4744,
353,
3667,
29889,
8382,
1188,
877,
303,
374,
412,
2157,
13,
13,
458,
6204,
3489,
5639,
29889,
13,
3075,
10076,
412,
353,
15739,
13,
13,
7918,
13,
334,
2896,
479,
278,
19179,
29889,
13,
334,
732,
3207,
426,
4537,
29913,
5253,
448,
1913,
792,
310,
6909,
393,
674,
367,
20139,
313,
29872,
29889,
29887,
1696,
29871,
29896,
29900,
29900,
274,
1237,
304,
8323,
395,
29896,
29889,
29900,
29900,
467,
13,
334,
732,
3207,
426,
1807,
29913,
27550,
448,
12753,
29899,
15670,
17723,
27550,
775,
29892,
297,
5224,
4878,
29889,
13,
334,
732,
3207,
426,
1807,
29913,
2752,
448,
319,
19179,
2752,
304,
367,
20139,
313,
29875,
29889,
29872,
29889,
3553,
310,
263,
5881,
29892,
263,
9124,
3633,
29892,
263,
2752,
29892,
263,
5993,
467,
13,
334,
732,
3207,
426,
3318,
29913,
518,
19635,
29962,
448,
3789,
310,
1820,
29899,
1767,
11000,
393,
366,
508,
10641,
304,
385,
1203,
29889,
13,
334,
732,
3207,
426,
1807,
29913,
518,
8216,
29962,
448,
530,
11472,
1347,
607,
366,
508,
10641,
304,
263,
2896,
479,
1203,
29889,
13,
334,
732,
2457,
426,
18571,
895,
29966,
20054,
29958,
29913,
13,
3776,
13,
303,
374,
412,
29889,
23367,
353,
7465,
21313,
14506,
29892,
27550,
29892,
2752,
29892,
15562,
353,
24335,
6139,
353,
6629,
1800,
1149,
426,
13,
29871,
849,
9705,
275,
1598,
2045,
29889,
3827,
580,
740,
29889,
13,
29871,
736,
716,
21501,
3552,
17863,
29892,
12560,
29897,
1149,
426,
13,
1678,
849,
5399,
393,
599,
3734,
4235,
526,
4944,
29889,
13,
1678,
565,
5384,
14506,
3830,
1738,
4993,
3830,
1738,
26095,
29897,
426,
13,
418,
12560,
29898,
1482,
4829,
877,
18552,
292,
3734,
19179,
4235,
14749,
13,
1678,
500,
13,
13,
1678,
849,
1281,
4532,
278,
2009,
20092,
29889,
13,
1678,
1040,
20092,
353,
426,
13,
418,
5253,
29892,
13,
418,
27550,
29892,
13,
418,
2752,
29892,
13,
418,
6139,
29892,
13,
418,
15562,
29892,
13,
1678,
3980,
13,
13,
1678,
849,
1714,
1598,
278,
20092,
29889,
13,
1678,
1040,
1347,
15467,
1359,
353,
2346,
1807,
29889,
22070,
29898,
23813,
416,
13,
13,
1678,
849,
16171,
10076,
412,
20092,
29889,
13,
1678,
4744,
28909,
29916,
29896,
29890,
29961,
29941,
29941,
29885,
29995,
29879,
29905,
29916,
29896,
29890,
29961,
29900,
29885,
742,
1347,
15467,
1359,
416,
13,
13,
1678,
849,
1281,
4532,
278,
2009,
4902,
29889,
13,
1678,
1040,
2009,
10602,
353,
426,
13,
418,
9608,
29901,
525,
991,
29901,
742,
13,
418,
3495,
978,
29901,
2295,
29889,
303,
374,
412,
29889,
3069,
29892,
13,
418,
1158,
29901,
525,
5438,
742,
13,
418,
2224,
29901,
8207,
29894,
29896,
29914,
25389,
267,
742,
13,
418,
4817,
29901,
5024,
29912,
2917,
29889,
303,
374,
412,
29889,
19024,
2558,
6177,
1673,
13,
418,
9066,
29901,
426,
13,
4706,
525,
3916,
29899,
1542,
2396,
525,
6214,
29914,
29916,
29899,
1636,
29899,
689,
29899,
2271,
26716,
742,
13,
4706,
525,
3916,
29899,
6513,
2396,
16534,
29889,
10389,
6513,
29898,
1807,
15467,
1359,
511,
13,
418,
2981,
13,
1678,
3980,
13,
13,
1678,
849,
2799,
3656,
403,
278,
2009,
1203,
29889,
13,
1678,
1040,
2009,
353,
2045,
29889,
3827,
29898,
3827,
10602,
29892,
313,
5327,
29897,
1149,
426,
13,
418,
849,
22351,
278,
4660,
310,
278,
2665,
2009,
29889,
13,
418,
1040,
4660,
353,
2933,
29889,
4882,
3399,
29936,
13,
418,
849,
7106,
8472,
565,
278,
2009,
3512,
1549,
29889,
13,
418,
565,
313,
4882,
6805,
29871,
29906,
29900,
29900,
3830,
4660,
6805,
29871,
29906,
29900,
29896,
29897,
426,
13,
4706,
8814,
890,
13,
418,
500,
1683,
426,
13,
4706,
12560,
29898,
1482,
4829,
16787,
15467,
358,
756,
5229,
411,
4660,
6435,
4882,
10114,
2483,
13,
418,
500,
13,
1678,
2604,
13,
13,
1678,
849,
29672,
304,
278,
1059,
1741,
577,
372,
1838,
29915,
29873,
679,
12005,
29889,
13,
1678,
2009,
29889,
265,
877,
2704,
742,
313,
2704,
29897,
1149,
426,
13,
418,
12560,
29898,
2704,
416,
13,
1678,
2604,
13,
13,
1678,
849,
3462,
20092,
304,
278,
2009,
29889,
13,
1678,
2009,
29889,
3539,
29898,
1807,
15467,
1359,
416,
13,
13,
1678,
849,
2796,
278,
2009,
29889,
13,
1678,
2009,
29889,
355,
890,
13,
29871,
2604,
13,
3400,
13,
13,
458,
1222,
637,
278,
3883,
29889,
13,
5453,
29889,
26500,
353,
10076,
412,
29936,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
just a quick note on here "in between the years", as we say in Germany. there's a "proper" post waiting for the new year, and more to come too! 2013 has been a busy year for us, and a lot of time was spent offline, away from blogland and the interwebs. that meant less regular posting, which we regretted, of course, but such is life! all the same, you dear readers, still stopped by. so we'd like to thank you for your loyalty, support and encouragement here on artsy ants. we look forward to sharing more artsy endeavours, creative projects and inspiration and the adventures of everyday life with you next year. | [
1,
925,
263,
4996,
4443,
373,
1244,
376,
262,
1546,
278,
2440,
613,
408,
591,
1827,
297,
9556,
29889,
727,
29915,
29879,
263,
376,
771,
546,
29908,
1400,
10534,
363,
278,
716,
1629,
29892,
322,
901,
304,
2041,
2086,
29991,
29871,
29906,
29900,
29896,
29941,
756,
1063,
263,
19587,
1629,
363,
502,
29892,
322,
263,
3287,
310,
931,
471,
10398,
1283,
1220,
29892,
3448,
515,
12618,
1049,
322,
278,
1006,
2676,
29879,
29889,
393,
6839,
3109,
4943,
16742,
29892,
607,
591,
1072,
13158,
287,
29892,
310,
3236,
29892,
541,
1316,
338,
2834,
29991,
599,
278,
1021,
29892,
366,
9425,
22176,
29892,
1603,
11084,
491,
29889,
577,
591,
29915,
29881,
763,
304,
6452,
366,
363,
596,
28108,
1017,
29892,
2304,
322,
18443,
882,
1244,
373,
16930,
29891,
385,
1372,
29889,
591,
1106,
6375,
304,
19383,
901,
16930,
29891,
26009,
2470,
29892,
907,
1230,
9279,
322,
8681,
12232,
322,
278,
17623,
1973,
310,
1432,
3250,
2834,
411,
366,
2446,
1629,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Translate
About Me
Monday, June 3, 2013
Watch PGT Season 4 Grandwinner (Roel Manlangit)
Congratulations! Roel Manlangit of PGT Season 4 Grandwinner, at age of eight (8) as three(3) on five(5) siblings he experienced and know what does a family broken means as Roel's Parents left him due to a family problem but the reason is still clueless for this young child. Their dearest home were washed-out by typhoon Pablo even his dvd player got damaged who were dear to him likewise other appliances. Due to this case Roel Manlangit did not give-up to lose his dreams at his young age, singing in acapella for his everyday practice to enhance his vocals. His good neighborhood named Arlyn Arban builds temporary shelter for him near swamp and adopted sooner as a true little brother. God's gift and the people around him who help and support him is his only key for every circumstance that face him everyday a dream about winning to build their house likewise restore their appliances due to mutilation of typhoon Pablo.
As I reminiscent, we face such struggled for now, short of financials is the main problem which we face on until now but once again even in our area there was Arlyn Arban who helps us on such matters. How many Arlyn Arban have on our land, how many Arlyn Arban saves the lives of young and innocents. I hope this was the beginning to help others in other beautiful ways.
Pilipinas Got Talent (PGT) is his only option to help his family and for the said restoration of their house, so that even strong typhoon got no chance against destruction again. This is the only hope on a thirteen (13) years old child's paths, believing on himself, Gods will and self confidence are additional words for his guidance of success. Season 4 on PGT (ABS-CBN Channel 2), Roel Manlangit rushed for his dreams and that dreams were continuously hoping as the Judges (Ai-ai Delas Alas, Kris Aquino and known as FMG,) astounded as they heard his pure singing talent and a homeless boy steals the talent show.
Roel Manlangit first shown on youtube tried out on singing competition singing on the street entitled “I will always love you” by Whitney Houston and everybody amazed and shocked for the power revealed on his vocals. He did not know that there was a man watched him and recorded his voice while singing and the video hits more than thousand for only three (3) days. | [
1,
4103,
9632,
13,
13,
28173,
2191,
13,
13,
29924,
898,
388,
29892,
5306,
29871,
29941,
29892,
29871,
29906,
29900,
29896,
29941,
13,
13,
24709,
349,
23799,
24791,
29871,
29946,
6265,
29893,
3993,
313,
9588,
295,
2315,
3893,
277,
29897,
13,
13,
29907,
549,
3605,
8250,
29991,
1528,
295,
2315,
3893,
277,
310,
349,
23799,
24791,
29871,
29946,
6265,
29893,
3993,
29892,
472,
5046,
310,
9475,
313,
29947,
29897,
408,
2211,
29898,
29941,
29897,
373,
5320,
29898,
29945,
29897,
27767,
18964,
540,
18860,
322,
1073,
825,
947,
263,
3942,
9391,
2794,
408,
1528,
295,
29915,
29879,
1459,
1237,
2175,
1075,
2861,
304,
263,
3942,
1108,
541,
278,
2769,
338,
1603,
1067,
2491,
404,
363,
445,
4123,
2278,
29889,
11275,
9425,
342,
3271,
892,
471,
17143,
29899,
449,
491,
7911,
561,
6150,
24770,
1584,
670,
14897,
29881,
4847,
2355,
5625,
4063,
1058,
892,
9425,
304,
1075,
763,
3538,
916,
623,
492,
2925,
29889,
16809,
304,
445,
1206,
1528,
295,
2315,
3893,
277,
1258,
451,
2367,
29899,
786,
304,
14074,
670,
12561,
29879,
472,
670,
4123,
5046,
29892,
23623,
297,
1274,
481,
3547,
363,
670,
1432,
3250,
6944,
304,
26371,
749,
670,
17985,
29889,
3600,
1781,
18403,
4257,
826,
13493,
826,
2571,
23315,
13201,
27709,
363,
1075,
2978,
2381,
1160,
322,
16356,
29548,
408,
263,
1565,
2217,
8099,
29889,
4177,
29915,
29879,
19797,
322,
278,
2305,
2820,
1075,
1058,
1371,
322,
2304,
1075,
338,
670,
871,
1820,
363,
1432,
11708,
749,
393,
3700,
1075,
1432,
3250,
263,
12561,
1048,
15613,
304,
2048,
1009,
3699,
763,
3538,
17749,
1009,
623,
492,
2925,
2861,
304,
286,
4422,
362,
310,
7911,
561,
6150,
24770,
29889,
13,
13,
2887,
306,
1083,
262,
275,
1760,
29892,
591,
3700,
1316,
10205,
839,
363,
1286,
29892,
3273,
310,
22347,
1338,
338,
278,
1667,
1108,
607,
591,
3700,
373,
2745,
1286,
541,
2748,
1449,
1584,
297,
1749,
4038,
727,
471,
826,
13493,
826,
2571,
1058,
6911,
502,
373,
1316,
13750,
29889,
1128,
1784,
826,
13493,
826,
2571,
505,
373,
1749,
2982,
29892,
920,
1784,
826,
13493,
826,
2571,
27401,
278,
12080,
310,
4123,
322,
21458,
1237,
29889,
306,
4966,
445,
471,
278,
6763,
304,
1371,
4045,
297,
916,
9560,
5837,
29889,
13,
13,
29925,
309,
666,
10189,
15992,
10288,
296,
313,
16903,
29911,
29897,
338,
670,
871,
2984,
304,
1371,
670,
3942,
322,
363,
278,
1497,
1791,
12418,
310,
1009,
3699,
29892,
577,
393,
1584,
4549,
7911,
561,
6150,
2355,
694,
8825,
2750,
22104,
1449,
29889,
910,
338,
278,
871,
4966,
373,
263,
266,
381,
9404,
313,
29896,
29941,
29897,
2440,
2030,
2278,
29915,
29879,
10898,
29892,
1339,
15387,
373,
3654,
29892,
4177,
29879,
674,
322,
1583,
16420,
526,
5684,
3838,
363,
670,
27323,
310,
2551,
29889,
24791,
29871,
29946,
373,
349,
23799,
313,
2882,
29903,
29899,
21685,
29940,
17368,
29871,
29906,
511,
1528,
295,
2315,
3893,
277,
364,
15392,
363,
670,
12561,
29879,
322,
393,
12561,
29879,
892,
3133,
5794,
17231,
408,
278,
8660,
2710,
313,
29909,
29875,
29899,
1794,
5556,
294,
838,
294,
29892,
476,
3780,
16020,
1789,
322,
2998,
408,
20499,
29954,
29892,
29897,
8717,
7261,
408,
896,
6091,
670,
8296,
23623,
24242,
322,
263,
3632,
6393,
8023,
1886,
1338,
278,
24242,
1510,
29889,
13,
13,
9588,
295,
2315,
3893,
277,
937,
4318,
373,
366,
29873,
4003,
1898,
714,
373,
23623,
13888,
23623,
373,
278,
11952,
23437,
1346,
29902,
674,
2337,
5360,
366,
30024,
491,
20572,
3801,
24327,
322,
26077,
21863,
287,
322,
19253,
287,
363,
278,
3081,
17845,
373,
670,
17985,
29889,
940,
1258,
451,
1073,
393,
727,
471,
263,
767,
20654,
1075,
322,
10478,
670,
7314,
1550,
23623,
322,
278,
4863,
19572,
901,
1135,
10405,
363,
871,
2211,
313,
29941,
29897,
3841,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Legal Analysis: Russia’s Right To Be Forgotten
In August 2015, ARTICLE 19 analysed the so-called “Right To Be Forgotten” Bill of the Russian Federation (‘the Bill’), which was signed into law in July 2015 and will come into force on 1 January 2016.
When introducing the Bill, Russian lawmakers referred to the 2014 ruling of the Court of Justice of the European Union (CJEU) in the Google Spain case, arguing that Russian citizens should also enjoy a “right to be forgotten.” The Bill gives Russian citizens the right to request that search engines remove links about them that are in violation of Russian law, inaccurate, out of date, or irrelevant because of subsequent events or actions taken by the citizens.
In this legal analysis, ARTICLE 19 examines the compatibility of the Bill with international standards on freedom of expression. We find that, while the Bill broadly seeks to replicate the more limited right that was recognised by the CJEU in the Google Spain case, it fails to provide the crucial safeguards for the protection of the right to freedom of expression that the CJEU had identified. In particular, Russian lawmakers have failed to carve out limitations on “right to be forgotten” when the personal information at issue is in the public interest and/or concerns public figures.
Important procedural safeguards are also missing, including the right of linked-to sites to be notified that a “right to be forgotten” request has been made in respect of their content and a requirement that search engines publish transparency reports containing sufficiently detailed information about the nature, volume and outcome of “right to be forgotten” requests. Moreover, search engines are required by the Bill to take action in relation to the Internet, i.e. all domain names, rather than .ru domains names.
ARTICLE 19 calls on the Russian Government to urgently review the Bill and ensure that its provisions comply with international human rights standards on freedom of expression.
Key Recommendations:
The new Article 110 of Federal Law no. 149-FZ On Information, Information Technologies and Data Protection included in the Bill should be entitled “right to request the delisting of search results on the basis of a person’s name;”
The applicability of the Bill should be subject to the operator having a branch or subsidiary established in the Russian Federation;
The material effect of a successful “right to be forgotten” request should be limited to de-listing search results generated on the basis of a search for a person’s name;
Any “right to be forgotten” provision should, at the very least:
contain an overarching presumption that information already legitimately in the public domain should remain in the public domain save where it has demonstrably caused serious harm to the person concerned;
a broad exception for personal information in the public interest and personal information concerning public figures.
More generally, any law granting a “right to be forgotten” should provide for balancing exercise with the right to freedom of expression, and if appropriate, set out a non-exhaustive list of indicative criteria to be taken into account when carrying out that balancing exercise.
The scope of a successful “right to be forgotten” request should be strictly limited to .ru domains.
The Bill should provide a right for linked-to sites to be notified and at the very least give them an opportunity to intervene in cases being challenged by search engines before the courts.
The Bill should require that search engines publish sufficiently detailed information about the nature, volume, and outcome of de-listing requests. | [
1,
5682,
284,
24352,
29901,
12710,
30010,
29879,
10428,
1763,
1522,
383,
990,
327,
841,
13,
13,
797,
3111,
29871,
29906,
29900,
29896,
29945,
29892,
9033,
29911,
2965,
1307,
29871,
29896,
29929,
3483,
952,
287,
278,
577,
29899,
13998,
1346,
7341,
1763,
1522,
383,
990,
327,
841,
30024,
6682,
310,
278,
10637,
20438,
313,
30086,
1552,
6682,
30010,
511,
607,
471,
8794,
964,
4307,
297,
5468,
29871,
29906,
29900,
29896,
29945,
322,
674,
2041,
964,
4889,
373,
29871,
29896,
5490,
29871,
29906,
29900,
29896,
29953,
29889,
13,
13,
10401,
4547,
3277,
278,
6682,
29892,
10637,
4307,
29885,
21079,
12992,
304,
278,
29871,
29906,
29900,
29896,
29946,
364,
19478,
310,
278,
9245,
310,
17181,
310,
278,
7824,
7761,
313,
29907,
29967,
29923,
29965,
29897,
297,
278,
5087,
13616,
1206,
29892,
1852,
26420,
393,
10637,
18363,
881,
884,
13389,
263,
1346,
1266,
304,
367,
20898,
3178,
450,
6682,
4076,
10637,
18363,
278,
1492,
304,
2009,
393,
2740,
24000,
3349,
2988,
1048,
963,
393,
526,
297,
5537,
362,
310,
10637,
4307,
29892,
297,
562,
2764,
403,
29892,
714,
310,
2635,
29892,
470,
28190,
1363,
310,
15352,
4959,
470,
8820,
4586,
491,
278,
18363,
29889,
13,
13,
797,
445,
11706,
7418,
29892,
9033,
29911,
2965,
1307,
29871,
29896,
29929,
4392,
1475,
278,
24521,
310,
278,
6682,
411,
6121,
20801,
373,
16082,
310,
4603,
29889,
1334,
1284,
393,
29892,
1550,
278,
6682,
7300,
368,
1074,
2039,
304,
1634,
5926,
278,
901,
9078,
1492,
393,
471,
5936,
3368,
491,
278,
315,
29967,
29923,
29965,
297,
278,
5087,
13616,
1206,
29892,
372,
8465,
304,
3867,
278,
7618,
1455,
9437,
24024,
3163,
363,
278,
13047,
310,
278,
1492,
304,
16082,
310,
4603,
393,
278,
315,
29967,
29923,
29965,
750,
15659,
29889,
512,
3153,
29892,
10637,
4307,
29885,
21079,
505,
5229,
304,
1559,
345,
714,
27028,
373,
1346,
1266,
304,
367,
20898,
30024,
746,
278,
7333,
2472,
472,
2228,
338,
297,
278,
970,
4066,
322,
29914,
272,
21838,
970,
13994,
29889,
13,
13,
17518,
424,
6449,
3631,
9437,
24024,
3163,
526,
884,
4567,
29892,
3704,
278,
1492,
310,
9024,
29899,
517,
11840,
304,
367,
451,
2164,
393,
263,
1346,
1266,
304,
367,
20898,
30024,
2009,
756,
1063,
1754,
297,
3390,
310,
1009,
2793,
322,
263,
11809,
393,
2740,
24000,
9805,
1301,
862,
3819,
13676,
6943,
18430,
13173,
2472,
1048,
278,
5469,
29892,
7977,
322,
21957,
310,
1346,
1266,
304,
367,
20898,
30024,
7274,
29889,
12808,
29892,
2740,
24000,
526,
3734,
491,
278,
6682,
304,
2125,
3158,
297,
8220,
304,
278,
4685,
29892,
474,
29889,
29872,
29889,
599,
5354,
2983,
29892,
3265,
1135,
869,
582,
21904,
2983,
29889,
13,
13,
8322,
2965,
1307,
29871,
29896,
29929,
5717,
373,
278,
10637,
10354,
304,
5065,
29887,
2705,
9076,
278,
6682,
322,
9801,
393,
967,
1326,
12112,
752,
368,
411,
6121,
5199,
10462,
20801,
373,
16082,
310,
4603,
29889,
13,
13,
2558,
830,
2055,
355,
800,
29901,
13,
13,
1576,
716,
21746,
29871,
29896,
29896,
29900,
310,
14879,
7927,
694,
29889,
29871,
29896,
29946,
29929,
29899,
29943,
29999,
1551,
10343,
29892,
10343,
8364,
11763,
322,
3630,
14409,
428,
5134,
297,
278,
6682,
881,
367,
23437,
1346,
1266,
304,
2009,
278,
628,
15423,
310,
2740,
2582,
373,
278,
8405,
310,
263,
2022,
30010,
29879,
1024,
29936,
30024,
13,
13,
1576,
15576,
3097,
310,
278,
6682,
881,
367,
4967,
304,
278,
5455,
2534,
263,
5443,
470,
11684,
8819,
653,
7841,
297,
278,
10637,
20438,
29936,
13,
13,
1576,
5518,
2779,
310,
263,
9150,
1346,
1266,
304,
367,
20898,
30024,
2009,
881,
367,
9078,
304,
316,
29899,
1761,
292,
2740,
2582,
5759,
373,
278,
8405,
310,
263,
2740,
363,
263,
2022,
30010,
29879,
1024,
29936,
13,
13,
10773,
1346,
1266,
304,
367,
20898,
30024,
25161,
881,
29892,
472,
278,
1407,
3203,
29901,
13,
13,
1285,
475,
385,
975,
1279,
292,
2225,
28069,
393,
2472,
2307,
25204,
15084,
297,
278,
970,
5354,
881,
3933,
297,
278,
970,
5354,
4078,
988,
372,
756,
8033,
4151,
29890,
368,
8581,
10676,
10311,
304,
278,
2022,
15041,
29936,
13,
13,
29874,
7300,
3682,
363,
7333,
2472,
297,
278,
970,
4066,
322,
7333,
2472,
19813,
970,
13994,
29889,
13,
13,
20761,
6892,
29892,
738,
4307,
16690,
292,
263,
1346,
1266,
304,
367,
20898,
30024,
881,
3867,
363,
6411,
19985,
15058,
411,
278,
1492,
304,
16082,
310,
4603,
29892,
322,
565,
8210,
29892,
731,
714,
263,
1661,
29899,
735,
2350,
504,
573,
1051,
310,
4221,
1230,
16614,
304,
367,
4586,
964,
3633,
746,
19436,
714,
393,
6411,
19985,
15058,
29889,
13,
13,
1576,
6874,
310,
263,
9150,
1346,
1266,
304,
367,
20898,
30024,
2009,
881,
367,
18719,
9078,
304,
869,
582,
21904,
29889,
13,
13,
1576,
6682,
881,
3867,
263,
1492,
363,
9024,
29899,
517,
11840,
304,
367,
451,
2164,
322,
472,
278,
1407,
3203,
2367,
963,
385,
15130,
304,
26314,
29872,
297,
4251,
1641,
18066,
287,
491,
2740,
24000,
1434,
278,
28033,
29889,
13,
13,
1576,
6682,
881,
1996,
393,
2740,
24000,
9805,
18430,
13173,
2472,
1048,
278,
5469,
29892,
7977,
29892,
322,
21957,
310,
316,
29899,
1761,
292,
7274,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Abercrombie and Kent Adventures in Antarctica
Last updated on May 9th, 2013 by Charlotte Lisbonne
Don’t miss out on this chance to cross Antarctica off your wish list.
Experienced globe-trotters have discovered that there are benefits to travelling in these challenging times, including once-in-a-lifetime incentives on dream vacations. “Look past the economy. Instead, think about the opportunity,” says Geoffrey Kent, founder, chairman and chief executive office of award-winning travel company Abercrombie & Kent. “One of the best investments you can make right now is to travel with your family. Attractive prices have brought many destinations you’ve dreamed of within reach.”
Antarctica is consistently at the top of travellers’ wish lists but often inaccessible to multi-generational families due to the cost of additional cabins to accommodate extended family. Now, it is no longer just a dream, but an exceptional value as Abercrombie & Kent has waived single supplements aboard ‘Minerva,’ A&K’s luxury boat cruise, on select Antarctic departures when booked before August 31, 2009.
Follow in the footsteps of one of the greatest adventurers of all time: Sir Ernest Shackleton on Antarctica, South Georgia & the Falklands. Land on the Antarctic Peninsula and explore Deception Cove where hot springs make it possible to swim. Cruise along the glacier-carved coves and rugged shores of South Georgia, a nearly-submerged continuation of the Andes. Step back in time on the Falkland Islands where nature still reigns. The 21-day tours depart from December 17, 2009 until January 5, 2010, January 2 – 21, January 28 – February 16 and February 13 – March 4, 2010.
Luxury boat cruise Minerva’s world-class expedition team and lecturers — naturalists, geologists, zoologists, historians and ornithologists — provide a comprehensive enrichment program described by Conde Nast Traveler as “still the one to beat for high-quality, hands-on exploration.” Historian Dr. David Wilson, great-nephew of the great polar adventurer Edward Wilson who died with Captain Scott on his return back from the South Pole in 1912, shares his passion for the history of Antarctic exploration with family pictures and rarely seen material drawn from family archives.
On other cruises to different destinations, Minerva carries up to 300 passengers. But in Antarctica, A&K limits her complement to just 199 guests. That’s an important difference: with fewer passengers, there are more shore excursions each day, as well as outside cabins for everyone. A fleet of 12 Zodiac boats – safe, stable, motorized rubber rafts – make it possible to land on even the most remote shores. Additionally, guests enjoy attentive on-board service with nearly a 1:1 staff-to-passenger ratio, unequalled in the expedition cruise industry. | [
1,
20626,
29883,
456,
10993,
322,
13272,
21255,
1973,
297,
5459,
27014,
983,
13,
13,
8897,
4784,
373,
2610,
29871,
29929,
386,
29892,
29871,
29906,
29900,
29896,
29941,
491,
21499,
15285,
6718,
484,
13,
13,
10310,
30010,
29873,
3052,
714,
373,
445,
8825,
304,
4891,
5459,
27014,
983,
1283,
596,
6398,
1051,
29889,
13,
13,
1252,
546,
819,
1133,
15482,
915,
29899,
29873,
5450,
2153,
505,
10943,
393,
727,
526,
23633,
304,
6427,
7807,
297,
1438,
18066,
292,
3064,
29892,
3704,
2748,
29899,
262,
29899,
29874,
29899,
29880,
361,
5410,
297,
1760,
3145,
373,
12561,
11757,
800,
29889,
1346,
14959,
4940,
278,
26504,
29889,
8669,
29892,
1348,
1048,
278,
15130,
3995,
4083,
28295,
8903,
13272,
29892,
25331,
29892,
28942,
322,
9087,
22760,
8034,
310,
9862,
29899,
5080,
1076,
9850,
5001,
20626,
29883,
456,
10993,
669,
13272,
29889,
1346,
6716,
310,
278,
1900,
13258,
1860,
366,
508,
1207,
1492,
1286,
338,
304,
9850,
411,
596,
3942,
29889,
6212,
1461,
573,
26094,
505,
6296,
1784,
15422,
800,
366,
30010,
345,
12561,
287,
310,
2629,
6159,
3178,
13,
13,
13448,
27014,
983,
338,
5718,
2705,
472,
278,
2246,
310,
6427,
28257,
30010,
6398,
8857,
541,
4049,
297,
5943,
1821,
304,
2473,
29899,
4738,
1288,
13175,
2861,
304,
278,
3438,
310,
5684,
7776,
1144,
304,
24803,
403,
10410,
3942,
29889,
2567,
29892,
372,
338,
694,
5520,
925,
263,
12561,
29892,
541,
385,
3682,
284,
995,
408,
20626,
29883,
456,
10993,
669,
13272,
756,
11324,
2347,
2323,
1462,
944,
29879,
633,
29877,
538,
5129,
29924,
4983,
1564,
18887,
319,
29987,
29968,
30010,
29879,
21684,
2857,
13006,
7618,
895,
29892,
373,
1831,
5459,
279,
20009,
5840,
1973,
746,
3143,
287,
1434,
3111,
29871,
29941,
29896,
29892,
29871,
29906,
29900,
29900,
29929,
29889,
13,
13,
29943,
2952,
297,
278,
3661,
24530,
310,
697,
310,
278,
14176,
17623,
332,
414,
310,
599,
931,
29901,
6290,
23993,
1383,
547,
11285,
373,
5459,
27014,
983,
29892,
4275,
16762,
669,
278,
383,
2235,
5252,
29889,
3172,
373,
278,
5459,
279,
20009,
7363,
1144,
2497,
322,
26987,
897,
1441,
315,
994,
988,
7375,
7689,
886,
1207,
372,
1950,
304,
2381,
326,
29889,
11263,
895,
3412,
278,
14751,
13241,
29899,
4287,
1490,
18838,
267,
322,
29833,
3192,
528,
2361,
310,
4275,
16762,
29892,
263,
8886,
29899,
1491,
1050,
3192,
3133,
362,
310,
278,
1126,
267,
29889,
16696,
1250,
297,
931,
373,
278,
383,
2235,
1049,
17839,
988,
5469,
1603,
20913,
29879,
29889,
450,
29871,
29906,
29896,
29899,
3250,
260,
2470,
5840,
515,
5846,
29871,
29896,
29955,
29892,
29871,
29906,
29900,
29900,
29929,
2745,
5490,
29871,
29945,
29892,
29871,
29906,
29900,
29896,
29900,
29892,
5490,
29871,
29906,
785,
29871,
29906,
29896,
29892,
5490,
29871,
29906,
29947,
785,
6339,
29871,
29896,
29953,
322,
6339,
29871,
29896,
29941,
785,
4779,
29871,
29946,
29892,
29871,
29906,
29900,
29896,
29900,
29889,
13,
13,
29931,
1314,
2857,
13006,
7618,
895,
3080,
25461,
30010,
29879,
3186,
29899,
1990,
24431,
3815,
322,
13081,
332,
414,
813,
5613,
2879,
29892,
1737,
1189,
2879,
29892,
8534,
1189,
2879,
29892,
3603,
5834,
322,
15937,
389,
1189,
2879,
813,
3867,
263,
15171,
6270,
427,
4018,
358,
1824,
5439,
491,
1281,
311,
405,
579,
3201,
955,
261,
408,
1346,
303,
453,
278,
697,
304,
16646,
363,
1880,
29899,
29567,
29892,
6567,
29899,
265,
3902,
12418,
3178,
4731,
713,
4942,
29889,
4699,
13015,
29892,
2107,
29899,
484,
29886,
13636,
310,
278,
2107,
16755,
17623,
9945,
9300,
13015,
1058,
6423,
411,
10842,
8075,
373,
670,
736,
1250,
515,
278,
4275,
349,
1772,
297,
29871,
29896,
29929,
29896,
29906,
29892,
29358,
670,
15935,
363,
278,
4955,
310,
5459,
279,
20009,
3902,
12418,
411,
3942,
14956,
322,
23703,
3595,
5518,
12061,
515,
3942,
3190,
3145,
29889,
13,
13,
2951,
916,
7618,
4637,
304,
1422,
15422,
800,
29892,
3080,
25461,
1559,
2722,
701,
304,
29871,
29941,
29900,
29900,
28134,
29889,
1205,
297,
5459,
27014,
983,
29892,
319,
29987,
29968,
13071,
902,
19595,
304,
925,
29871,
29896,
29929,
29929,
28865,
29889,
2193,
30010,
29879,
385,
4100,
4328,
29901,
411,
28145,
28134,
29892,
727,
526,
901,
19055,
5566,
1295,
1080,
1269,
2462,
29892,
408,
1532,
408,
5377,
7776,
1144,
363,
14332,
29889,
319,
22338,
310,
29871,
29896,
29906,
796,
397,
13544,
25462,
785,
9109,
29892,
13714,
29892,
10992,
1891,
14051,
495,
1153,
615,
29879,
785,
1207,
372,
1950,
304,
2982,
373,
1584,
278,
1556,
7592,
528,
2361,
29889,
19814,
29892,
28865,
13389,
1098,
296,
573,
373,
29899,
3377,
2669,
411,
8886,
263,
29871,
29896,
29901,
29896,
13925,
29899,
517,
29899,
3364,
15109,
11959,
29892,
1597,
339,
4212,
297,
278,
24431,
7618,
895,
13661,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
I'm looking for someone to design an image of an eagle's talons holding onto a bundle of 4 arrows. The eagles leg and claws should be modeled after that seen in the attached image titled "eagle claw 2" in an overhand grip that still shows the talons like that in "eagle claw 1" with 4 arrows in the style of those seen in the attached image titled "arrows."
Hi there,
I need this 2D platformer to include the following.
A simple small environment using these assets ONLY
[login to view URL]
A character using this sprite sheet ONLY
[login to view URL]
The character needs to
- Move with the WASD keys or Arrow Keys (or both)
- Have the camera follow the player throughout the map
- Throw knifes (included in sprite sheet)
- Jump
- Attack with sword
I th...
I am looking for someone who can do a screen share and help me give a new SFTP user the correct "write access" so they can write to to the web server directory.
Simply adding the user to the "www-data" group is not enough access.
This is a secure server, which is why i'm okay to share the screen so you can see what is happening and provide your expertise to solve the iss...
Hello!
We want some writer who will be qualified on blogs writings. Skilled writer needed basically. I have many more writing projects. I want 8-10 blogs/per week. My budget is $7 to $10 for each blog.
If anyone impress me for his great work, I'll offer him many more ongoing projects. Native English speaker only.
More details on chat. No time waster please.
Thanks a lot.
We have a 3 page PHP application which was created using an application builder. The builder is not perfect and requires some adjustments. The first page allows you to select a template and includes 3 filters. This page is functioning. The second page need to display the template name, the application associated to that template and allow the user to change the user id, update the allow deletion f...
I am a website development and services provider. I have semi-retired and am looking for someone to take the place of my lead developer, of 10 years, who has stayed on with my partner. I am going to continue supporting a handful of existing customers. There will be occasional new sites and a little maintenance here and there, both to my sites and my customers. After 30 years I do not code any more...
My team is working with a vendor who has created a two-minute video explaining their product. We have their permission to rebrand the video with my company's logo and branding. We can also make minor change to the script and switch out the dated stock photos that they used.
This is the video we'd like to rebrand: [login to view URL] | [
1,
306,
29915,
29885,
3063,
363,
4856,
304,
2874,
385,
1967,
310,
385,
321,
20860,
29915,
29879,
5969,
787,
13587,
11480,
263,
11846,
310,
29871,
29946,
564,
5727,
29889,
450,
321,
351,
793,
2814,
322,
3711,
5652,
881,
367,
4464,
839,
1156,
393,
3595,
297,
278,
10959,
1967,
25278,
376,
29872,
20860,
3711,
29893,
29871,
29906,
29908,
297,
385,
975,
3179,
330,
6472,
393,
1603,
3697,
278,
5969,
787,
763,
393,
297,
376,
29872,
20860,
3711,
29893,
29871,
29896,
29908,
411,
29871,
29946,
564,
5727,
297,
278,
3114,
310,
1906,
3595,
297,
278,
10959,
1967,
25278,
376,
2936,
29879,
1213,
13,
13,
18567,
727,
29892,
13,
29902,
817,
445,
29871,
29906,
29928,
7481,
261,
304,
3160,
278,
1494,
29889,
13,
29909,
2560,
2319,
5177,
773,
1438,
21608,
6732,
16786,
13,
29961,
7507,
304,
1776,
3988,
29962,
13,
29909,
2931,
773,
445,
29227,
9869,
6732,
16786,
13,
29961,
7507,
304,
1776,
3988,
29962,
13,
1576,
2931,
4225,
304,
13,
29899,
25249,
411,
278,
399,
3289,
29928,
6611,
470,
826,
798,
4813,
952,
313,
272,
1716,
29897,
13,
29899,
6975,
278,
10656,
1101,
278,
4847,
10106,
278,
2910,
13,
29899,
498,
798,
889,
361,
267,
313,
11707,
287,
297,
29227,
9869,
29897,
13,
29899,
435,
3427,
13,
29899,
6212,
547,
411,
22378,
13,
29902,
266,
856,
13,
13,
29902,
626,
3063,
363,
4856,
1058,
508,
437,
263,
4315,
6232,
322,
1371,
592,
2367,
263,
716,
28768,
3557,
1404,
278,
1959,
376,
3539,
2130,
29908,
577,
896,
508,
2436,
304,
304,
278,
1856,
1923,
3884,
29889,
13,
29903,
6574,
368,
4417,
278,
1404,
304,
278,
376,
1636,
29899,
1272,
29908,
2318,
338,
451,
3307,
2130,
29889,
13,
4013,
338,
263,
11592,
1923,
29892,
607,
338,
2020,
474,
29915,
29885,
20759,
304,
6232,
278,
4315,
577,
366,
508,
1074,
825,
338,
10464,
322,
3867,
596,
17924,
895,
304,
4505,
278,
1721,
856,
13,
13,
10994,
29991,
13,
4806,
864,
777,
9227,
1058,
674,
367,
18698,
373,
12618,
29879,
2044,
886,
29889,
4971,
24455,
9227,
4312,
8830,
29889,
306,
505,
1784,
901,
5007,
9279,
29889,
306,
864,
29871,
29947,
29899,
29896,
29900,
12618,
29879,
29914,
546,
4723,
29889,
1619,
23562,
338,
395,
29955,
304,
395,
29896,
29900,
363,
1269,
12618,
29889,
13,
3644,
5019,
21210,
592,
363,
670,
2107,
664,
29892,
306,
29915,
645,
5957,
1075,
1784,
901,
373,
17696,
9279,
29889,
19042,
4223,
25657,
871,
29889,
13,
20761,
4902,
373,
13563,
29889,
1939,
931,
471,
357,
3113,
29889,
13,
16894,
263,
3287,
29889,
13,
13,
4806,
505,
263,
29871,
29941,
1813,
5048,
2280,
607,
471,
2825,
773,
385,
2280,
12856,
29889,
450,
12856,
338,
451,
4922,
322,
6858,
777,
10365,
1860,
29889,
450,
937,
1813,
6511,
366,
304,
1831,
263,
4472,
322,
7805,
29871,
29941,
18094,
29889,
910,
1813,
338,
740,
292,
29889,
450,
1473,
1813,
817,
304,
2479,
278,
4472,
1024,
29892,
278,
2280,
6942,
304,
393,
4472,
322,
2758,
278,
1404,
304,
1735,
278,
1404,
1178,
29892,
2767,
278,
2758,
7374,
291,
285,
856,
13,
13,
29902,
626,
263,
4700,
5849,
322,
5786,
13113,
29889,
306,
505,
12647,
29899,
2267,
2859,
322,
626,
3063,
363,
4856,
304,
2125,
278,
2058,
310,
590,
3275,
13897,
29892,
310,
29871,
29896,
29900,
2440,
29892,
1058,
756,
27661,
373,
411,
590,
18096,
29889,
306,
626,
2675,
304,
6773,
20382,
263,
1361,
1319,
310,
5923,
20330,
29889,
1670,
674,
367,
14882,
1848,
716,
11840,
322,
263,
2217,
25413,
1244,
322,
727,
29892,
1716,
304,
590,
11840,
322,
590,
20330,
29889,
2860,
29871,
29941,
29900,
2440,
306,
437,
451,
775,
738,
901,
856,
13,
13,
3421,
3815,
338,
1985,
411,
263,
27042,
1058,
756,
2825,
263,
1023,
29899,
1195,
1082,
4863,
24232,
1009,
3234,
29889,
1334,
505,
1009,
10751,
304,
337,
16472,
278,
4863,
411,
590,
5001,
29915,
29879,
20194,
322,
14982,
292,
29889,
1334,
508,
884,
1207,
9461,
1735,
304,
278,
2471,
322,
4607,
714,
278,
29797,
10961,
20612,
393,
896,
1304,
29889,
13,
4013,
338,
278,
4863,
591,
29915,
29881,
763,
304,
337,
16472,
29901,
518,
7507,
304,
1776,
3988,
29962
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
I fell into writing about health shortly after grad school, where I realized I didn't want to work in a lab for the rest of my life! My areas of interest are the brain and behavior, as well as what influences the decisions we make about our health, and how the media helps and hinders people's understanding of health issues. As an undergraduate, I studied English Literature and Biopsychology at Vassar College, and got my PhD in Biopsychology and Behavioral Neuroscience at CUNY's Graduate Center in New York City, where I grew up and live now. My day job is as Associate Editor with the health website, TheDoctorWillSeeYouNow.com. My work has appeared in several other publications, including TheAtlantic.com and YogaGlo.com, and I'm particularly excited to join the Forbes health team. Email me at alicegwalton [at] gmail [dot] com .
Could Arguing With Family And Friends Lead To An Early Death?
If you’re prone to bickering with those around you, a new study suggests that you may want to work on that. The research, published in the Journal of Epidemiology and Community Health, reports a strong link between the amount of arguing a person does and the risk of dying from any cause over the next 10 years. Being a man and being out of work made the connection stronger. But across the board, there was a significant association between mortality and the frequency of arguments with family, friends, and even neighbors.
The study, out of the University of Cogenhagen, followed almost 10,000 people, aged 36-52, for 11 years. The researchers asked them about their social relationships, paying special attention to which of the people in their lives tended to be linked with the most arguments. Over the course of the study, 196 women and 226 men died. About half of the deaths were due to cancer, and the other half from heart disease, accidents, and suicides.
People who reported more arguing with their spouses or children were 50% to 100% more likely to die from any cause at all. Those who reported frequent arguing with anyone in their social circle – including friends, relatives, and neighbors – were two to three times more likely to die over the next decade. The results held strong even when factors like depression, gender, marital status, chronic health conditions, available emotional support, and socioeconomic status were removed from the equation.
Men were especially susceptible to the health effects of arguing – in other words, men who tended to argue a lot had a risk of death that was above and beyond the usual risk associated with being male. People who were unemployed were also more vulnerable to the effects of arguing, which is interesting but not unexpected.
Intuitively, the connection may not be so surprising, but the question is what biological mechanisms might explain it. One possibility is that frequent arguing triggers the stress response and the cascade of negative effects that follows.
“Stressful relations have been associated with heightened proinflammatory cytokine activity,” the authors write, which suggests that the immune system may be involved. “It therefore seems plausible that at least part of the association between stressful relations and health might be mediated by stress-responsive systems.”
As always, the caveat is that there’s no evidence of cause and effect: The study doesn’t “prove” that arguing with your spouse leads to an early death. It could, theoretically, be the other way round – that people who are less healthy to begin with argue more. But this seems less likely. More feasible is the idea that the stress of arguing could be linked to mortality through the stress/immune mechanisms mentioned above.
In any case, even if you’re prone to arguing, not all is lost. Learning to manage your anger, especially when it comes to your close relationships, is probably wise. “Intervening in conflicts, particularly for those out of work, may help to curb premature deaths associated with social relationship stressors,” said study author Rikke Lund. And even if it doesn’t extend your life by many years, managing your emotions can only help your relationships – and your spouse will definitely appreciate a less argumentative you.
Post Your Comment
Post Your Reply
Forbes writers have the ability to call out member comments they find particularly interesting. Called-out comments are highlighted across the Forbes network. You'll be notified if your comment is called out. | [
1,
306,
8379,
964,
5007,
1048,
9045,
21734,
1156,
4656,
3762,
29892,
988,
306,
16387,
306,
3282,
29915,
29873,
864,
304,
664,
297,
263,
9775,
363,
278,
1791,
310,
590,
2834,
29991,
1619,
10161,
310,
4066,
526,
278,
17294,
322,
6030,
29892,
408,
1532,
408,
825,
7112,
2063,
278,
1602,
12112,
591,
1207,
1048,
1749,
9045,
29892,
322,
920,
278,
5745,
6911,
322,
298,
513,
414,
2305,
29915,
29879,
8004,
310,
9045,
5626,
29889,
1094,
385,
1090,
5105,
27240,
29892,
306,
12399,
4223,
5449,
1535,
322,
3457,
3554,
3376,
3002,
472,
478,
465,
279,
6346,
29892,
322,
2355,
590,
1963,
29928,
297,
3457,
3554,
3376,
3002,
322,
1522,
16300,
284,
17574,
1883,
15277,
472,
315,
3904,
29979,
29915,
29879,
1632,
13467,
403,
7817,
297,
1570,
3088,
4412,
29892,
988,
306,
13631,
701,
322,
5735,
1286,
29889,
1619,
2462,
4982,
338,
408,
6853,
403,
14059,
411,
278,
9045,
4700,
29892,
450,
6132,
2801,
12984,
13393,
3492,
10454,
29889,
510,
29889,
1619,
664,
756,
7470,
297,
3196,
916,
25964,
29892,
3704,
450,
4178,
29880,
7716,
29889,
510,
322,
612,
14895,
29954,
417,
29889,
510,
29892,
322,
306,
29915,
29885,
10734,
24173,
304,
5988,
278,
1152,
5707,
9045,
3815,
29889,
22608,
592,
472,
394,
293,
387,
14625,
880,
518,
271,
29962,
330,
2549,
518,
6333,
29962,
419,
869,
13,
13,
23323,
826,
2543,
292,
2973,
14662,
1126,
11169,
1975,
951,
328,
1763,
530,
11095,
14450,
29973,
13,
13,
3644,
366,
30010,
276,
544,
650,
304,
289,
860,
3241,
411,
1906,
2820,
366,
29892,
263,
716,
6559,
14661,
393,
366,
1122,
864,
304,
664,
373,
393,
29889,
450,
5925,
29892,
6369,
297,
278,
8237,
310,
14055,
680,
2460,
3002,
322,
19184,
15202,
29892,
13676,
263,
4549,
1544,
1546,
278,
5253,
310,
1852,
26420,
263,
2022,
947,
322,
278,
12045,
310,
27116,
515,
738,
4556,
975,
278,
2446,
29871,
29896,
29900,
2440,
29889,
28265,
263,
767,
322,
1641,
714,
310,
664,
1754,
278,
3957,
23505,
29889,
1205,
4822,
278,
7613,
29892,
727,
471,
263,
7282,
15477,
1546,
5758,
2877,
322,
278,
10868,
310,
6273,
411,
3942,
29892,
7875,
29892,
322,
1584,
22092,
943,
29889,
13,
13,
1576,
6559,
29892,
714,
310,
278,
3014,
310,
315,
6352,
25771,
29892,
5643,
4359,
29871,
29896,
29900,
29892,
29900,
29900,
29900,
2305,
29892,
26552,
29871,
29941,
29953,
29899,
29945,
29906,
29892,
363,
29871,
29896,
29896,
2440,
29889,
450,
5925,
414,
4433,
963,
1048,
1009,
5264,
21702,
29892,
5146,
292,
4266,
8570,
304,
607,
310,
278,
2305,
297,
1009,
12080,
260,
2760,
304,
367,
9024,
411,
278,
1556,
6273,
29889,
6811,
278,
3236,
310,
278,
6559,
29892,
29871,
29896,
29929,
29953,
5866,
322,
29871,
29906,
29906,
29953,
1757,
6423,
29889,
13611,
4203,
310,
278,
4892,
29879,
892,
2861,
304,
23900,
29892,
322,
278,
916,
4203,
515,
5192,
17135,
29892,
1035,
16719,
29892,
322,
23921,
2247,
29889,
13,
13,
15666,
1991,
1058,
8967,
901,
1852,
26420,
411,
1009,
805,
23676,
470,
4344,
892,
29871,
29945,
29900,
29995,
304,
29871,
29896,
29900,
29900,
29995,
901,
5517,
304,
762,
515,
738,
4556,
472,
599,
29889,
16025,
1058,
8967,
17091,
1852,
26420,
411,
5019,
297,
1009,
5264,
8607,
785,
3704,
7875,
29892,
14576,
29892,
322,
22092,
943,
785,
892,
1023,
304,
2211,
3064,
901,
5517,
304,
762,
975,
278,
2446,
316,
6332,
29889,
450,
2582,
4934,
4549,
1584,
746,
13879,
763,
316,
2590,
29892,
23346,
29892,
1766,
2410,
4660,
29892,
17168,
293,
9045,
5855,
29892,
3625,
23023,
1848,
2304,
29892,
322,
577,
3934,
29872,
4599,
293,
4660,
892,
6206,
515,
278,
6306,
29889,
13,
13,
28154,
892,
7148,
2858,
1547,
1821,
304,
278,
9045,
9545,
310,
1852,
26420,
785,
297,
916,
3838,
29892,
1757,
1058,
260,
2760,
304,
27754,
263,
3287,
750,
263,
12045,
310,
4892,
393,
471,
2038,
322,
8724,
278,
9670,
12045,
6942,
411,
1641,
14263,
29889,
11647,
1058,
892,
443,
3451,
2376,
287,
892,
884,
901,
23180,
519,
304,
278,
9545,
310,
1852,
26420,
29892,
607,
338,
8031,
541,
451,
15668,
29889,
13,
13,
2928,
3121,
3598,
29892,
278,
3957,
1122,
451,
367,
577,
26800,
29892,
541,
278,
1139,
338,
825,
4768,
5996,
7208,
12903,
1795,
5649,
372,
29889,
3118,
13331,
338,
393,
17091,
1852,
26420,
23660,
278,
22884,
2933,
322,
278,
3209,
6332,
310,
8178,
9545,
393,
4477,
29889,
13,
13,
30015,
5015,
404,
1319,
5302,
505,
1063,
6942,
411,
3171,
6419,
410,
262,
242,
175,
133,
314,
2922,
706,
5094,
17082,
457,
6354,
3995,
278,
15717,
2436,
29892,
607,
14661,
393,
278,
5198,
1540,
1788,
1122,
367,
9701,
29889,
1346,
3112,
5480,
2444,
2174,
375,
1821,
393,
472,
3203,
760,
310,
278,
15477,
1546,
22884,
1319,
5302,
322,
9045,
1795,
367,
14457,
630,
491,
22884,
29899,
26679,
573,
6757,
3178,
13,
13,
2887,
2337,
29892,
278,
24230,
271,
338,
393,
727,
30010,
29879,
694,
10757,
310,
4556,
322,
2779,
29901,
450,
6559,
1838,
30010,
29873,
1346,
771,
345,
30024,
393,
1852,
26420,
411,
596,
805,
1709,
11981,
304,
385,
4688,
4892,
29889,
739,
1033,
29892,
17237,
1711,
29892,
367,
278,
916,
982,
4513,
785,
393,
2305,
1058,
526,
3109,
9045,
29891,
304,
3380,
411,
27754,
901,
29889,
1205,
445,
2444,
3109,
5517,
29889,
5853,
28326,
1821,
338,
278,
2969,
393,
278,
22884,
310,
1852,
26420,
1033,
367,
9024,
304,
5758,
2877,
1549,
278,
22884,
29914,
6727,
1540,
7208,
12903,
5276,
2038,
29889,
13,
13,
797,
738,
1206,
29892,
1584,
565,
366,
30010,
276,
544,
650,
304,
1852,
26420,
29892,
451,
599,
338,
5714,
29889,
29257,
304,
10933,
596,
27343,
29892,
7148,
746,
372,
5304,
304,
596,
3802,
21702,
29892,
338,
3117,
19396,
29889,
1346,
4074,
854,
292,
297,
28792,
29892,
10734,
363,
1906,
714,
310,
664,
29892,
1122,
1371,
304,
3151,
29890,
5188,
1535,
4892,
29879,
6942,
411,
5264,
9443,
22884,
943,
3995,
1497,
6559,
4148,
390,
638,
446,
27945,
29889,
1126,
1584,
565,
372,
1838,
30010,
29873,
10985,
596,
2834,
491,
1784,
2440,
29892,
767,
6751,
596,
23023,
1080,
508,
871,
1371,
596,
21702,
785,
322,
596,
805,
1709,
674,
11630,
11188,
263,
3109,
2980,
1230,
366,
29889,
13,
13,
6747,
3575,
461,
13,
13,
6747,
3575,
10088,
368,
13,
13,
2831,
5707,
23550,
505,
278,
11509,
304,
1246,
714,
4509,
6589,
896,
1284,
10734,
8031,
29889,
3037,
839,
29899,
449,
6589,
526,
12141,
287,
4822,
278,
1152,
5707,
3564,
29889,
887,
29915,
645,
367,
451,
2164,
565,
596,
3440,
338,
2000,
714,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
MOST POPULAR ARTICLES
Delays likely for key construction permit
State recommends filing notices soon
A key permit required for many construction projects could be delayed if developers planning to break ground soon don’t act quickly.
Forsyth County officials on Tuesday discussed the impact of the Georgia Environmental Protection Division’s recent announcement that new stormwater discharge permits likely will not be approved by the Aug. 31 deadline.
The effect across the state is that developers who don’t file a notice of intent for the EPD’s National Pollutant Discharge Elimination System, or NPDES, stormwater permit by July 31 won’t be able to get a land disturbance permit for construction, said Simon Wilkes, Forsyth County’s erosion and sedimentation senior inspector.
The permit allows construction sites larger than an acre to discharge into state waters, Wilkes said, and it’s a prerequisite for those developers seeking a land disturbance permit from Forsyth and other local issuers.
The state renews the permits every five years, he said, which was last done in 2008 without delay.
“However, this year we’ve been made aware that the new permits will probably not be approved by the Aug. 31 deadline,” Wilkes said. “They are not giving any guidance on when the new permit will be approved.
“Therefore, it will affect issuing authorities and the state to where you cannot issue land disturbance permits until the new permit is adopted.”
However, Wilkes said the state’s recommendation is that anyone planning land development within the next several months should file a notice of intent with the EPD “so that they can seek coverage under the existing permit and not be delayed.”
Previously issued permits set to expire July 31 will remain in effect until the new permits are approved, according to the EPD notice.
Deputy County Manager Tim Merritt said the process is simple, but developers, land owners, contractors and anyone else planning to “break ground soon” need to file that notice that they intend to comply with the existing permit requirements before July 31 or they will be delayed.
Merritt said that notice needs to be “return receipt requested so it’s documented.”
The county began notifying a list of contacts on file, including builders, developers, engineers and more, once the EPD sent preliminary notice of the permit delay on July 17, Wilkes said.
The official notice went out Monday, and commissioners and staff discussed the issue during a Tuesday work session.
Wilkes said the delay in the permit renewal stems from the stakeholders advisory board, which includes developers, engineers, environmental consultants and others.
“It’s them trying to figure out what they want adopted, what they do not want adopted in that natural process that occurs,” he said.
As Commissioner Jim Boff put it: “They’ve created their own statewide moratorium.” | [
1,
341,
3718,
349,
4590,
13309,
1718,
9033,
29911,
2965,
17101,
13,
13,
13157,
1036,
5517,
363,
1820,
7632,
14257,
13,
13,
2792,
5052,
1975,
977,
292,
451,
1575,
4720,
13,
13,
29909,
1820,
14257,
3734,
363,
1784,
7632,
9279,
1033,
367,
29801,
565,
18777,
18987,
304,
2867,
5962,
4720,
1016,
30010,
29873,
1044,
9098,
29889,
13,
13,
29943,
943,
1541,
5127,
24921,
373,
323,
1041,
3250,
15648,
278,
10879,
310,
278,
16762,
16738,
284,
14409,
428,
7946,
30010,
29879,
7786,
7475,
13561,
393,
716,
14280,
13405,
766,
23367,
3635,
1169,
5517,
674,
451,
367,
23454,
491,
278,
22333,
29889,
29871,
29941,
29896,
7123,
1220,
29889,
13,
13,
1576,
2779,
4822,
278,
2106,
338,
393,
18777,
1058,
1016,
30010,
29873,
934,
263,
8369,
310,
7609,
363,
278,
16502,
29928,
30010,
29879,
3086,
2043,
29880,
329,
424,
360,
783,
279,
479,
1260,
326,
3381,
2184,
29892,
470,
405,
29925,
2287,
29903,
29892,
14280,
13405,
14257,
491,
5468,
29871,
29941,
29896,
2113,
30010,
29873,
367,
2221,
304,
679,
263,
2982,
29543,
749,
14257,
363,
7632,
29892,
1497,
11254,
4624,
10794,
29892,
383,
943,
1541,
5127,
30010,
29879,
604,
359,
291,
322,
7048,
2073,
362,
16336,
16096,
272,
29889,
13,
13,
1576,
14257,
6511,
7632,
11840,
7200,
1135,
385,
263,
1037,
304,
766,
23367,
964,
2106,
19922,
29892,
4624,
10794,
1497,
29892,
322,
372,
30010,
29879,
263,
544,
406,
7680,
568,
363,
1906,
18777,
25738,
263,
2982,
29543,
749,
14257,
515,
383,
943,
1541,
322,
916,
1887,
17759,
414,
29889,
13,
13,
1576,
2106,
23011,
29879,
278,
3635,
1169,
1432,
5320,
2440,
29892,
540,
1497,
29892,
607,
471,
1833,
2309,
297,
29871,
29906,
29900,
29900,
29947,
1728,
9055,
29889,
13,
13,
30015,
17245,
29892,
445,
1629,
591,
30010,
345,
1063,
1754,
9543,
393,
278,
716,
3635,
1169,
674,
3117,
451,
367,
23454,
491,
278,
22333,
29889,
29871,
29941,
29896,
7123,
1220,
3995,
4624,
10794,
1497,
29889,
1346,
15597,
526,
451,
6820,
738,
27323,
373,
746,
278,
716,
14257,
674,
367,
23454,
29889,
13,
13,
30015,
8439,
1079,
29892,
372,
674,
6602,
17759,
292,
21142,
322,
278,
2106,
304,
988,
366,
2609,
2228,
2982,
29543,
749,
3635,
1169,
2745,
278,
716,
14257,
338,
16356,
3178,
13,
13,
17245,
29892,
4624,
10794,
1497,
278,
2106,
30010,
29879,
29303,
338,
393,
5019,
18987,
2982,
5849,
2629,
278,
2446,
3196,
7378,
881,
934,
263,
8369,
310,
7609,
411,
278,
16502,
29928,
1346,
578,
393,
896,
508,
16508,
23746,
1090,
278,
5923,
14257,
322,
451,
367,
29801,
3178,
13,
13,
6572,
16604,
16610,
3635,
1169,
731,
304,
1518,
533,
5468,
29871,
29941,
29896,
674,
3933,
297,
2779,
2745,
278,
716,
3635,
1169,
526,
23454,
29892,
5034,
304,
278,
16502,
29928,
8369,
29889,
13,
13,
2772,
649,
29891,
5127,
15629,
7870,
4702,
12123,
1497,
278,
1889,
338,
2560,
29892,
541,
18777,
29892,
2982,
1914,
414,
29892,
8078,
943,
322,
5019,
1683,
18987,
304,
1346,
8690,
5962,
4720,
30024,
817,
304,
934,
393,
8369,
393,
896,
24042,
304,
752,
368,
411,
278,
5923,
14257,
11780,
1434,
5468,
29871,
29941,
29896,
470,
896,
674,
367,
29801,
29889,
13,
13,
15836,
12123,
1497,
393,
8369,
4225,
304,
367,
1346,
2457,
2414,
21278,
13877,
577,
372,
30010,
29879,
23531,
3178,
13,
13,
1576,
15178,
4689,
451,
9215,
263,
1051,
310,
25957,
373,
934,
29892,
3704,
2048,
414,
29892,
18777,
29892,
6012,
414,
322,
901,
29892,
2748,
278,
16502,
29928,
2665,
758,
2576,
3821,
8369,
310,
278,
14257,
9055,
373,
5468,
29871,
29896,
29955,
29892,
4624,
10794,
1497,
29889,
13,
13,
1576,
6221,
8369,
3512,
714,
27822,
29892,
322,
12969,
414,
322,
13925,
15648,
278,
2228,
2645,
263,
323,
1041,
3250,
664,
4867,
29889,
13,
13,
29594,
10794,
1497,
278,
9055,
297,
278,
14257,
23011,
284,
380,
1567,
515,
278,
380,
1296,
8948,
414,
25228,
706,
7613,
29892,
607,
7805,
18777,
29892,
6012,
414,
29892,
29380,
8799,
1934,
322,
4045,
29889,
13,
13,
30015,
3112,
30010,
29879,
963,
1811,
304,
4377,
714,
825,
896,
864,
16356,
29892,
825,
896,
437,
451,
864,
16356,
297,
393,
5613,
1889,
393,
10008,
3995,
540,
1497,
29889,
13,
13,
2887,
11444,
261,
8507,
1952,
600,
1925,
372,
29901,
1346,
15597,
30010,
345,
2825,
1009,
1914,
2106,
8157,
3036,
1061,
1974,
3178
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Sports
Calls Grow For NFL To Settle Dispute With Refs
Well, as if NFL fans weren't ticked off enough about the replacement referees who are officiating this season's games, we bring you last night. The Seattle Seahawks beat the Green Bay Packers in the final seconds to win 14 to 12, at least that's how the refs on the field saw it. The outcome is prompting new calls for the NFL and its regular officials to settle this labor dispute that prompted the league to lock out their officials in June. Joining me to talk about last night is NPR sports correspondent Tom Goldman.
And, Tom, are you ticked off?
(LAUGHTER)
TOM GOLDMAN, BYLINE: I'm completely objective here, David.
GREENE: Yes, you are.
GOLDMAN: But let me just say...
GREENE: What happened? Tell me what happened in this game.
GOLDMAN: OK. Seattle trailing 12 to seven, rookie quarterback Russell Wilson throws a Hail Mary pass into the end zone as the game ends. And a group of players jumps for the ball. The player who jumped highest - Green Bay defensive back M.D. Jennings - appeared to make the catch over Seattle wide receiver Golden Tate.
So they crashed to the ground. And, again, to the naked eye it appears Jennings still has control. The ball's pinned to his chest. Two officials run up, and in a scene that captures the confusion of this whole three weeks of often shoddy officiating, one signals touchdown, the other waves his arms, signaling to stop the clock...
GREENE: Oh, God.
GOLDMAN: ...preparing to call a touchback.
And, you know, clearly it did not appear to be a simultaneous catch, which would've automatically meant a touchdown for the Seahawks. Anyway, there's a review of the play. The call on the field, touchdown, is upheld.
GREENE: But you had two officials standing there, you're saying, one calling touchdown, the other saying that the ball was intercepted?
GOLDMAN: Yep.
GREENE: That kind of captures the whole season, probably, in the views of a lot of NFL fans.
GOLDMAN: That's right.
GREENE: Why - I mean, this play was reviewed. Every scoring play in a game can be reviewed. I mean, how did the officials not see that the Packers, you know, intercepted the ball, which is what, you know, we thought we all saw?
GOLDMAN: See everything that we saw? Yeah. We've yet to hear anything. Not sure we will. The rules say there must be indisputable evidence to overturn a call. And if the review determines that it's too difficult to tell what the correct call would be, the original call stands, which is what happened. So they must've felt that, you know, too difficult to tell, even though millions thought it was not too difficult to tell.
GREENE: And the other thing a lot of people saw was that the Seattle receiver who was given credit for catching the touchdown pass pushed the Packers defender out of the way before catching the ball, which should've, in theory, been a penalty.
GOLDMAN: You mean shoved with two hands? Yeah. Golden Tate did that. Pass interference is not often called on those last-second Hail Mary plays into the end zone, which is probably why they let that go. Or maybe they just looked right at it and said, oh, I didn't see anything bad.
GREENE: There's been a lot of reaction to this already this morning.
GOLDMAN: Oh, absolutely. Dramatic. Here's some tape actually from last night's post-game show on ESPN with first analyst Steve Young, Hall of Fame quarterback, and followed by former Super Bowl-winning quarterback Trent Dilfer.
(SOUNDBITE OF POST-GAME SHOW)
STEVE YOUNG: You've got to be kidding me that I have to watch games turn one way or another on people that are not competently presented. The NFL's too good for this and it's too big for this, and it's hard to watch.
TRENT DILFER: And it's ironic, because we said it last week, for 10 years this commissioner's office has been coming into these NFL locker rooms saying we will do anything to protect the shield, anything. We're going to go - we're going to exhaust every opportunity to protect this brand.
YOUNG: Every one of us were all..
DILFER: It's ironic that you, the NFL, is what's screwing this brand up right now.
GREENE: People are worked up. So is this going to end the labor dispute? I mean, could this be the final straw?
GOLDMAN: You know, everyone is hyperventilating about this being the tipping point. But one very learned NFL insider, former Packers executive Andrew Brandt, doesn't think that'll happen. He says people have to remember that while they vilify Roger Goodell, the NFL commissioner, he works for the owners. And the owners are pretty hard-line on this labor situation. They say they've made a fair offer. Brandt doesn't think the owners will be leveraged into giving the officials what they want despite this game.
GREENE: All right. So the season goes on. Tom Goldman, thanks so much. | [
1,
12453,
13,
13,
29907,
4293,
402,
798,
1152,
25167,
1763,
317,
1803,
280,
3295,
649,
29872,
2973,
830,
5847,
13,
13,
11284,
29892,
408,
565,
25167,
24909,
2949,
264,
29915,
29873,
16892,
287,
1283,
3307,
1048,
278,
16920,
2143,
406,
267,
1058,
526,
29158,
1218,
445,
4259,
29915,
29879,
8090,
29892,
591,
6963,
366,
1833,
4646,
29889,
450,
27689,
922,
801,
1450,
2039,
16646,
278,
7646,
6211,
18744,
414,
297,
278,
2186,
6923,
304,
5401,
29871,
29896,
29946,
304,
29871,
29896,
29906,
29892,
472,
3203,
393,
29915,
29879,
920,
278,
2143,
29879,
373,
278,
1746,
4446,
372,
29889,
450,
21957,
338,
9508,
292,
716,
5717,
363,
278,
25167,
322,
967,
4943,
24921,
304,
3604,
280,
445,
10212,
28447,
393,
9508,
287,
278,
13225,
304,
7714,
714,
1009,
24921,
297,
5306,
29889,
3650,
2827,
592,
304,
5193,
1048,
1833,
4646,
338,
405,
10593,
14717,
3928,
296,
4335,
6650,
1171,
29889,
13,
13,
2855,
29892,
4335,
29892,
526,
366,
16892,
287,
1283,
29973,
13,
13,
29898,
4375,
23338,
3912,
1001,
29897,
13,
13,
4986,
29924,
402,
5607,
29928,
27616,
29892,
6770,
18521,
29901,
306,
29915,
29885,
6446,
12091,
1244,
29892,
4699,
29889,
13,
13,
29954,
1525,
1430,
29923,
29901,
3869,
29892,
366,
526,
29889,
13,
13,
29954,
5607,
29928,
27616,
29901,
1205,
1235,
592,
925,
1827,
856,
13,
13,
29954,
1525,
1430,
29923,
29901,
1724,
9559,
29973,
24948,
592,
825,
9559,
297,
445,
3748,
29889,
13,
13,
29954,
5607,
29928,
27616,
29901,
9280,
29889,
27689,
25053,
29871,
29896,
29906,
304,
9881,
29892,
696,
554,
347,
12616,
1627,
20679,
13015,
8026,
263,
379,
737,
6182,
1209,
964,
278,
1095,
10640,
408,
278,
3748,
10614,
29889,
1126,
263,
2318,
310,
10769,
432,
17204,
363,
278,
8287,
29889,
450,
4847,
1058,
12500,
287,
9939,
448,
7646,
6211,
822,
6270,
1250,
341,
29889,
29928,
29889,
23774,
886,
448,
7470,
304,
1207,
278,
4380,
975,
27689,
9377,
19870,
16108,
323,
403,
29889,
13,
13,
6295,
896,
8095,
287,
304,
278,
5962,
29889,
1126,
29892,
1449,
29892,
304,
278,
302,
12535,
10977,
372,
5692,
23774,
886,
1603,
756,
2761,
29889,
450,
8287,
29915,
29879,
282,
27464,
304,
670,
521,
342,
29889,
7803,
24921,
1065,
701,
29892,
322,
297,
263,
9088,
393,
4332,
1973,
278,
14679,
310,
445,
3353,
2211,
11405,
310,
4049,
528,
397,
4518,
29158,
1218,
29892,
697,
18470,
6023,
3204,
29892,
278,
916,
20037,
670,
10188,
29892,
7182,
292,
304,
5040,
278,
12006,
856,
13,
13,
29954,
1525,
1430,
29923,
29901,
6439,
29892,
4177,
29889,
13,
13,
29954,
5607,
29928,
27616,
29901,
2023,
1457,
862,
292,
304,
1246,
263,
6023,
1627,
29889,
13,
13,
2855,
29892,
366,
1073,
29892,
9436,
372,
1258,
451,
2615,
304,
367,
263,
16991,
681,
4380,
29892,
607,
723,
29915,
345,
6336,
6839,
263,
6023,
3204,
363,
278,
922,
801,
1450,
2039,
29889,
18110,
29892,
727,
29915,
29879,
263,
9076,
310,
278,
1708,
29889,
450,
1246,
373,
278,
1746,
29892,
6023,
3204,
29892,
338,
318,
561,
2495,
29889,
13,
13,
29954,
1525,
1430,
29923,
29901,
1205,
366,
750,
1023,
24921,
13407,
727,
29892,
366,
29915,
276,
5934,
29892,
697,
5432,
6023,
3204,
29892,
278,
916,
5934,
393,
278,
8287,
471,
23404,
287,
29973,
13,
13,
29954,
5607,
29928,
27616,
29901,
612,
1022,
29889,
13,
13,
29954,
1525,
1430,
29923,
29901,
2193,
2924,
310,
4332,
1973,
278,
3353,
4259,
29892,
3117,
29892,
297,
278,
8386,
310,
263,
3287,
310,
25167,
24909,
29889,
13,
13,
29954,
5607,
29928,
27616,
29901,
2193,
29915,
29879,
1492,
29889,
13,
13,
29954,
1525,
1430,
29923,
29901,
3750,
448,
306,
2099,
29892,
445,
1708,
471,
9076,
287,
29889,
7569,
26654,
1708,
297,
263,
3748,
508,
367,
9076,
287,
29889,
306,
2099,
29892,
920,
1258,
278,
24921,
451,
1074,
393,
278,
18744,
414,
29892,
366,
1073,
29892,
23404,
287,
278,
8287,
29892,
607,
338,
825,
29892,
366,
1073,
29892,
591,
2714,
591,
599,
4446,
29973,
13,
13,
29954,
5607,
29928,
27616,
29901,
2823,
4129,
393,
591,
4446,
29973,
15011,
29889,
1334,
29915,
345,
3447,
304,
8293,
3099,
29889,
2216,
1854,
591,
674,
29889,
450,
6865,
1827,
727,
1818,
367,
1399,
275,
649,
519,
10757,
304,
975,
685,
263,
1246,
29889,
1126,
565,
278,
9076,
3683,
1475,
393,
372,
29915,
29879,
2086,
5189,
304,
2649,
825,
278,
1959,
1246,
723,
367,
29892,
278,
2441,
1246,
15028,
29892,
607,
338,
825,
9559,
29889,
1105,
896,
1818,
29915,
345,
7091,
393,
29892,
366,
1073,
29892,
2086,
5189,
304,
2649,
29892,
1584,
2466,
14746,
2714,
372,
471,
451,
2086,
5189,
304,
2649,
29889,
13,
13,
29954,
1525,
1430,
29923,
29901,
1126,
278,
916,
2655,
263,
3287,
310,
2305,
4446,
471,
393,
278,
27689,
19870,
1058,
471,
2183,
16200,
363,
4380,
292,
278,
6023,
3204,
1209,
18760,
278,
18744,
414,
822,
1581,
714,
310,
278,
982,
1434,
4380,
292,
278,
8287,
29892,
607,
881,
29915,
345,
29892,
297,
6368,
29892,
1063,
263,
27368,
29889,
13,
13,
29954,
5607,
29928,
27616,
29901,
887,
2099,
528,
8238,
411,
1023,
6567,
29973,
15011,
29889,
16108,
323,
403,
1258,
393,
29889,
6978,
1006,
1659,
338,
451,
4049,
2000,
373,
1906,
1833,
29899,
7496,
379,
737,
6182,
13582,
964,
278,
1095,
10640,
29892,
607,
338,
3117,
2020,
896,
1235,
393,
748,
29889,
1394,
5505,
896,
925,
5148,
1492,
472,
372,
322,
1497,
29892,
9360,
29892,
306,
3282,
29915,
29873,
1074,
3099,
4319,
29889,
13,
13,
29954,
1525,
1430,
29923,
29901,
1670,
29915,
29879,
1063,
263,
3287,
310,
19848,
304,
445,
2307,
445,
7250,
29889,
13,
13,
29954,
5607,
29928,
27616,
29901,
6439,
29892,
13312,
29889,
360,
2572,
2454,
29889,
2266,
29915,
29879,
777,
260,
4085,
2869,
515,
1833,
4646,
29915,
29879,
1400,
29899,
11802,
1510,
373,
26480,
29940,
411,
937,
3483,
858,
13981,
10443,
29892,
6573,
310,
21808,
12616,
1627,
29892,
322,
5643,
491,
4642,
5670,
27207,
29899,
5080,
1076,
12616,
1627,
1605,
296,
360,
309,
571,
29889,
13,
13,
29898,
6156,
18783,
29933,
9094,
8079,
11971,
29899,
12739,
2303,
317,
8187,
29956,
29897,
13,
13,
1254,
29923,
12064,
612,
29949,
3904,
29954,
29901,
887,
29915,
345,
2355,
304,
367,
413,
2205,
292,
592,
393,
306,
505,
304,
6505,
8090,
2507,
697,
982,
470,
1790,
373,
2305,
393,
526,
451,
5100,
2705,
9132,
29889,
450,
25167,
29915,
29879,
2086,
1781,
363,
445,
322,
372,
29915,
29879,
2086,
4802,
363,
445,
29892,
322,
372,
29915,
29879,
2898,
304,
6505,
29889,
13,
13,
5659,
3919,
360,
6227,
29943,
1001,
29901,
1126,
372,
29915,
29879,
3805,
8927,
29892,
1363,
591,
1497,
372,
1833,
4723,
29892,
363,
29871,
29896,
29900,
2440,
445,
12969,
261,
29915,
29879,
8034,
756,
1063,
6421,
964,
1438,
25167,
658,
4937,
19600,
5934,
591,
674,
437,
3099,
304,
12566,
278,
28761,
29892,
3099,
29889,
1334,
29915,
276,
2675,
304,
748,
448,
591,
29915,
276,
2675,
304,
27096,
1432,
15130,
304,
12566,
445,
14982,
29889,
13,
13,
29979,
29949,
3904,
29954,
29901,
7569,
697,
310,
502,
892,
599,
636,
13,
13,
4571,
29931,
29943,
1001,
29901,
739,
29915,
29879,
3805,
8927,
393,
366,
29892,
278,
25167,
29892,
338,
825,
29915,
29879,
885,
3973,
292,
445,
14982,
701,
1492,
1286,
29889,
13,
13,
29954,
1525,
1430,
29923,
29901,
11647,
526,
3796,
701,
29889,
1105,
338,
445,
2675,
304,
1095,
278,
10212,
28447,
29973,
306,
2099,
29892,
1033,
445,
367,
278,
2186,
380,
1610,
29973,
13,
13,
29954,
5607,
29928,
27616,
29901,
887,
1073,
29892,
14332,
338,
11266,
794,
309,
1218,
1048,
445,
1641,
278,
260,
17347,
1298,
29889,
1205,
697,
1407,
10972,
25167,
1663,
1241,
29892,
4642,
18744,
414,
22760,
11571,
18007,
29873,
29892,
1838,
29915,
29873,
1348,
393,
29915,
645,
3799,
29889,
940,
4083,
2305,
505,
304,
6456,
393,
1550,
896,
11928,
1598,
14159,
7197,
514,
29892,
278,
25167,
12969,
261,
29892,
540,
1736,
363,
278,
1914,
414,
29889,
1126,
278,
1914,
414,
526,
5051,
2898,
29899,
1220,
373,
445,
10212,
6434,
29889,
2688,
1827,
896,
29915,
345,
1754,
263,
6534,
5957,
29889,
18007,
29873,
1838,
29915,
29873,
1348,
278,
1914,
414,
674,
367,
26610,
4063,
964,
6820,
278,
24921,
825,
896,
864,
15020,
445,
3748,
29889,
13,
13,
29954,
1525,
1430,
29923,
29901,
2178,
1492,
29889,
1105,
278,
4259,
5771,
373,
29889,
4335,
6650,
1171,
29892,
3969,
577,
1568,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
Mac Terminal command to geektools
I just got Geektools, and I'm trying to get a shell geeklet to display the command top -F -R -o cpu in the same way that it is displayed in the terminal. Through Google, I found this command to show a bundle of system information:
uptime | awk '{print "UPTIME : " $3 " " $4 " " $5 " " }'; top -l 1 | awk '/PhysMem/ {print "RAM : " $8 " "}' ; top -l 2 | awk '/CPU usage/; NR; 5 {printf "CPU" $6, $7=":", $8, $9="user ", $10, $11="sys ", $12, $13}'
This has way more CPU information than I want/need. I am hoping to replace the CPU information in the second command with the cleaner first one, but I don't know how to get it to display properly.
A:
Try ps aux. It displays a nice clean output sorted by cpu usage.
If you want something even less cluttered, try
ps aux | awk '{print $3 " " $11}';
To understand this command, just run ps aux, and look at the output. The variable $3 refers to the third column of the output. You can add or remove columns from GeekTool by adding or removing these variables from the command. The large amount of whitespace between the quotation marks just changes the spacing between the columns in the output.
If you want more options, check out the man page by typing man ps. (You can do this for top too.
If you're wondering why I didn't suggest a modification using top, it is due to the following issues:
The problem with GeekTool is that it requires output from a command that is static. top can be made to give a static output by using top -l 1, but because it is only making one sample, it can't get the cpu usage. (It needs at least two for that.) You will notice that if you run top -l 1, your cpu usage will be displayed as 0. To rectify that, you can use top -l 2. However this displays the system usage twice, and only the second set of data is correct. This probably wouldn't be helpful for GeekTool. If you still really want to use top, you can try out the following command: top -l 2 -o cpu -R -stats cpu,command. However, it will only display the incorrect data, because it prints that first.
| [
1,
660,
29901,
13,
13,
15735,
29175,
1899,
304,
1737,
1416,
8504,
13,
13,
29902,
925,
2355,
1879,
1416,
8504,
29892,
322,
306,
29915,
29885,
1811,
304,
679,
263,
6473,
1737,
1416,
1026,
304,
2479,
278,
1899,
2246,
448,
29943,
448,
29934,
448,
29877,
26403,
297,
278,
1021,
982,
393,
372,
338,
8833,
297,
278,
8638,
29889,
29871,
17044,
5087,
29892,
306,
1476,
445,
1899,
304,
1510,
263,
11846,
310,
1788,
2472,
29901,
13,
21245,
603,
891,
13689,
22372,
2158,
376,
4897,
15307,
584,
376,
395,
29941,
376,
376,
395,
29946,
376,
376,
395,
29945,
376,
376,
500,
2670,
2246,
448,
29880,
29871,
29896,
891,
13689,
8207,
25847,
11442,
29914,
426,
2158,
376,
25058,
584,
376,
395,
29947,
376,
376,
10162,
2056,
2246,
448,
29880,
29871,
29906,
891,
13689,
8207,
6271,
29965,
8744,
29914,
29936,
27759,
29936,
29871,
29945,
426,
8124,
376,
6271,
29965,
29908,
395,
29953,
29892,
395,
29955,
543,
29901,
613,
395,
29947,
29892,
395,
29929,
543,
1792,
9162,
395,
29896,
29900,
29892,
395,
29896,
29896,
543,
9675,
9162,
395,
29896,
29906,
29892,
395,
29896,
29941,
10162,
13,
4013,
756,
982,
901,
10808,
2472,
1135,
306,
864,
29914,
26180,
29889,
29871,
306,
626,
17231,
304,
5191,
278,
10808,
2472,
297,
278,
1473,
1899,
411,
278,
27372,
937,
697,
29892,
541,
306,
1016,
29915,
29873,
1073,
920,
304,
679,
372,
304,
2479,
6284,
29889,
13,
13,
29909,
29901,
13,
13,
15870,
6529,
3479,
29889,
739,
14423,
263,
7575,
5941,
1962,
12705,
491,
26403,
8744,
29889,
13,
3644,
366,
864,
1554,
1584,
3109,
1067,
6463,
287,
29892,
1018,
29871,
13,
567,
3479,
891,
13689,
22372,
2158,
395,
29941,
376,
539,
376,
395,
29896,
29896,
29913,
2670,
13,
13,
1762,
2274,
445,
1899,
29892,
925,
1065,
6529,
3479,
29892,
322,
1106,
472,
278,
1962,
29889,
450,
2286,
395,
29941,
14637,
304,
278,
4654,
1897,
310,
278,
1962,
29889,
887,
508,
788,
470,
3349,
4341,
515,
1879,
1416,
12229,
491,
4417,
470,
11077,
1438,
3651,
515,
278,
1899,
29889,
450,
2919,
5253,
310,
24358,
1546,
278,
13911,
362,
17997,
925,
3620,
278,
29250,
1546,
278,
4341,
297,
278,
1962,
29889,
13,
3644,
366,
864,
901,
3987,
29892,
1423,
714,
278,
767,
1813,
491,
19229,
767,
6529,
29889,
313,
3492,
508,
437,
445,
363,
2246,
2086,
29889,
13,
3644,
366,
29915,
276,
9873,
2020,
306,
3282,
29915,
29873,
4368,
263,
21733,
773,
2246,
29892,
372,
338,
2861,
304,
278,
1494,
5626,
29901,
13,
1576,
1108,
411,
1879,
1416,
12229,
338,
393,
372,
6858,
1962,
515,
263,
1899,
393,
338,
2294,
29889,
2246,
508,
367,
1754,
304,
2367,
263,
2294,
1962,
491,
773,
2246,
448,
29880,
29871,
29896,
29892,
541,
1363,
372,
338,
871,
3907,
697,
4559,
29892,
372,
508,
29915,
29873,
679,
278,
26403,
8744,
29889,
313,
3112,
4225,
472,
3203,
1023,
363,
393,
1846,
887,
674,
8369,
393,
565,
366,
1065,
2246,
448,
29880,
29871,
29896,
29892,
596,
26403,
8744,
674,
367,
8833,
408,
29871,
29900,
29889,
1763,
7705,
1598,
393,
29892,
366,
508,
671,
2246,
448,
29880,
29871,
29906,
29889,
2398,
445,
14423,
278,
1788,
8744,
8951,
29892,
322,
871,
278,
1473,
731,
310,
848,
338,
1959,
29889,
910,
3117,
7656,
29915,
29873,
367,
8444,
363,
1879,
1416,
12229,
29889,
960,
366,
1603,
2289,
864,
304,
671,
2246,
29892,
366,
508,
1018,
714,
278,
1494,
1899,
29901,
2246,
448,
29880,
29871,
29906,
448,
29877,
26403,
448,
29934,
448,
16202,
26403,
29892,
6519,
29889,
2398,
29892,
372,
674,
871,
2479,
278,
10240,
848,
29892,
1363,
372,
14677,
393,
937,
29889,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 /*2 * Copyright (c) 2004 World Wide Web Consortium,3 *4 * (Massachusetts Institute of Technology, European Research Consortium for5 * Informatics and Mathematics, Keio University). All Rights Reserved. This6 * work is distributed under the W3C(r) Software License [1] in the hope that7 * it will be useful, but WITHOUT ANY WARRANTY; without even the implied8 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.9 *10 * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-2002123111 */12 13 package org.w3c.dom;14 15 /**16 * <code>DocumentFragment</code> is a "lightweight" or "minimal" 17 * <code>Document</code> object. It is very common to want to be able to 18 * extract a portion of a document's tree or to create a new fragment of a 19 * document. Imagine implementing a user command like cut or rearranging a 20 * document by moving fragments around. It is desirable to have an object 21 * which can hold such fragments and it is quite natural to use a Node for 22 * this purpose. While it is true that a <code>Document</code> object could 23 * fulfill this role, a <code>Document</code> object can potentially be a 24 * heavyweight object, depending on the underlying implementation. What is 25 * really needed for this is a very lightweight object. 26 * <code>DocumentFragment</code> is such an object.27 * <p>Furthermore, various operations -- such as inserting nodes as children 28 * of another <code>Node</code> -- may take <code>DocumentFragment</code> 29 * objects as arguments; this results in all the child nodes of the 30 * <code>DocumentFragment</code> being moved to the child list of this node.31 * <p>The children of a <code>DocumentFragment</code> node are zero or more 32 * nodes representing the tops of any sub-trees defining the structure of 33 * the document. <code>DocumentFragment</code> nodes do not need to be 34 * well-formed XML documents (although they do need to follow the rules 35 * imposed upon well-formed XML parsed entities, which can have multiple top 36 * nodes). For example, a <code>DocumentFragment</code> might have only one 37 * child and that child node could be a <code>Text</code> node. Such a 38 * structure model represents neither an HTML document nor a well-formed XML 39 * document.40 * <p>When a <code>DocumentFragment</code> is inserted into a 41 * <code>Document</code> (or indeed any other <code>Node</code> that may 42 * take children) the children of the <code>DocumentFragment</code> and not 43 * the <code>DocumentFragment</code> itself are inserted into the 44 * <code>Node</code>. This makes the <code>DocumentFragment</code> very 45 * useful when the user wishes to create nodes that are siblings; the 46 * <code>DocumentFragment</code> acts as the parent of these nodes so that 47 * the user can use the standard methods from the <code>Node</code> 48 * interface, such as <code>Node.insertBefore</code> and 49 * <code>Node.appendChild</code>.50 * <p>See also the <a HREF='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.51 */52 publicinterface DocumentFragment extendsNode {53 }54 | [
1,
3575,
4714,
947,
451,
2304,
8286,
322,
445,
3268,
3667,
7093,
8286,
304,
2048,
2793,
322,
3867,
2988,
304,
5684,
2472,
29889,
887,
881,
2845,
9025,
8286,
297,
596,
4714,
6055,
470,
671,
263,
4714,
393,
11286,
8286,
297,
1797,
304,
2125,
2989,
10631,
310,
445,
3268,
29889,
13,
13,
29896,
4949,
29906,
334,
14187,
1266,
313,
29883,
29897,
29871,
29906,
29900,
29900,
29946,
2787,
399,
680,
2563,
2138,
441,
1974,
29892,
29941,
334,
29946,
334,
313,
29924,
465,
15404,
8907,
310,
17968,
29892,
7824,
10550,
2138,
441,
1974,
363,
29945,
334,
512,
4830,
1199,
322,
13486,
1199,
29892,
4813,
601,
3014,
467,
2178,
26863,
2538,
9841,
29889,
910,
29953,
334,
664,
338,
13235,
1090,
278,
399,
29941,
29907,
29898,
29878,
29897,
18540,
19245,
518,
29896,
29962,
297,
278,
4966,
393,
29955,
334,
372,
674,
367,
5407,
29892,
541,
399,
1806,
8187,
2692,
13764,
29979,
399,
1718,
29934,
13566,
29979,
29936,
1728,
1584,
278,
2411,
2957,
29947,
334,
1370,
21867,
29891,
310,
341,
1001,
3210,
13566,
2882,
6227,
11937,
470,
383,
1806,
8186,
1799,
15842,
319,
349,
8322,
2965,
13309,
1718,
349,
4574,
13152,
1660,
29889,
29929,
334,
29896,
29900,
334,
518,
29896,
29962,
1732,
597,
1636,
29889,
29893,
29941,
29889,
990,
29914,
13696,
441,
1974,
29914,
22988,
284,
29914,
29906,
29900,
29900,
29906,
29914,
8552,
1266,
29899,
20415,
29899,
29906,
29900,
29900,
29906,
29896,
29906,
29941,
29896,
29896,
29896,
3776,
29896,
29906,
29871,
29896,
29941,
3577,
1638,
29889,
29893,
29941,
29883,
29889,
3129,
29936,
29896,
29946,
29871,
29896,
29945,
7762,
29896,
29953,
334,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
338,
263,
376,
4366,
7915,
29908,
470,
376,
1195,
3039,
29908,
29871,
29896,
29955,
334,
529,
401,
29958,
6268,
829,
401,
29958,
1203,
29889,
739,
338,
1407,
3619,
304,
864,
304,
367,
2221,
304,
29871,
29896,
29947,
334,
6597,
263,
11910,
310,
263,
1842,
29915,
29879,
5447,
470,
304,
1653,
263,
716,
9376,
310,
263,
29871,
29896,
29929,
334,
1842,
29889,
1954,
22094,
16049,
263,
1404,
1899,
763,
5700,
470,
337,
2749,
9776,
263,
29871,
29906,
29900,
334,
1842,
491,
8401,
22370,
2820,
29889,
739,
338,
553,
27797,
304,
505,
385,
1203,
29871,
29906,
29896,
334,
607,
508,
4808,
1316,
22370,
322,
372,
338,
3755,
5613,
304,
671,
263,
9071,
363,
29871,
29906,
29906,
334,
445,
6437,
29889,
5806,
372,
338,
1565,
393,
263,
529,
401,
29958,
6268,
829,
401,
29958,
1203,
1033,
29871,
29906,
29941,
334,
6095,
5589,
445,
6297,
29892,
263,
529,
401,
29958,
6268,
829,
401,
29958,
1203,
508,
19998,
367,
263,
29871,
29906,
29946,
334,
9416,
7915,
1203,
29892,
8679,
373,
278,
14407,
5314,
29889,
1724,
338,
29871,
29906,
29945,
334,
2289,
4312,
363,
445,
338,
263,
1407,
3578,
7915,
1203,
29889,
29871,
29906,
29953,
334,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
338,
1316,
385,
1203,
29889,
29906,
29955,
334,
529,
29886,
29958,
29943,
332,
721,
5514,
29892,
5164,
6931,
1192,
1316,
408,
23800,
7573,
408,
4344,
29871,
29906,
29947,
334,
310,
1790,
529,
401,
29958,
4247,
829,
401,
29958,
1192,
1122,
2125,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
29871,
29906,
29929,
334,
3618,
408,
6273,
29936,
445,
2582,
297,
599,
278,
2278,
7573,
310,
278,
29871,
29941,
29900,
334,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
1641,
6153,
304,
278,
2278,
1051,
310,
445,
2943,
29889,
29941,
29896,
334,
529,
29886,
29958,
1576,
4344,
310,
263,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
2943,
526,
5225,
470,
901,
29871,
29941,
29906,
334,
7573,
15783,
278,
304,
567,
310,
738,
1014,
29899,
28737,
16184,
278,
3829,
310,
29871,
29941,
29941,
334,
278,
1842,
29889,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
7573,
437,
451,
817,
304,
367,
29871,
29941,
29946,
334,
1532,
29899,
15628,
6560,
10701,
313,
26492,
896,
437,
817,
304,
1101,
278,
6865,
29871,
29941,
29945,
334,
527,
4752,
2501,
1532,
29899,
15628,
6560,
21213,
16212,
29892,
607,
508,
505,
2999,
2246,
29871,
29941,
29953,
334,
7573,
467,
1152,
1342,
29892,
263,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
1795,
505,
871,
697,
29871,
29941,
29955,
334,
2278,
322,
393,
2278,
2943,
1033,
367,
263,
529,
401,
29958,
1626,
829,
401,
29958,
2943,
29889,
10506,
263,
29871,
29941,
29947,
334,
3829,
1904,
11524,
9561,
385,
4544,
1842,
3643,
263,
1532,
29899,
15628,
6560,
29871,
29941,
29929,
334,
1842,
29889,
29946,
29900,
334,
529,
29886,
29958,
10401,
263,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
338,
15478,
964,
263,
29871,
29946,
29896,
334,
529,
401,
29958,
6268,
829,
401,
29958,
313,
272,
6200,
738,
916,
529,
401,
29958,
4247,
829,
401,
29958,
393,
1122,
29871,
29946,
29906,
334,
2125,
4344,
29897,
278,
4344,
310,
278,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
322,
451,
29871,
29946,
29941,
334,
278,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
3528,
526,
15478,
964,
278,
29871,
29946,
29946,
334,
529,
401,
29958,
4247,
829,
401,
15513,
910,
3732,
278,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
1407,
29871,
29946,
29945,
334,
5407,
746,
278,
1404,
28688,
304,
1653,
7573,
393,
526,
27767,
18964,
29936,
278,
29871,
29946,
29953,
334,
529,
401,
29958,
6268,
8752,
829,
401,
29958,
14741,
408,
278,
3847,
310,
1438,
7573,
577,
393,
29871,
29946,
29955,
334,
278,
1404,
508,
671,
278,
3918,
3519,
515,
278,
529,
401,
29958,
4247,
829,
401,
29958,
29871,
29946,
29947,
334,
5067,
29892,
1316,
408,
529,
401,
29958,
4247,
29889,
7851,
18743,
829,
401,
29958,
322,
29871,
29946,
29929,
334,
529,
401,
29958,
4247,
29889,
23850,
829,
401,
15513,
29945,
29900,
334,
529,
29886,
29958,
13393,
884,
278,
529,
29874,
379,
25866,
2433,
1124,
597,
1636,
29889,
29893,
29941,
29889,
990,
29914,
5659,
29914,
29906,
29900,
29900,
29946,
29914,
1525,
29907,
29899,
22141,
29899,
10108,
29899,
29941,
29899,
9203,
29899,
29906,
29900,
29900,
29946,
29900,
29946,
29900,
29955,
11041,
6268,
4669,
8125,
313,
22141,
29897,
21597,
29871,
29941,
10239,
12048,
2450,
829,
29874,
15513,
29945,
29896,
3776,
29945,
29906,
970,
13248,
10854,
8752,
4988,
4247,
426,
29945,
29941,
500,
29945,
29946
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
October 4, 1957
Share This Post
It was a Cold War propaganda machine, launched for reasons of pride, territoriality, greed, and a passel of other human failings, but it also separated all of history into Pre Space Age and Post Space Age.
No one thought the Soviet Union could do it, but on October 4, 1957 at 19:28:34 UT, they launched Sputnik, the very first artificial satellite into Earth orbit. The shock of this -- Red Star in Orbit! -- motivated the Space Race, and in just 12 years put men on the Moon.
Don't forget astronomy! Oh no, don't you dare forget that: Hubble, Chandra, Spitzer, SOHO, Swift, Uhuru, Einstein, COBE, WMAP... these all revolutionized our understanding of the Universe, in more ways than can be easily recounted, and they're all satellites.
I am still amazed that most folks don't know that they can easily see satellites on any clear night. Got to Heavens Above. Enter your coordinates. Then find out when the ISS passes overhead, or a rocket booster, or Hubble. Please, go look for Iridium satellites! They'll rock your world.
In the mean time, read up on the little
basketball beachball-sized doohickey that changed the world, and humanity, forever. | [
1,
5533,
29871,
29946,
29892,
29871,
29896,
29929,
29945,
29955,
13,
13,
2713,
598,
910,
4918,
13,
13,
3112,
471,
263,
26731,
3362,
13089,
5863,
4933,
29892,
15241,
363,
9590,
310,
24967,
29892,
29740,
537,
29892,
1395,
287,
29892,
322,
263,
1209,
295,
310,
916,
5199,
4418,
886,
29892,
541,
372,
884,
13055,
599,
310,
4955,
964,
4721,
14121,
16767,
322,
4918,
14121,
16767,
29889,
13,
13,
3782,
697,
2714,
278,
15308,
7761,
1033,
437,
372,
29892,
541,
373,
5533,
29871,
29946,
29892,
29871,
29896,
29929,
29945,
29955,
472,
29871,
29896,
29929,
29901,
29906,
29947,
29901,
29941,
29946,
501,
29911,
29892,
896,
15241,
317,
649,
5585,
29892,
278,
1407,
937,
23116,
28421,
964,
11563,
16980,
29889,
450,
19253,
310,
445,
1192,
4367,
7828,
297,
1394,
2966,
29991,
1192,
17385,
630,
278,
14121,
23613,
29892,
322,
297,
925,
29871,
29896,
29906,
2440,
1925,
1757,
373,
278,
17549,
29889,
13,
13,
10310,
29915,
29873,
9566,
20932,
29891,
29991,
6439,
694,
29892,
1016,
29915,
29873,
366,
23222,
9566,
393,
29901,
14533,
569,
29892,
678,
10738,
29892,
1706,
13510,
29892,
7791,
8187,
29892,
14156,
29892,
501,
29882,
20144,
29892,
2694,
5465,
29892,
4810,
15349,
29892,
399,
23827,
856,
1438,
599,
19479,
1891,
1749,
8004,
310,
278,
853,
12193,
29892,
297,
901,
5837,
1135,
508,
367,
5948,
1162,
792,
287,
29892,
322,
896,
29915,
276,
599,
3290,
514,
3246,
29889,
13,
13,
29902,
626,
1603,
21863,
287,
393,
1556,
900,
2039,
1016,
29915,
29873,
1073,
393,
896,
508,
5948,
1074,
3290,
514,
3246,
373,
738,
2821,
4646,
29889,
15992,
304,
940,
485,
575,
319,
29205,
29889,
9041,
596,
10350,
29889,
1987,
1284,
714,
746,
278,
306,
1799,
14517,
18702,
29892,
470,
263,
696,
3522,
14505,
261,
29892,
470,
14533,
569,
29889,
3529,
29892,
748,
1106,
363,
306,
2429,
1974,
3290,
514,
3246,
29991,
2688,
29915,
645,
7679,
596,
3186,
29889,
13,
13,
797,
278,
2099,
931,
29892,
1303,
701,
373,
278,
2217,
13,
13,
29890,
11852,
25695,
2135,
29899,
29879,
1891,
437,
1148,
293,
1989,
393,
3939,
278,
3186,
29892,
322,
5199,
537,
29892,
22296,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
PATSY BRUMFIELD: Fingers crossed on mascot
Ten months until Christmas, calendar watchers.
Perhaps the holiday came early on the University of Mississippi campus this week when students voted to be part of a process to come up with a new athletics mascot.
As some of you remember, Colonel Reb was fired about seven years ago as an image not befitting a 21st Century public institution.
A great uproar ensued, but the decision stuck. Colonel Reb wannabes showed up for various events, much to the displeasure of officialdom, and the issue became the cause celebre of fans who remember the “national championship” of 1960s. Others, too.
Some also may remember the awful campaign soon after the Colonel’s banishment when the university launched a “contest” to select a new mascot. The finalist designs looked like Hulk Hogan on steroids (is that redundant?) or the Southern Cal Trojan warrior.
It was supposed to be a much-anticipated Internet-voting contest, but when it came down to it, so few people gave a rip for the choices that the push was called off. And the campaign advisers, the P.R. geniuses, were called upon the carpet.
And so, they let the mascot thing drift while competitors laughed about it. How ridiculous, they said, that the Ole Miss folks can’t even find a mascot.
But hey, finding “the right” mascot isn’t easy, under the circumstances. With Tuesday’s vote by some 3,000 on campus, students agree they want to be part of the solution.
Bless their hearts, I hope this turns out better than when a campus organization was given charge of a contest to decide what design would be selected for a civil rights monument. In the end, The Lyceum cast out the winner for what it wanted, and although The Lyceum had good reasons for the move – reasons like engineering problems and safety – the contest participants left feeling like a homecoming date who never gets called again.
So, now the big question becomes: What will the mascot be?
Perhaps it will harken back to the team’s name before it became The Rebels not so many decades ago. Mississippi Flood.
Glad I wouldn’t be called upon to make that costume.
Okra’s out. Big Red Thing is out. James Meredith look-alike is out.
But lots of ideas remain: a kudzu vine could strangle opponents, a mighty oak like in The Grove could look powerful. And there’s Archie Manning, who might be available to stand along the sidelines for a substantial stipend.
Have you got any suggestions? Let me know and I’ll start your campaign for you.
In these times of true crisis, we all need a diversion.
Contact Patsy R. Brumfield at (662) 678-1596 or [email protected]. Read mascot suggestions, when they come in, on Patsy’s blog, From the Front Row, on NEMS360.com. | [
1,
349,
1299,
14816,
25185,
5005,
3738,
27286,
29901,
383,
19936,
21692,
373,
5516,
26235,
13,
13,
29911,
264,
7378,
2745,
17661,
29892,
17684,
6505,
414,
29889,
13,
5894,
4252,
278,
8753,
22394,
2996,
4688,
373,
278,
3014,
310,
24743,
24165,
445,
4723,
746,
8041,
24854,
304,
367,
760,
310,
263,
1889,
304,
2041,
701,
411,
263,
716,
28563,
1199,
5516,
26235,
29889,
13,
2887,
777,
310,
366,
6456,
29892,
16893,
12936,
471,
17285,
1048,
9881,
2440,
8020,
408,
385,
1967,
451,
15823,
5367,
263,
29871,
29906,
29896,
303,
24027,
970,
12666,
29889,
13,
29909,
2107,
701,
307,
279,
427,
2146,
287,
29892,
541,
278,
10608,
10771,
29889,
16893,
12936,
281,
812,
370,
267,
10018,
701,
363,
5164,
4959,
29892,
1568,
304,
278,
766,
552,
3745,
310,
6221,
3129,
29892,
322,
278,
2228,
3897,
278,
4556,
7793,
1030,
310,
24909,
1058,
6456,
278,
1346,
29876,
1288,
22401,
30024,
310,
29871,
29896,
29929,
29953,
29900,
29879,
29889,
438,
3341,
29892,
2086,
29889,
13,
9526,
884,
1122,
6456,
278,
28893,
11531,
4720,
1156,
278,
16893,
30010,
29879,
9892,
18310,
746,
278,
16372,
15241,
263,
1346,
1285,
342,
30024,
304,
1831,
263,
716,
5516,
26235,
29889,
450,
2186,
391,
25517,
5148,
763,
379,
24456,
27675,
273,
373,
16864,
3398,
29879,
313,
275,
393,
28005,
7897,
470,
278,
14234,
3037,
8316,
8931,
1370,
13479,
29889,
13,
3112,
471,
7424,
304,
367,
263,
1568,
29899,
7716,
666,
630,
4685,
29899,
29894,
11427,
17793,
29892,
541,
746,
372,
2996,
1623,
304,
372,
29892,
577,
2846,
2305,
4846,
263,
18290,
363,
278,
19995,
393,
278,
5503,
471,
2000,
1283,
29889,
1126,
278,
11531,
25228,
414,
29892,
278,
349,
29889,
29934,
29889,
26858,
267,
29892,
892,
2000,
2501,
278,
1559,
10963,
29889,
13,
2855,
577,
29892,
896,
1235,
278,
5516,
26235,
2655,
4192,
2027,
1550,
5100,
17259,
19090,
1048,
372,
29889,
1128,
8177,
12906,
681,
29892,
896,
1497,
29892,
393,
278,
26132,
4750,
900,
2039,
508,
30010,
29873,
1584,
1284,
263,
5516,
26235,
29889,
13,
6246,
540,
29891,
29892,
9138,
1346,
1552,
1492,
30024,
5516,
26235,
3508,
30010,
29873,
4780,
29892,
1090,
278,
14209,
29889,
2973,
323,
1041,
3250,
30010,
29879,
11719,
491,
777,
29871,
29941,
29892,
29900,
29900,
29900,
373,
24165,
29892,
8041,
8661,
896,
864,
304,
367,
760,
310,
278,
1650,
29889,
13,
29933,
2222,
1009,
26490,
29892,
306,
4966,
445,
12169,
714,
2253,
1135,
746,
263,
24165,
13013,
471,
2183,
8323,
310,
263,
17793,
304,
11097,
825,
2874,
723,
367,
4629,
363,
263,
7631,
10462,
13849,
29889,
512,
278,
1095,
29892,
450,
8626,
346,
398,
4320,
714,
278,
19576,
363,
825,
372,
5131,
29892,
322,
5998,
450,
8626,
346,
398,
750,
1781,
9590,
363,
278,
4337,
785,
9590,
763,
21639,
4828,
322,
15332,
785,
278,
17793,
27138,
2175,
11223,
763,
263,
3271,
11506,
2635,
1058,
2360,
4947,
2000,
1449,
29889,
13,
6295,
29892,
1286,
278,
4802,
1139,
7415,
29901,
1724,
674,
278,
5516,
26235,
367,
29973,
13,
5894,
4252,
372,
674,
298,
935,
264,
1250,
304,
278,
3815,
30010,
29879,
1024,
1434,
372,
3897,
450,
12936,
1379,
451,
577,
1784,
1602,
3076,
8020,
29889,
24743,
26043,
397,
29889,
13,
29954,
4528,
306,
7656,
30010,
29873,
367,
2000,
2501,
304,
1207,
393,
3438,
2017,
29889,
13,
20434,
336,
30010,
29879,
714,
29889,
7997,
4367,
498,
292,
338,
714,
29889,
5011,
4702,
287,
389,
1106,
29899,
2606,
446,
338,
714,
29889,
13,
6246,
14568,
310,
7014,
3933,
29901,
263,
413,
566,
6951,
325,
457,
1033,
851,
2521,
23995,
1237,
29892,
263,
27977,
288,
557,
763,
297,
450,
6070,
345,
1033,
1106,
13988,
29889,
1126,
727,
30010,
29879,
2595,
347,
7908,
292,
29892,
1058,
1795,
367,
3625,
304,
2317,
3412,
278,
269,
10652,
1475,
363,
263,
23228,
380,
666,
355,
29889,
13,
25559,
366,
2355,
738,
10529,
29973,
2803,
592,
1073,
322,
306,
30010,
645,
1369,
596,
11531,
363,
366,
29889,
13,
797,
1438,
3064,
310,
1565,
24161,
29892,
591,
599,
817,
263,
652,
3259,
29889,
13,
13,
13443,
349,
1446,
29891,
390,
29889,
1771,
398,
2671,
472,
313,
29953,
29953,
29906,
29897,
29871,
29953,
29955,
29947,
29899,
29896,
29945,
29929,
29953,
470,
282,
1446,
29891,
29889,
1182,
398,
2671,
29992,
19776,
4659,
29889,
510,
29889,
7523,
5516,
26235,
10529,
29892,
746,
896,
2041,
297,
29892,
373,
349,
1446,
29891,
30010,
29879,
12618,
29892,
3645,
278,
13960,
11438,
29892,
373,
14693,
4345,
29941,
29953,
29900,
29889,
510,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
hmmm..how do u know this??
Are you from waterloo?
I know this guy, he graduated from a famous university of china.
Now he should be in the states.
All guys here from that university want to go to the states.
There were two Chinese students both of whom applied UBC with modified
transcripts and both were offered admission. One finally cancelled
application
because he/she(? don't know) applied immigration at the same time. BUT, when
he/she attended interview in HK, he/she was asked if he/she had applied UBC
--- the UBC
sent letter to his/her former university for verifying the documents even
after his/her
cancellation, and when got to know his/her cheating UBC noticed Immigration
office about
it. Of course, his/her application for immigrate was rejected finally due to
this point. Hence,
UBC verifed another one's transcriptes then, and when got the same response
UBC expeled
him/her right away after his/her few monthes studying there.
So............. it's really hard to make decision. If you still want to go on
taking the risk, maybe the best way is to contact former school
and see if there's any helpful thing can be done.
A stupid question: how could you make a fake transcript?
Don't you get all your transcripts stamped by the university?
Or the university 'faked' for you and in a few months say
"No, it is not from us.."? Is it possible?
【 在 doom (buzz--嗡嗡) 的大作中提到: 】
: Really lucky enough not do it before, although i once supposed to to
: so, my dad strongly disagreed with me, so i happened to be an honest
: boy!
: 【 在 jqka (jqka) 的大作中提到: 】
: : Tell you a fact. My univ. will investigate all your relavent materials
: : several
: : months before you graduate.
【 在 Napoleon (soso) 的大作中提到: 】
: A stupid question: how could you make a fake transcript?
: Don't you get all your transcripts stamped by the university?
: Or the university 'faked' for you and in a few months say
: "No, it is not from us.."? Is it possible?
94a94a
who can tell me?
--
※ 来源:.The unknown SPACE bbs.mit.edu.[FROM: 202.99.]
更多精彩文章及讨论,请光临枫下论坛. 网址: rolia.net/zh
(#4729@0)
2000-7-31 -04:00This post has been archived. It cannot be replied. | [
1,
298,
4317,
29885,
636,
3525,
437,
318,
1073,
445,
8773,
13,
17506,
366,
515,
4094,
417,
29877,
29973,
13,
29902,
1073,
445,
1410,
29891,
29892,
540,
23588,
515,
263,
13834,
16372,
310,
521,
1099,
29889,
13,
10454,
540,
881,
367,
297,
278,
5922,
29889,
13,
3596,
18239,
1244,
515,
393,
16372,
864,
304,
748,
304,
278,
5922,
29889,
13,
13,
8439,
892,
1023,
10013,
8041,
1716,
310,
6029,
7436,
501,
5371,
411,
9120,
13,
3286,
924,
29879,
322,
1716,
892,
12520,
594,
6737,
29889,
3118,
7146,
12611,
839,
13,
6214,
13,
18103,
540,
29914,
11360,
10780,
1016,
29915,
29873,
1073,
29897,
7436,
5198,
16783,
472,
278,
1021,
931,
29889,
350,
2692,
29892,
746,
13,
13,
354,
29914,
11360,
14283,
15593,
297,
379,
29968,
29892,
540,
29914,
11360,
471,
4433,
565,
540,
29914,
11360,
750,
7436,
501,
5371,
13,
5634,
278,
501,
5371,
13,
18616,
5497,
304,
670,
29914,
2276,
4642,
16372,
363,
1147,
9215,
278,
10701,
1584,
13,
7045,
670,
29914,
2276,
13,
3068,
22603,
29892,
322,
746,
2355,
304,
1073,
670,
29914,
2276,
923,
1218,
501,
5371,
10548,
1954,
29885,
16783,
13,
20205,
1048,
13,
277,
29889,
4587,
3236,
29892,
670,
29914,
2276,
2280,
363,
5198,
4481,
403,
471,
22225,
7146,
2861,
304,
13,
1366,
1298,
29889,
10133,
29892,
13,
29965,
5371,
1147,
361,
287,
1790,
697,
29915,
29879,
1301,
924,
267,
769,
29892,
322,
746,
2355,
278,
1021,
2933,
13,
29965,
5371,
429,
412,
839,
13,
26994,
29914,
2276,
1492,
3448,
1156,
670,
29914,
2276,
2846,
4098,
267,
23382,
727,
29889,
13,
13,
6295,
11296,
18598,
372,
29915,
29879,
2289,
2898,
304,
1207,
10608,
29889,
960,
366,
1603,
864,
304,
748,
373,
13,
29873,
5086,
278,
12045,
29892,
5505,
278,
1900,
982,
338,
304,
6958,
4642,
3762,
13,
392,
1074,
565,
727,
29915,
29879,
738,
8444,
2655,
508,
367,
2309,
29889,
13,
13,
29909,
20239,
1139,
29901,
920,
1033,
366,
1207,
263,
25713,
1301,
924,
29973,
13,
10310,
29915,
29873,
366,
679,
599,
596,
1301,
924,
29879,
25214,
287,
491,
278,
16372,
29973,
13,
2816,
278,
16372,
525,
29888,
12535,
29915,
363,
366,
322,
297,
263,
2846,
7378,
1827,
13,
29908,
3782,
29892,
372,
338,
451,
515,
502,
636,
8652,
1317,
372,
1950,
29973,
13,
13,
31478,
29871,
30505,
437,
290,
313,
2423,
5617,
489,
232,
154,
164,
232,
154,
164,
29897,
29871,
30210,
30257,
30732,
30275,
31302,
30780,
29901,
29871,
31472,
13,
29901,
830,
635,
9885,
29891,
3307,
451,
437,
372,
1434,
29892,
5998,
474,
2748,
7424,
304,
304,
13,
29901,
577,
29892,
590,
270,
328,
13818,
22941,
276,
287,
411,
592,
29892,
577,
474,
9559,
304,
367,
385,
15993,
13,
29901,
8023,
29991,
13,
29901,
29871,
31478,
29871,
30505,
432,
29939,
1335,
313,
28695,
1335,
29897,
29871,
30210,
30257,
30732,
30275,
31302,
30780,
29901,
29871,
31472,
13,
29901,
584,
24948,
366,
263,
2114,
29889,
1619,
443,
440,
29889,
674,
23033,
599,
596,
10208,
794,
17279,
13,
29901,
584,
3196,
13,
29901,
584,
7378,
1434,
366,
10591,
403,
29889,
13,
13,
31478,
29871,
30505,
24265,
313,
29879,
9064,
29897,
29871,
30210,
30257,
30732,
30275,
31302,
30780,
29901,
29871,
31472,
13,
29901,
319,
20239,
1139,
29901,
920,
1033,
366,
1207,
263,
25713,
1301,
924,
29973,
13,
29901,
3872,
29915,
29873,
366,
679,
599,
596,
1301,
924,
29879,
25214,
287,
491,
278,
16372,
29973,
13,
29901,
1394,
278,
16372,
525,
29888,
12535,
29915,
363,
366,
322,
297,
263,
2846,
7378,
1827,
13,
29901,
376,
3782,
29892,
372,
338,
451,
515,
502,
636,
8652,
1317,
372,
1950,
29973,
13,
13,
29929,
29946,
29874,
29929,
29946,
29874,
13,
15970,
508,
2649,
592,
29973,
13,
13,
489,
13,
229,
131,
190,
29871,
30805,
31193,
29901,
242,
191,
145,
1576,
9815,
10937,
11538,
289,
5824,
29889,
2415,
29889,
6085,
242,
191,
145,
29961,
21482,
29901,
29871,
29906,
29900,
29906,
29889,
29929,
29929,
5586,
13,
13,
31100,
30923,
234,
181,
193,
232,
192,
172,
30333,
31374,
31436,
235,
177,
171,
235,
177,
189,
30214,
31088,
30867,
231,
187,
183,
233,
161,
174,
30557,
235,
177,
189,
232,
160,
158,
29889,
29871,
31222,
31702,
29901,
696,
4456,
29889,
1212,
29914,
17599,
13,
13,
29898,
29937,
29946,
29955,
29906,
29929,
29992,
29900,
29897,
13,
29906,
29900,
29900,
29900,
29899,
29955,
29899,
29941,
29896,
448,
29900,
29946,
29901,
29900,
29900,
4013,
1400,
756,
1063,
3190,
2347,
29889,
739,
2609,
367,
10352,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Filed 11/14/18
CERTIFIED FOR PUBLICATION
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELLATE DISTRICT
DIVISION FOUR
KOHLER CO., No. B288935
Petitioner, (Super. Ct. No. BC588369)
(John Shepard Wiley, Jr., Judge)
v.
THE SUPERIOR COURT OF
LOS ANGELES COUNTY,
Respondent;
JOANNA PARK-KIM et al.,
Real Parties in Interest.
ORIGINAL PROCEEDING; petition for writ of mandate. Petition
granted; writ issued.
Arnold & Porter Kaye Scholer, Eric Shapland, Ryan W. Light and John
C. Ulin for Petitioner.
Newmeyer & Dillion, Alan H. Packer, Jeffrey R. Brower and Joseph A.
Ferrentino for California Building Industry Association as Amicus Curiae on
behalf of Petitioner.
No appearance for Respondent.
Kasdan LippSmith Weber Turner, Kenneth S. Kasdan, Jaclyn L.
Anderson and Graham B. LippSmith for Real Parties in Interest.
In 2000, the California Supreme Court ruled in Aas v. Superior
Court (2000) 24 Cal.4th 627 (Aas) that a homeowner could not recover
on a negligence claim for construction defects unless the homeowner
could show actual property damage or personal injury (as opposed to
purely economic loss, such as diminution in value of the home or the
cost to repair the defects). After Aas was decided, representatives from
the building industries, insurance companies, and homeowners came
together with members of the Legislature to devise a comprehensive
statutory scheme to govern construction defect litigation. That
statutory scheme, commonly known as the Right to Repair Act (the Act)
was enacted in 2002. (Stats. 2002, ch. 722, principally codified at Civ.
Code,1 §§ 895-945.5.) As recently explained by the Supreme Court,
“[t]he Act sets forth detailed statewide standards that the components
of a dwelling must satisfy. It also establishes a prelitigation dispute
resolution process that affords builders notice of alleged construction
defects and the opportunity to cure such defects, while granting
homeowners the right to sue for deficiencies even in the absence of
property damage or personal injury.” (McMillin Albany LLC v.
Superior Court (2018) 4 Cal.5th 241, 247 (McMillin).)
In the present case, we are asked to determine whether
homeowners may bring a class action asserting a claim under the Act
against the manufacturer of an allegedly defective plumbing fixture
used in the construction of class members’ homes. Based on our
examination of the structure and language of the Act, as well as the
1 Further undesignated statutory references are to the Civil Code.
2
legislative history, we conclude that class actions are not allowed under
the Act except in one limited context: to assert claims that address
solely the incorporation into a residence of a defective component,
unless that component is a product that is completely manufactured
offsite.
Because the claim in this case involves allegedly defective
products that were completely manufactured offsite, we hold that the
claim alleged under the Act cannot be litigated as a class action.
Accordingly, we grant the writ petition filed by defendant Kohler Co.
(Kohler), and issue a writ of mandate directing the trial court to vacate
its order to the extent it denied in part Kohler’s anti-class certification
motion and to enter a new order granting the motion in its entirety.
BACKGROUND
Plaintiffs Joanna Park-Kim and Maria Cecilia Ramos are each
owners of a residential condominium dwelling in which “Rite-Temp
Pressure Balancing Valves” and “Mixer Caps” (which are contained in
“Rite-Temp Valve assemblies”) manufactured by Kohler were installed
during construction. In the third amended complaint, plaintiffs allege
that these valves and mixer caps, which are designed to regulate water
flow and temperature in household plumbing, do not operate as
intended due to their defective design and manufacturing, and “are
corroding, failing, and/or will inevitably fail,” which has caused or will
cause damage to other components of the household plumbing lines or
fixtures.
3
Plaintiffs brought the instant lawsuit on behalf of themselves and
all owners of residential dwellings in California in which these valves
and mixer caps were installed during original construction, alleging a
claim for violations of the Act, as well as claims for strict liability,
warranty claims, and other claims.2 It is estimated that Kohler sold
approximately 630,000 of the identified valves and mixer caps in
California during the relative time period.
After plaintiffs received numerous extensions of time, totaling 18
months, to file their motion for class certification, Kohler sought to
resolve the case by filing a motion for summary judgment or
adjudication on threshold legal issues. The trial court granted
summary adjudication as to all claims except plaintiff Ramos’ warranty
and negligence claims, both plaintiffs’ claims under the Act, and their
UCL claim. Kohler then filed a “motion re anti-class-certification,”
seeking a ruling that none of the remaining causes of action can be
certified as a class action.
On January 22, 2018, the trial court granted Kohler’s motion as to
the warranty, negligence, and UCL claims, but denied it as to the claim
under the Act. The court also certified its ruling for appellate review,
2 Plaintiffs’ non-Act claims, which are not at issue in this proceeding, are
for (1) strict liability/failure to warn; (2) strict liability/manufacturing defect;
(3) strict liability/design defect; (4) negligence; (5) breach of express warranty;
(6) breach of implied warranty of fitness; (7) breach of implied warranty of
merchantability; and (8) violations of Business and Professions Code section
17200 (the UCL claim). With regard to the claim asserted under the Act, the
class is limited to owners who purchased their dwellings on or after
December 14, 2005.
4
on the grounds that it presented a controlling question of law upon
which there were substantial grounds for differences of opinion, and
that appellate resolution of the question would greatly advance the
conclusion of the litigation. The court then stayed all proceedings
pending resolution of the instant petition.
Kohler filed the instant petition for writ of mandate, asking this
court to order the trial court to vacate its January 22, 2018 order to the
extent it denies Kohler’s anti-class-certification motion with respect to
the claim under the Act and to issue a new order granting the motion in
its entirety. We summarily denied the petition, and Kohler filed a
petition for review in the Supreme Court. The Supreme Court granted
review and transferred the matter back to this court with directions to
vacate our order denying mandate and to issue an order directing the
superior court to show cause why the relief sought should not be
granted.
We issued the order to show cause as directed by the Supreme
Court, and have received a return to the petition from plaintiffs and a
traverse from Kohler.3 In the return, plaintiffs demurred to the petition
on the ground that the petition fails to state a justiciable basis for
granting a writ of mandate and/or prohibition. But, as Kohler observes
in its traverse, the Supreme Court has concluded otherwise and
directed us to issue an order to show cause and consider the issue
3 We also received an application from California Building Industry
Association to file an amicus curiae brief. We have granted that request and
have considered the amicus brief, as well as plaintiffs’ response to that brief.
5
Kohler presents. The Supreme Court’s order constitutes a
determination that writ review is proper. (Borg-Warner Protective
Services Corp. v. Superior Court (1999) 75 Cal.App.4th 1203, 1206-
1207.) Therefore, we overrule plaintiffs’ demurrer and address Kohler’s
petition.
DISCUSSION
In McMillin, the California Supreme Court was asked to
determine whether the Act “was designed only to abrogate Aas [and]
supplant[] common law remedies with a statutory claim for purely
economic loss,” or whether it was intended “to go further and supplant
the common law with new rules governing the method of recovery in
actions alleging property damage.” (McMillin, supra, 4 Cal.5th at p.
247.) In reaching its conclusion that the Legislature intended the
broader displacement, and “made the Act the virtually exclusive remedy
not just for economic loss but also for property damage arising from
construction defects” (ibid.), the Court analyzed the text, purpose, and
legislative history of the Act. We conduct a similar analysis to resolve
the issue before us: whether the Act permits homeowners to bring a
class action against the manufacturer of a plumbing fixture that was
installed in the construction of their homes, alleging that the product
was defective and resulted in violations of the standards set forth in the
Act.
6
A. Overview of the Act
Because of the complexity of the Act and the interplay between
many of the statutory provisions, we begin with an overview of the
statutory scheme. As the Supreme Court observed, “the Act . . .
‘comprehensively revises the law applicable to construction defect
litigation for individual residential units’ within its coverage.”4
(McMillin, supra, 4 Cal.5th at p. 250.) The Court explained that “[t]he
Act added title 7 to division 2, part 2 of the Civil Code. (§§ 895-945.5.)
That title consists of five chapters. Chapter 1 establishes definitions
applicable to the entire title. (§ 895.) Chapter 2 defines standards for
building construction. (§§ 896-897.) Chapter 3 governs various builder
obligations, including the warranties a builder must [or may] provide.
(§§ 900-907.) Chapter 4 creates a prelitigation dispute resolution
process. (§§ 910-938.) Chapter 5 describes the procedures for lawsuits
under the Act. (§§ 941-945.5.)” (McMillin, supra, 4 Cal.5th at p. 250.)
For purposes of the case before us, our focus is on chapters 2, 4, and 5,
particularly as they relate to claims made against the manufacturer of a
product used in the construction of a residential unit, rather than
against the builder of that unit.
4 The Act applies “only to new residential units where the purchase
agreement with the buyer was signed by the seller on or after January 1,
2003.” (§ 938.)
7
1. Chapter 2
Chapter 2 contains two sections, sections 896 and 897. Section
896 provides a detailed and comprehensive set of standards for
residential construction, addressing water, structural, soil, fire
protection, plumbing and sewer, and electrical systems issues, and
issues regarding other areas of construction; it also provides various
time periods within which an action must be brought, depending upon
the standard alleged to have been violated.
Section 896 begins with a preamble that states in relevant part:
“In any action seeking recovery of damages arising out of, or related to
deficiencies in, the residential construction, . . . a builder, and to the
extent set forth in Chapter 4 (commencing with Section 910), a general
contractor, subcontractor, material supplier, individual product
manufacturer, or design professional, shall, except as specifically set
forth in this title, be liable for, and the claimant’s[5] claims or causes of
action shall be limited to violation of, the following standards, except as
specifically set forth in this title. This title applies to original
construction intended to be sold as an individual dwelling unit.”
(§ 896.) In other words, a homeowner alleging a construction defect in a
residence may bring a claim only under the Act, with certain specified
exceptions. (See McMillin, supra, 4 Cal.5th at p. 247.)
5 A “claimant” is defined as “the individual owners of single-family
homes, individual unit owners of attached dwellings and, in the case of a
common interest development, any association as defined in Section 4080
[e.g., a homeowner’s association].” (§ 895, subd. (f).)
8
One of those exceptions is found in section 896 itself, and is
relevant to this case. Subdivision (g)(3)(E) of section 896 (hereafter,
section 896(g)(3)(E)) provides that “[t]his title does not apply in any
action seeking recovery solely for a defect in a manufactured product
located within or adjacent to a structure.” (§ 896(g)(3)(E).) A
“manufactured product” is defined as “a product that is completely
manufactured offsite.” (§ 896, subd. (g)(3)(C).) Thus, a homeowner
alleging that a manufactured product—such as a plumbing fixture—
installed in her home is defective may bring a claim under the Act only
if the allegedly defective product caused a violation of one of the
standards set forth in section 896; otherwise she must bring a common
law claim outside of the Act against the manufacturer, and would be
limited to the damages allowed under the common law.
Section 897 is a kind of catch-all provision that “provides a
supplemental standard for any building components that section 896
may have overlooked.” (McMillin, supra, 4 Cal.5th at p. 253.) It
provides: “The standards set forth in this chapter [i.e., in section 896]
are intended to address every function or component of a structure. To
the extent that a function or component of a structure is not addressed
by these standards, it shall be actionable if it causes damage.” (§ 897.)
The key difference between section 897 and 896 (other than the
specification of standards) is that a claim brought under section 896
need only allege a violation of one or more of the specified standards
(see § 942, discussed in Section A.3., post), while a claim under section
9
897 must allege both a defective function or component of the home and
damage caused by that defect.6
2. Chapter 4
a. Prelitigation Procedures
Chapter 4 sets out a detailed set of procedures that must be
followed before a claimant may file litigation asserting claims under the
Act. It begins with section 910, which provides, in relevant part: “Prior
to filing an action against any party alleged to have contributed to a
violation of the standards set forth in Chapter 2 (commencing with
Section 896), the claimant shall initiate the following prelitigation
procedures: [¶] (a) The claimant or his or her legal representative
shall provide written notice via certified mail, overnight mail, or
personal delivery to the builder, in the manner prescribed in this
section, of the claimant’s claim that the construction of his or her
residence violates any of the standards set forth in Chapter 2
(commencing with Section 896).” (Italics added.)
The builder must acknowledge receipt of the notice (§ 913), and
may elect to inspect the claimed violation of the standards and conduct
testing7 (§ 916, subd. (a)). If the builder intends to hold a subcontractor,
6 We note that, as the Supreme Court observed in McMillin, some of the
standards set forth in section 896 “use the causation of damage as part of the
test for whether a given part is defective.” (McMillin, supra, 4 Cal.5th at p.
253.)
7 The builder may conduct a second inspection or testing if the builder
deems it necessary and certain conditions are met. (§ 916, subd. (c).)
10
design professional, individual product manufacturer, or material
supplier responsible for its contribution to the violation of the
standards, the builder must provide notice to that person or entity
sufficiently in advance to allow them to attend the inspection and
testing and to participate in the repair process. (§ 916, subd. (e).) After
the inspection or testing, the builder may offer in writing to repair the
violation.8 The offer must include, among other things, a detailed
statement explaining the nature and scope of the repair, with a
reasonable completion date for the repair, and it must compensate the
homeowner for all applicable damages recoverable under the Act.
(§ 917.) The offer to repair must also be accompanied by an offer to
mediate the dispute if the homeowner so chooses. (§ 919.) If the
homeowner rejects the offer to mediate, he or she must either authorize
the builder to proceed with the repair, or request that the repair be
completed by an alternative contractor chosen by the homeowner in
accordance with specified procedures. (§ 918.) If mediation takes place
but fails to resolve the dispute, the homeowner must allow the repair to
be performed either by the builder or by the alternative contractor as
selected under the procedures set forth in section 918. (§ 919.)
The various sections of Chapter 4 set time limits for all of the
acknowledgements, notices, offers, and repairs set forth in the chapter.
If the builder fails to strictly and timely comply with the requirements,
8 The builder may in the alternative make an offer of cash and no repair
in exchange for a release. In such a case, the homeowner may either accept
the offer or reject it and proceed with filing an action under the Act. (§ 929.)
11
the claimant is released from the requirements of the chapter and may
proceed with the filing of an action. (§§ 915; 916, subd. (c); 920; 925.)
If the procedures set forth in Chapter 4 do not resolve the dispute
between the parties, the claimant may file an action to enforce the other
chapters of the Act. (§ 914, subd. (a).) If the builder has elected to
repair the alleged violation of the standards, the claimant may, at the
completion of the repair, file an action for violation of the applicable
standards or for a claim of inadequate repair, or both, seeking all
applicable damages available under the Act. (§ 926.) However, before
bringing a post-repair action, the claimant must request mediation if
there was no previous mediation between the parties. (§ 928.) If the
claimant does not satisfy the requirements of Chapter 4, the builder
may bring a motion to stay any court action or other proceeding until
the requirements are satisfied. (§ 930, subd. (b).)
b. Other Provisions of Chapter 4
In addition to the sections detailing the prelitigation procedures
that must be followed, Chapter 4 also includes provisions addressing
various issues, including (as relevant to this action) claims that combine
causes of action not covered by the Act with those that are covered
(§ 931) and parties subject to application of the Act (§ 936).
Section 931, which we discuss in more detail in part B.1. of this
opinion, post, provides that when a claim of construction defects
combines causes of action or damages that are not covered by the Act
with claims of “unmet standards” (i.e., violations of one or more of the
section 896 standards and/or section 897) under the Act, the claims of
12
unmet standards must be administered in accordance with the Act.
Section 936 provides, as relevant to this case, that all of the provisions
of the other chapters of the Act apply to general contractors,
subcontractors, material suppliers, individual product manufacturers,
and design professionals to the extent that those people or entities
caused, in whole or in part, a violation of one of the standards as the
result of a negligent act or omission or a breach of contract.
3. Chapter 5
Chapter 5 sets forth the procedures for litigation under the Act.
The chapter includes sections on the statute of limitation for such
actions (§ 941), elements of a claim for violation of the Chapter 2
standards (§ 942 [to establish a claim, the homeowner need only
demonstrate that the home does not meet the applicable standard; “[n]o
further showing of causation or damages is required to meet the burden
of proof”]), and available affirmative defenses (§ 945.5).
The chapter also includes a section setting forth the exclusivity of,
and exceptions to, the Act: “Except as provided in this title, no other
cause of action for a claim covered by this title or for damages
recoverable under Section 944 is allowed. In addition to the rights
under this title, this title does not apply to any action by a claimant to
enforce a contract or express contractual provision, or any action for
fraud, personal injury, or violation of a statute.” (§ 943, subd. (a).)
Finally, Chapter 5 includes a section setting forth the damages
recoverable under the Act: “If a claim for damages is made under this
title, the homeowner is only entitled to damages for the reasonable
13
value of repairing any violation of the standards set forth in this title,
the reasonable cost of repairing any damages caused by the repair
efforts, the reasonable cost of repairing and rectifying any damages
resulting from the failure of the home to meet the standards, the
reasonable cost of removing and replacing any improper repair by the
builder, reasonable relocation and storage expenses, lost business
income if the home was used as a principal place of a business licensed
to be operated from the home, reasonable investigative costs for each
established violation, and all other costs or fees recoverable by contract
or statute.” (§ 944.)
B. Class Actions Under the Act
With this statutory scheme in mind, we turn to the question
presented in this case: May a claim for violation of certain standards
under the Act caused by an alleged defect in plumbing fixtures be
brought against the manufacturer of the fixtures in a class action? To
answer this question, we start with an examination of section 931, the
only provision of the Act that mentions class actions.
1. Section 931
Section 931 provides in full: “If a claim combines causes of action
or damages not covered by this part, including, without limitation,
personal injuries, class actions, other statutory remedies, or fraud-
based claims, the claimed unmet standards shall be administered
according to this part, although evidence of the property in its
unrepaired condition may be introduced to support the respective
14
elements of any such cause of action. As to any fraud-based claim, if
the fact that the property has been repaired under this chapter is
deemed admissible, the trier of fact shall be informed that the repair
was not voluntarily accepted by the homeowner. As to any class action
claims that address solely the incorporation of a defective component
into a residence, the named and unnamed class members need not
comply with this chapter.”
There is no question that the language of this section is somewhat
obtuse. Although its precise meaning has not been at issue in cases
decided by the courts of this State up to this point, the Supreme Court
and other courts generally have viewed the first sentence of section 931
to provide a (nonexclusive) list of exclusions from the Act. (See, e.g.,
McMillin, supra, 4 Cal.5th at pp. 252, 254; Gillotti v. Stewart (2017) 11
Cal.App.5th 875, 890, 893.) That list of exclusions is provided in the
context of explaining the application of the Act in a lawsuit that
includes both claims under the Act alleging violations of the section 896
and/or section 897 standards and claims that are “not covered by” —i.e.,
excluded from—the Act. Section 931 explains that the prelitigation
procedures must be followed with regard to the claims under the Act,
but those procedures do not apply to claims that are outside of the Act,
examples of which are listed.
One of the listed exclusions is “class actions.” While this appears
at first glance to be an unambiguous exclusion of class actions in the
first sentence of section 931, ambiguity is introduced when the first
sentence is read in conjunction with the last sentence: “As to any class
action claims that address solely the incorporation of a defective
15
component into a residence, the named and unnamed class members
need not comply with this chapter [i.e., the prelitigation procedures].”
This sentence seems to suggest that at least some class actions are
allowed under the Act. So how do we reconcile these seemingly
contradictory sentences in the same statute?
Plaintiffs contend that, despite the inclusion of class actions on
the list of exclusions, the first sentence of the statute cannot be
interpreted to exclude class actions asserting claims under the Act
because a class action is neither a cause of action nor a form of
damages; rather, “it is a procedural vehicle for enforcing substantive
law.” (Citing City of San Jose v. Superior Court (1974) 12 Cal.3d 447,
462.) Thus, they argue that the inclusion of class actions in the list
merely means that the Act does not cover causes of actions for personal
injuries, fraud-based claims, or other statutory causes of action, or class
actions asserting those causes of action. They contend the last sentence
reinforces that interpretation because it demonstrates that the Act
anticipates the use of class action procedures to bring claims under the
Act and facilitates the use of the procedure by waiving the prelitigation
requirements.
Kohler contends the sentences are not contradictory. It argues
that the first sentence of the statute excludes all class actions for any
claim under the Act, while the last sentence refers to class actions for
claims that are outside of the Act. It reasons that because the language
used in the last sentence is so similar to the language used in the
16
exclusion set forth in section 896(g)(3)(E)9 —both refer to claims “solely”
for a defective component or manufactured product—the last sentence
must be understood to be referring to the same claims. And, since
section 896(g)(3)(E) excludes those claims from operation of the Act, the
last sentence of section 931 must be understood to refer to claims that
are outside the Act.
We disagree with both parties’ interpretations of section 931.
We disagree with plaintiffs’ interpretation because it ignores the
actual language used in the statute. (Manufacturers Life Ins. Co. v.
Superior Court (1995) 10 Cal.4th 257, 274 [when interpreting a statute,
the court cannot “insert what has been omitted, or . . . omit what has
been inserted,” and “must give significance to every part of a statute to
achieve the legislative purpose”].) While it is true that class actions are
neither causes of action nor a form of damages, we observe that causes
of action that are asserted in class actions often are referred to as “class
action claims.” And given the inconsistent and imprecise use of the
terms “causes of action” and “claims” throughout the Act (see Acqua
Vista Homeowners Assn. v. MWI, Inc. (2017) 7 Cal.App.5th 1129, 1145),
it is not surprising that the language used in section 931 is imprecise.
We do not believe that the use of this imprecise language demonstrates
an intent to treat class actions differently than the other items on the
9 Section 896(g)(3)(E) provides: “This title does not apply in any action
seeking recovery solely for a defect in a manufactured product located within
or adjacent to a structure.” The last sentence of section 931 provides: “As to
any class action claims that address solely the incorporation of a defective
component into a residence, the named and unnamed class members need not
comply with this chapter.”
17
list of exclusions in the first sentence of section 931 for purposes of
interpreting the statutory language. (See Hassan v. Mercy American
River Hospital (2003) 31 Cal.4th 709, 715 [“Well-established rules of
statutory construction require us to ascertain the intent of the enacting
legislative body so that we may adopt the construction that best
effectuates the purpose of the law”].)
Moreover, plaintiffs’ interpretation of the first sentence makes no
sense. Had the Legislature intended the interpretation plaintiffs give
the sentence, logically it would have placed “class actions” at the end of
the items on the list of exclusions, rather than in the middle of the list,
with language qualifying that “class actions” means only those actions
asserting the previous items listed. And in any event, there would be
no reason for the Legislature to specify that the Act does not cover class
actions that assert claims that are not covered by the Act. If the claims
themselves are not covered by the Act, any procedural devices normally
available outside of the Act, such as class actions, necessarily are
available with regard to those claims.
Kohler’s interpretation of the first sentence of section 931—i.e.,
that it excludes all class actions—also makes little sense because it
conflicts with the last sentence of the statute. Although Kohler tries to
reconcile the apparent conflict by arguing that the last sentence refers
only to claims that are excluded from the Act under section 896(g)(3)(E),
its interpretation of that sentence is flawed for two reasons.
First, Kohler’s interpretation ignores the critical difference
between the language of the two statutes. The section 896(g)(3)(E)
exclusion applies to claims “solely for a defect in a manufactured
18
product” used in the construction of the residence and excludes those
claims from the Act entirely (§ 896(g)(3)(E), italics added), while the last
sentence of section 931 relieves claimants from the prelitigation
requirements of Chapter 4 of the Act for class action claims based “solely
[on] the incorporation of a defective component into a residence” (§ 931,
italics added.) A “component” is not the same thing as a “manufactured
product.” The term “component” as used in the Act may include a
“manufactured product,” but it is not limited to manufactured products.
Indeed, there are many kinds of components referenced in section 896.
(See, e.g., § 896, subds. (a)(4) [“Roofs, roofing systems, chimney caps,
and ventilation components”], (10) [“Stucco, exterior siding, exterior
walls, . . . and other exterior wall finishes and fixtures and the systems
of those components and fixtures”], (b)(1) [“Foundations, load bearing
components, and slabs”], (g)(9) [“Untreated steel fences and adjacent
components”].) Similarly, section 900, which addresses limited
warranties that must be provided to cover the fit and finish of certain
“building components,” sets forth a list of those components, which
includes items that might be “manufactured products” as defined in
section 896, subdivision (g)(3)(C), as well as items that clearly would
not. (§ 900 [listing “cabinets, mirrors, flooring, interior and exterior
walls, countertops, paint finishes, and trim”].) Thus, contrary to
Kohler’s assertion, the claims referred to in the last sentence of section
931 are not entirely the same as the claims referred to in section
896(g)(3)(E).
Second, Kohler’s interpretation of the last sentence of section 931
would render that sentence superfluous. Since the Act does not apply at
19
all to claims based solely on a defect in a manufactured product, there
is no reason for the Legislature to specify that Chapter 4 of the Act does
not apply to those excluded claims if they are brought as class actions.
What, then, are we to make of the last sentence of section 931?
Plaintiffs contend that this sentence specifies that class actions are
allowed and waives the prelitigation procedures for those claims. But
once again, plaintiffs’ interpretation ignores the statutory language.
We agree that the language of the last sentence could, when read in
isolation, be interpreted to mean that class actions generally are
allowed for claims under the Act. But the waiver of the prelitigation
procedures provision cannot be interpreted to apply to all class actions
because its plain language states that it applies only as to a specific
category of class action claims: those “that address solely the
incorporation of a defective component into a residence.” (§ 931.) It is
illogical to conclude that the Legislature intended the last sentence to
excise the exclusion of class actions contained in the first sentence of
the statute, and also intended to waive the prelitigation procedures for
some class action claims (those that address solely the incorporation of
a defective component into a residence), but not all class action claims.
Instead, the more logical interpretation is that the last sentence,
although inartfully written, carves out a limited exception to the
exclusion of class actions—for “claims that address solely the
incorporation of a defective component into a residence” (§ 931)—and
waives the prelitigation procedures for those class action claims. (See
California Mfrs. Assn. v. Public Utilities Com. (1979) 24 Cal.3d 836, 844
20
[“Interpretive constructions which render some words surplusage, defy
common sense, or lead to mischief or absurdity, are to be avoided”].)
2. Legislative History and Purpose of the Act
The legislative history and purpose of the Act as a whole support
our conclusion that the class action device may not be used to prosecute
claims under the Act, with one very narrow exception.
When enacting the Act, the Legislature declared that “[t]he
prompt and fair resolution of construction defect claims is in the
interest of consumers, homeowners, and the builders of homes, and is
vital to the state’s continuing growth and vitality. However, under
current procedures and standards, homeowners and builders alike are
not afforded the opportunity for quick and fair resolution of claims.
Both need clear standards and mechanisms for the prompt resolution of
claims. [¶] . . . It is the intent of the Legislature that this act improve
the procedures for the administration of civil justice, including
standards and procedures for early disposition of construction defects.”
(Stats. 2002, ch. 722, § 1, p. 4247.)
In its analysis of Senate Bill No. 800, which created the Act, the
Senate Judiciary Committee observed that “[t]he bill seeks to respond
to concerns expressed by a number of parties. The bill responds to
concerns from homeowners and the Consumer Attorneys of California
over the consequences of Aas[, supra,] 24 Cal.4th 627, which held that
defects must cause actual damage or personal injury prior to being
actionable in tort. The bill also responds to concerns expressed by
builders, subcontractors, and insurers over the costs of construction
21
defect litigation [and its] impact on housing costs in the state.” (Sen.
Com. on Judiciary, Analysis of Sen. Bill No. 800 (2001-2002 Reg. Sess.)
as amended Aug. 28, 2002, pp. 3-4.)
The Senate Judiciary Committee analysis explained how the bill’s
establishment of standards and imposition of liability for violations of
those standards would simplify the resolution of disputes over many
construction defects. (Sen. Com. on Judiciary, Analysis of Sen. Bill No.
800 (2001-2002 Reg. Sess.) as amended Aug. 28, 2002, p. 4.) The
analysis also explained the impact of the bill on builders and their
affiliates: “The bill establishes a mandatory process prior to the filing of
a construction defect action. The major component of this process is the
builder’s absolute right to attempt a repair prior to a homeowner filing
an action in court. Builders, insurers, and other business groups are
hopeful that this right to repair will reduce litigation.” (Sen. Com. on
Judiciary, Analysis of Sen. Bill No. 800 (2001-2002 Reg. Sess.) as
amended Aug. 28, 2002, p. 5, italics added.)
That the Legislature considered the prelitigation process a critical
component of the Act is demonstrated by the detail and scope of
Chapter 4. As our summary of that chapter shows, the Legislature left
no doubt that the goal of this process was to have disputes resolved and
repairs performed as quickly as possible, and, if possible, without
litigation. It makes sense, then, that the Legislature intended to
exclude class actions for virtually any claim under the Act, because
22
class actions make prelitigation resolution impossible.10 Even if the
named plaintiffs bringing a class action comply with the prelitigation
process, thus giving the builder of their homes an opportunity to
attempt to repair whatever defect is claimed as to their homes, the
builders of other homes are given no such opportunity with respect to
the unnamed class members, thus thwarting one of the most significant
aspects of the Act.11 (See McMillin, supra, 4 Cal.5th at pp. 255-256
[rejecting an interpretation of the Act that would thwart the mandatory
prelitigation process and the granting of a right to repair].)
C. Application to the Present Case
Having determined that section 931 excludes class actions, with a
narrow exception created by the last sentence, we must determine
10 This is especially true in a case such as this one, which alleges the
incorporation of a widely-used plumbing fixture into potentially hundreds of
thousands of dwellings, presumably constructed by thousands of different
builders, each of whom must be given notice of the alleged defect and an
opportunity to repair it.
11 Plaintiffs argue that this significant aspect is not thwarted in this case
because only the builders are given an opportunity to attempt to repair the
claimed defects under the Act. That is not correct. It is true that the
claimant must give notice to the builder, rather than the manufacturer, prior
to filing an action. But the claimant must do so whenever an action is to be
filed “against any party.” (§ 910.) If the manufacturer is to be held
responsible in whole or in part for the violation of the standards, the builder
must provide notice to the manufacturer, allow the manufacturer to attend
the inspection and testing of the alleged violation, and allow the
manufacturer to participate in the repair process. (§ 916, subd. (e).)
23
whether the claim alleged in this case may be brought in a class action.
We conclude it may not.
First, the narrow exception applies only to “class action claims
that address solely the incorporation of a defective component into a
residence.” (§ 931.) But plaintiffs’ claim does not address solely the
incorporation of a defective component into their homes. Rather, they
allege that the use of the allegedly defective valves and mixer caps
violated and/or caused violations of several of the standards set forth in
section 896, and that they caused damage to other components in their
homes.12
Second, even if plaintiffs’ claim could be deemed to address solely
the incorporation of a defective component into their homes, that claim
could not be brought under the Act because the allegedly defective
component is a manufactured product, and such claims are expressly
excluded. (See § 896, subd. (g)(3)(E) [“This title does not apply in any
action seeking recovery solely for a defect in a manufactured product
located within or adjacent to a structure”].) For this reason, we
12 We note that plaintiffs also allege that the valves and mixer caps
violated and/or caused violations of section 897. It would appear that if
plaintiffs’ claim was limited to that allegation, that might qualify as a claim
that addresses solely the incorporation of a defective component into their
homes, so long as the defect caused damage. (§ 897 [“To the extent that a
function or component of a structure is not addressed by these standards, it
shall be actionable if it causes damage”]; see also McMillin, supra, 4 Cal.5th
at pp. 253-254 [explaining that the Act covers, with certain specified
exceptions, claims alleging violations of the standards under section 896, and
claims under section 897 for defective components that do not violate an
articulated section 896 standard but cause damage].) But their claim is not
so limited, and therefore the claim does not come within section 931’s
exception to the class action exclusion.
24
conclude that despite the class action exception in the last sentence of
section 931 relating to actions solely for defective components, that
exception must be interpreted to include its own exclusion for claims
that seek to recover solely for the incorporation of a defective
manufactured product—i.e., “a product that is completely manufactured
offsite” (§ 896, subd. (g)(3)(C)). (See Moyer v. Workmen’s Comp. Appeals
Bd. (1973) 10 Cal.3d 222, 230 [“the various parts of a statutory
enactment must be harmonized by considering the particular clause or
section in the context of the statutory framework as a whole”].)
In short, we hold that the Act does not permit class action claims
except when those claims address solely the incorporation into the home
of a defective component other than a product that is completely
manufactured offsite. Therefore, the trial court erred by denying
Kohler’s anti-class certification motion with respect to the cause of
action under the Act.
//
//
//
//
//
//
//
//
//
25
DISPOSITION
Let a peremptory writ of mandate issue directing respondent
Superior Court for Los Angeles County to vacate its January 22, 2018
order to the extent it denied Kohler’s anti-class certification motion and
to issue a new and different order granting the motion in its entirety.
Kohler shall recover its costs with regard to this writ proceeding.
CERTIFIED FOR PUBLICATION
WILLHITE, J.
We concur:
MANELLA, P. J.
COLLINS, J.
26
| [
1,
383,
2356,
29871,
29896,
29896,
29914,
29896,
29946,
29914,
29896,
29947,
13,
462,
4706,
315,
20161,
29902,
3738,
3352,
15842,
349,
7466,
27888,
8098,
13,
13,
13,
539,
2672,
6093,
4810,
4574,
29911,
8079,
12279,
4162,
1964,
8079,
6093,
6850,
3040,
8079,
315,
1964,
6545,
1955,
29940,
10764,
13,
13,
462,
4706,
3725,
6007,
29928,
12279,
4162,
2208,
3040,
360,
9047,
3960,
1783,
13,
13,
462,
1669,
360,
5667,
3235,
2725,
18322,
4574,
13,
13,
13,
29968,
29949,
15444,
1001,
4810,
1696,
462,
1669,
1939,
29889,
350,
29906,
29947,
29947,
29929,
29941,
29945,
13,
13,
539,
5879,
654,
261,
29892,
462,
4706,
313,
19111,
29889,
315,
29873,
29889,
1939,
29889,
17403,
29945,
29947,
29947,
29941,
29953,
29929,
29897,
13,
462,
462,
3986,
313,
11639,
2296,
29886,
538,
399,
15168,
29892,
13843,
1696,
26817,
29897,
13,
539,
325,
29889,
13,
13,
28350,
317,
4897,
1001,
29902,
1955,
4810,
4574,
29911,
8079,
13,
29931,
3267,
13764,
1692,
17101,
21122,
29979,
29892,
13,
13,
539,
2538,
2818,
296,
29936,
13,
13,
29967,
29949,
2190,
3521,
349,
1718,
29968,
29899,
29968,
7833,
634,
394,
1696,
13,
13,
539,
8195,
3455,
583,
297,
23829,
29889,
13,
13,
13,
539,
438,
22789,
1177,
1964,
13756,
4741,
3352,
4214,
29936,
5697,
654,
363,
2044,
310,
9619,
403,
29889,
5879,
654,
13,
629,
9714,
29936,
2044,
16610,
29889,
13,
539,
20720,
669,
7102,
357,
476,
15802,
1102,
324,
261,
29892,
14713,
1383,
481,
1049,
29892,
20916,
399,
29889,
12790,
322,
2259,
13,
29907,
29889,
501,
1915,
363,
5879,
654,
261,
29889,
13,
539,
1570,
1004,
7598,
669,
360,
453,
291,
29892,
17102,
379,
29889,
18744,
261,
29892,
12208,
8903,
390,
29889,
4358,
556,
322,
6936,
319,
29889,
13,
29943,
3127,
296,
1789,
363,
8046,
17166,
12157,
719,
7993,
408,
1913,
12473,
10837,
23395,
373,
13,
915,
24498,
310,
5879,
654,
261,
29889,
13,
539,
1939,
10097,
363,
2538,
2818,
296,
29889,
13,
539,
19157,
18386,
2718,
407,
29209,
1334,
495,
24215,
29892,
28576,
317,
29889,
19157,
18386,
29892,
6044,
13493,
365,
29889,
13,
2855,
1330,
322,
22196,
350,
29889,
2718,
407,
29209,
363,
8195,
3455,
583,
297,
23829,
29889,
13,
15,
268,
512,
29871,
29906,
29900,
29900,
29900,
29892,
278,
8046,
22569,
9245,
29490,
297,
319,
294,
325,
29889,
5670,
1611,
13,
29907,
14316,
313,
29906,
29900,
29900,
29900,
29897,
29871,
29906,
29946,
3037,
29889,
29946,
386,
29871,
29953,
29906,
29955,
313,
29909,
294,
29897,
393,
263,
3271,
20348,
1033,
451,
9792,
13,
265,
263,
3480,
3473,
663,
5995,
363,
7632,
23503,
29879,
6521,
278,
3271,
20348,
13,
26680,
1510,
3935,
2875,
18658,
470,
7333,
24092,
313,
294,
15869,
304,
13,
29886,
545,
368,
17407,
6410,
29892,
1316,
408,
22964,
918,
297,
995,
310,
278,
3271,
470,
278,
13,
18253,
304,
26032,
278,
23503,
29879,
467,
2860,
319,
294,
471,
8459,
29892,
2755,
5056,
515,
13,
1552,
5214,
6397,
2722,
29892,
1663,
18541,
14582,
29892,
322,
3271,
776,
414,
2996,
13,
29873,
12966,
411,
5144,
310,
278,
18991,
1535,
304,
2906,
895,
263,
15171,
6270,
13,
6112,
329,
706,
11380,
304,
4095,
7632,
23503,
11872,
335,
362,
29889,
2193,
13,
6112,
329,
706,
11380,
29892,
15574,
2998,
408,
278,
10428,
304,
10088,
1466,
3185,
313,
1552,
3185,
29897,
13,
11102,
427,
627,
287,
297,
29871,
29906,
29900,
29900,
29906,
29889,
313,
25060,
29889,
29871,
29906,
29900,
29900,
29906,
29892,
521,
29889,
29871,
29955,
29906,
29906,
29892,
3420,
635,
15234,
2164,
472,
315,
440,
29889,
13,
3399,
29892,
29896,
16683,
30152,
29871,
29947,
29929,
29945,
29899,
29929,
29946,
29945,
29889,
29945,
1846,
1094,
10325,
10824,
491,
278,
22569,
9245,
29892,
13,
30015,
29961,
29873,
29962,
354,
3185,
6166,
11483,
13173,
2106,
8157,
20801,
393,
278,
7117,
13,
974,
263,
24013,
292,
1818,
15523,
29889,
739,
884,
10127,
267,
263,
758,
19411,
335,
362,
28447,
13,
9778,
918,
1889,
393,
2756,
4339,
2048,
414,
8369,
310,
16831,
287,
7632,
13,
1753,
522,
29879,
322,
278,
15130,
304,
274,
545,
1316,
23503,
29879,
29892,
1550,
16690,
292,
13,
5184,
776,
414,
278,
1492,
304,
12991,
363,
822,
293,
819,
2478,
1584,
297,
278,
18070,
310,
13,
6799,
18658,
470,
7333,
24092,
3178,
313,
27297,
19169,
262,
16197,
1384,
365,
12182,
325,
29889,
13,
19111,
1611,
9245,
313,
29906,
29900,
29896,
29947,
29897,
29871,
29946,
3037,
29889,
29945,
386,
29871,
29906,
29946,
29896,
29892,
29871,
29906,
29946,
29955,
313,
27297,
19169,
262,
467,
29897,
13,
268,
512,
278,
2198,
1206,
29892,
591,
526,
4433,
304,
8161,
3692,
13,
5184,
776,
414,
1122,
6963,
263,
770,
3158,
408,
643,
1259,
263,
5995,
1090,
278,
3185,
13,
351,
475,
303,
278,
12012,
9945,
310,
385,
16831,
23244,
23503,
573,
715,
3774,
292,
5713,
15546,
13,
3880,
297,
278,
7632,
310,
770,
5144,
30010,
17774,
29889,
16564,
373,
1749,
13,
735,
314,
3381,
310,
278,
3829,
322,
4086,
310,
278,
3185,
29892,
408,
1532,
408,
278,
13,
13,
29896,
1678,
8725,
563,
267,
647,
630,
1002,
329,
706,
9282,
526,
304,
278,
12886,
5920,
29889,
13,
13,
13,
462,
462,
418,
29906,
13,
15,
1397,
7497,
1230,
4955,
29892,
591,
17668,
393,
770,
8820,
526,
451,
6068,
1090,
13,
1552,
3185,
5174,
297,
697,
9078,
3030,
29901,
304,
4974,
16726,
393,
3211,
13,
2170,
368,
278,
11039,
362,
964,
263,
25488,
310,
263,
23503,
573,
4163,
29892,
13,
28952,
393,
4163,
338,
263,
3234,
393,
338,
6446,
12012,
2955,
13,
2696,
2746,
29889,
13,
418,
7311,
278,
5995,
297,
445,
1206,
20789,
16831,
23244,
23503,
573,
13,
14456,
393,
892,
6446,
12012,
2955,
1283,
2746,
29892,
591,
4808,
393,
278,
13,
29883,
8342,
16831,
287,
1090,
278,
3185,
2609,
367,
11872,
335,
630,
408,
263,
770,
3158,
29889,
13,
7504,
3278,
368,
29892,
591,
16690,
278,
2044,
5697,
654,
934,
29881,
491,
822,
5818,
28590,
1358,
3189,
29889,
13,
29898,
29968,
1148,
1358,
511,
322,
2228,
263,
2044,
310,
9619,
403,
1513,
292,
278,
14260,
8973,
304,
11757,
403,
13,
1169,
1797,
304,
278,
15834,
372,
17935,
297,
760,
28590,
1358,
30010,
29879,
9418,
29899,
1990,
2284,
2450,
13,
29885,
8194,
322,
304,
3896,
263,
716,
1797,
16690,
292,
278,
10884,
297,
967,
4152,
1017,
29889,
13,
13,
13,
462,
632,
350,
11375,
29954,
1672,
18783,
13,
418,
13494,
524,
28324,
3650,
9713,
4815,
29899,
29968,
326,
322,
6217,
21325,
11836,
8292,
359,
526,
1269,
13,
776,
414,
310,
263,
20201,
616,
2148,
5817,
1974,
24013,
292,
297,
607,
1346,
29934,
568,
29899,
15637,
13,
10923,
545,
7392,
19985,
2630,
1960,
30024,
322,
1346,
29924,
861,
261,
315,
2547,
30024,
313,
4716,
526,
11122,
297,
13,
30015,
29934,
568,
29899,
15637,
2630,
345,
24367,
3687,
30024,
29897,
12012,
2955,
491,
28590,
1358,
892,
5130,
13,
29881,
3864,
7632,
29889,
512,
278,
4654,
626,
2760,
15313,
524,
29892,
2174,
524,
28324,
394,
4424,
13,
5747,
1438,
659,
1960,
322,
6837,
261,
26091,
29892,
607,
526,
8688,
304,
1072,
5987,
4094,
13,
1731,
322,
10430,
297,
22329,
715,
3774,
292,
29892,
437,
451,
21994,
408,
13,
524,
2760,
2861,
304,
1009,
23503,
573,
2874,
322,
12012,
3864,
29892,
322,
1346,
598,
13,
2616,
5964,
292,
29892,
17581,
29892,
322,
29914,
272,
674,
297,
5750,
277,
2197,
4418,
3995,
607,
756,
8581,
470,
674,
13,
29883,
1071,
18658,
304,
916,
7117,
310,
278,
22329,
715,
3774,
292,
3454,
470,
13,
7241,
486,
1973,
29889,
13,
13,
13,
13,
462,
462,
418,
29941,
13,
15,
418,
13494,
524,
28324,
6296,
278,
14426,
4307,
29658,
373,
2306,
3131,
310,
6053,
322,
13,
497,
1914,
414,
310,
20201,
616,
24013,
886,
297,
8046,
297,
607,
1438,
659,
1960,
13,
392,
6837,
261,
26091,
892,
5130,
2645,
2441,
7632,
29892,
16831,
292,
263,
13,
29883,
8342,
363,
5537,
800,
310,
278,
3185,
29892,
408,
1532,
408,
16726,
363,
9406,
619,
3097,
29892,
13,
29893,
2749,
424,
29891,
16726,
29892,
322,
916,
16726,
29889,
29906,
739,
338,
15899,
393,
28590,
1358,
5239,
13,
9961,
2657,
2486,
29871,
29953,
29941,
29900,
29892,
29900,
29900,
29900,
310,
278,
15659,
659,
1960,
322,
6837,
261,
26091,
297,
13,
7856,
6557,
423,
2645,
278,
6198,
931,
3785,
29889,
13,
418,
2860,
2174,
524,
28324,
4520,
12727,
17752,
310,
931,
29892,
3001,
292,
29871,
29896,
29947,
13,
10874,
29879,
29892,
304,
934,
1009,
10884,
363,
770,
2284,
2450,
29892,
28590,
1358,
18365,
304,
13,
17863,
278,
1206,
491,
977,
292,
263,
10884,
363,
15837,
24284,
470,
13,
328,
17675,
293,
362,
373,
16897,
11706,
5626,
29889,
450,
14260,
8973,
16896,
13,
7727,
12109,
566,
293,
362,
408,
304,
599,
16726,
5174,
2174,
524,
2593,
8292,
359,
30010,
1370,
21867,
29891,
13,
392,
3480,
3473,
663,
16726,
29892,
1716,
2174,
524,
28324,
30010,
16726,
1090,
278,
3185,
29892,
322,
1009,
13,
29965,
6154,
5995,
29889,
28590,
1358,
769,
934,
29881,
263,
1346,
29885,
8194,
337,
9418,
29899,
1990,
29899,
6327,
2450,
3995,
13,
344,
1416,
292,
263,
364,
19478,
393,
5642,
310,
278,
9886,
9946,
310,
3158,
508,
367,
13,
6327,
2164,
408,
263,
770,
3158,
29889,
13,
418,
1551,
5490,
29871,
29906,
29906,
29892,
29871,
29906,
29900,
29896,
29947,
29892,
278,
14260,
8973,
16896,
28590,
1358,
30010,
29879,
10884,
408,
304,
13,
1552,
1370,
21867,
29891,
29892,
3480,
3473,
663,
29892,
322,
501,
6154,
16726,
29892,
541,
17935,
372,
408,
304,
278,
5995,
13,
5062,
278,
3185,
29889,
450,
8973,
884,
2284,
2164,
967,
364,
19478,
363,
623,
514,
403,
9076,
29892,
13,
13,
13,
29906,
418,
13494,
524,
28324,
30010,
1661,
29899,
2865,
16726,
29892,
607,
526,
451,
472,
2228,
297,
445,
8469,
292,
29892,
526,
13,
1454,
313,
29896,
29897,
9406,
619,
3097,
29914,
14057,
545,
304,
29383,
29936,
313,
29906,
29897,
9406,
619,
3097,
29914,
1171,
9765,
3864,
23503,
29936,
13,
29898,
29941,
29897,
9406,
619,
3097,
29914,
13892,
23503,
29936,
313,
29946,
29897,
3480,
3473,
663,
29936,
313,
29945,
29897,
2078,
496,
310,
4653,
1370,
21867,
29891,
29936,
13,
29898,
29953,
29897,
2078,
496,
310,
2411,
2957,
1370,
21867,
29891,
310,
6216,
2264,
29936,
313,
29955,
29897,
2078,
496,
310,
2411,
2957,
1370,
21867,
29891,
310,
13,
1050,
13775,
3097,
29936,
322,
313,
29947,
29897,
5537,
800,
310,
15197,
322,
6175,
10964,
5920,
4004,
13,
29896,
29955,
29906,
29900,
29900,
313,
1552,
501,
6154,
5995,
467,
2973,
4880,
304,
278,
5995,
4974,
287,
1090,
278,
3185,
29892,
278,
13,
1990,
338,
9078,
304,
1914,
414,
1058,
20848,
1009,
24013,
886,
373,
470,
1156,
13,
6185,
1096,
29871,
29896,
29946,
29892,
29871,
29906,
29900,
29900,
29945,
29889,
13,
13,
13,
462,
462,
3986,
29946,
13,
15,
265,
278,
25502,
393,
372,
9132,
263,
640,
22155,
1139,
310,
4307,
2501,
13,
4716,
727,
892,
23228,
25502,
363,
12651,
310,
9426,
29892,
322,
13,
5747,
623,
514,
403,
10104,
310,
278,
1139,
723,
11180,
6564,
278,
13,
535,
10085,
310,
278,
11872,
335,
362,
29889,
450,
8973,
769,
27661,
599,
8469,
886,
13,
29886,
2548,
10104,
310,
278,
14426,
5697,
654,
29889,
13,
418,
28590,
1358,
934,
29881,
278,
14426,
5697,
654,
363,
2044,
310,
9619,
403,
29892,
6721,
445,
13,
27845,
304,
1797,
278,
14260,
8973,
304,
11757,
403,
967,
5490,
29871,
29906,
29906,
29892,
29871,
29906,
29900,
29896,
29947,
1797,
304,
278,
13,
1062,
296,
372,
972,
583,
28590,
1358,
30010,
29879,
9418,
29899,
1990,
29899,
6327,
2450,
10884,
411,
3390,
304,
13,
1552,
5995,
1090,
278,
3185,
322,
304,
2228,
263,
716,
1797,
16690,
292,
278,
10884,
297,
13,
1169,
4152,
1017,
29889,
1334,
19138,
2354,
17935,
278,
5697,
654,
29892,
322,
28590,
1358,
934,
29881,
263,
13,
10963,
654,
363,
9076,
297,
278,
22569,
9245,
29889,
450,
22569,
9245,
16896,
13,
27828,
322,
18440,
278,
4383,
1250,
304,
445,
8973,
411,
18112,
304,
13,
29894,
562,
403,
1749,
1797,
972,
5414,
9619,
403,
322,
304,
2228,
385,
1797,
1513,
292,
278,
13,
9136,
1611,
8973,
304,
1510,
4556,
2020,
278,
18892,
18365,
881,
451,
367,
13,
629,
9714,
29889,
13,
418,
1334,
16610,
278,
1797,
304,
1510,
4556,
408,
10624,
491,
278,
22569,
13,
29907,
14316,
29892,
322,
505,
4520,
263,
736,
304,
278,
5697,
654,
515,
2174,
524,
28324,
322,
263,
13,
3018,
3901,
515,
28590,
1358,
29889,
29941,
512,
278,
736,
29892,
2174,
524,
28324,
1261,
332,
1127,
304,
278,
5697,
654,
13,
265,
278,
5962,
393,
278,
5697,
654,
8465,
304,
2106,
263,
925,
1654,
519,
8405,
363,
13,
629,
424,
292,
263,
2044,
310,
9619,
403,
322,
29914,
272,
21460,
654,
29889,
1205,
29892,
408,
28590,
1358,
5366,
1960,
13,
262,
967,
29370,
29892,
278,
22569,
9245,
756,
22834,
6467,
322,
13,
11851,
287,
502,
304,
2228,
385,
1797,
304,
1510,
4556,
322,
2050,
278,
2228,
13,
13,
13,
29941,
268,
1334,
884,
4520,
385,
2280,
515,
8046,
17166,
12157,
719,
13,
29254,
362,
304,
934,
385,
626,
12473,
3151,
23395,
11473,
29889,
1334,
505,
16896,
393,
2009,
322,
13,
17532,
5545,
278,
626,
12473,
11473,
29892,
408,
1532,
408,
2174,
524,
28324,
30010,
2933,
304,
393,
11473,
29889,
13,
13,
13,
462,
462,
4706,
29945,
13,
15,
29968,
1148,
1358,
22981,
29889,
450,
22569,
9245,
30010,
29879,
1797,
20016,
2667,
263,
13,
4801,
837,
3381,
393,
2044,
9076,
338,
1571,
29889,
313,
29933,
990,
29899,
29956,
279,
1089,
14409,
312,
573,
13,
13779,
2994,
29886,
29889,
325,
29889,
5670,
1611,
9245,
313,
29896,
29929,
29929,
29929,
29897,
29871,
29955,
29945,
3037,
29889,
2052,
29889,
29946,
386,
29871,
29896,
29906,
29900,
29941,
29892,
29871,
29896,
29906,
29900,
29953,
29899,
13,
29896,
29906,
29900,
29955,
1846,
7857,
29892,
591,
975,
7491,
2174,
524,
28324,
30010,
1261,
1038,
261,
322,
3211,
28590,
1358,
30010,
29879,
13,
10963,
654,
29889,
13,
13,
13,
462,
632,
28657,
29907,
29965,
13507,
13,
539,
512,
4052,
19169,
262,
29892,
278,
8046,
22569,
9245,
471,
4433,
304,
13,
4801,
837,
457,
3692,
278,
3185,
1346,
11102,
8688,
871,
304,
633,
9102,
403,
319,
294,
518,
392,
29962,
13,
19303,
27493,
2636,
3619,
4307,
1083,
287,
583,
411,
263,
1002,
329,
706,
5995,
363,
24837,
13,
29872,
4599,
293,
6410,
3995,
470,
3692,
372,
471,
9146,
1346,
517,
748,
4340,
322,
1462,
27493,
13,
1552,
3619,
4307,
411,
716,
6865,
14765,
1076,
278,
1158,
310,
24205,
297,
13,
7387,
16831,
292,
2875,
18658,
3178,
313,
27297,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
472,
282,
29889,
13,
29906,
29946,
29955,
1846,
512,
20888,
967,
15997,
393,
278,
18991,
1535,
9146,
278,
13,
6729,
1664,
12272,
9552,
29892,
322,
1346,
26350,
278,
3185,
278,
4610,
1474,
29192,
1083,
7584,
13,
1333,
925,
363,
17407,
6410,
541,
884,
363,
2875,
18658,
564,
5921,
515,
13,
3075,
4080,
23503,
29879,
30024,
313,
747,
333,
9774,
278,
9245,
29537,
287,
278,
1426,
29892,
6437,
29892,
322,
13,
1397,
7497,
1230,
4955,
310,
278,
3185,
29889,
1334,
7512,
263,
2788,
7418,
304,
8814,
13,
1552,
2228,
1434,
502,
29901,
3692,
278,
3185,
3635,
1169,
3271,
776,
414,
304,
6963,
263,
13,
1990,
3158,
2750,
278,
12012,
9945,
310,
263,
715,
3774,
292,
5713,
15546,
393,
471,
13,
25537,
297,
278,
7632,
310,
1009,
17774,
29892,
16831,
292,
393,
278,
3234,
13,
11102,
23503,
573,
322,
20601,
297,
5537,
800,
310,
278,
20801,
731,
11483,
297,
278,
13,
2865,
29889,
13,
13,
13,
13,
13,
462,
462,
268,
29953,
13,
15,
29909,
29889,
259,
6811,
1493,
310,
278,
3185,
13,
268,
7311,
310,
278,
13644,
310,
278,
3185,
322,
278,
1006,
1456,
1546,
13,
13011,
310,
278,
1002,
329,
706,
1326,
12112,
29892,
591,
3380,
411,
385,
975,
1493,
310,
278,
13,
6112,
329,
706,
11380,
29889,
1094,
278,
22569,
9245,
8900,
29892,
1346,
1552,
3185,
869,
869,
869,
13,
30086,
510,
1457,
26791,
3598,
23484,
267,
278,
4307,
22903,
304,
7632,
23503,
13,
19411,
335,
362,
363,
5375,
20201,
616,
10340,
30010,
2629,
967,
23746,
3178,
29946,
13,
29898,
27297,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
472,
282,
29889,
29871,
29906,
29945,
29900,
1846,
450,
9245,
10824,
393,
1346,
29961,
29873,
29962,
354,
13,
2865,
2715,
3611,
29871,
29955,
304,
8542,
29871,
29906,
29892,
760,
29871,
29906,
310,
278,
12886,
5920,
29889,
313,
30152,
30152,
29871,
29947,
29929,
29945,
29899,
29929,
29946,
29945,
29889,
29945,
1846,
13,
7058,
3611,
11624,
310,
5320,
10708,
2153,
29889,
23040,
29871,
29896,
10127,
267,
15848,
13,
932,
506,
519,
304,
278,
4152,
3611,
29889,
313,
30152,
29871,
29947,
29929,
29945,
1846,
23040,
29871,
29906,
17645,
20801,
363,
13,
25237,
7632,
29889,
313,
30152,
30152,
29871,
29947,
29929,
29953,
29899,
29947,
29929,
29955,
1846,
23040,
29871,
29941,
14765,
1983,
5164,
12856,
13,
711,
3473,
800,
29892,
3704,
278,
1370,
21867,
583,
263,
12856,
1818,
518,
272,
1122,
29962,
3867,
29889,
13,
29898,
30152,
30152,
29871,
29929,
29900,
29900,
29899,
29929,
29900,
29955,
1846,
23040,
29871,
29946,
10017,
263,
758,
19411,
335,
362,
28447,
10104,
13,
5014,
29889,
313,
30152,
30152,
29871,
29929,
29896,
29900,
29899,
29929,
29941,
29947,
1846,
23040,
29871,
29945,
16612,
278,
28648,
363,
4307,
2146,
1169,
13,
5062,
278,
3185,
29889,
313,
30152,
30152,
29871,
29929,
29946,
29896,
29899,
29929,
29946,
29945,
29889,
29945,
1846,
30024,
313,
27297,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
472,
282,
29889,
29871,
29906,
29945,
29900,
1846,
13,
2831,
11976,
310,
278,
1206,
1434,
502,
29892,
1749,
8569,
338,
373,
10708,
2153,
29871,
29906,
29892,
29871,
29946,
29892,
322,
29871,
29945,
29892,
13,
1595,
16311,
368,
408,
896,
29279,
304,
16726,
1754,
2750,
278,
12012,
9945,
310,
263,
13,
4704,
1304,
297,
278,
7632,
310,
263,
20201,
616,
5190,
29892,
3265,
1135,
13,
351,
475,
303,
278,
12856,
310,
393,
5190,
29889,
13,
13,
13,
13,
13,
29946,
268,
450,
3185,
16058,
1346,
6194,
304,
716,
20201,
616,
10340,
988,
278,
20590,
13,
351,
276,
882,
411,
278,
1321,
7598,
471,
8794,
491,
278,
269,
4539,
373,
470,
1156,
5490,
29871,
29896,
29892,
13,
29906,
29900,
29900,
29941,
3178,
313,
30152,
29871,
29929,
29941,
29947,
1846,
13,
13,
13,
462,
462,
418,
29955,
13,
15,
539,
29896,
29889,
1678,
23040,
29871,
29906,
13,
418,
23040,
29871,
29906,
3743,
1023,
13926,
29892,
13926,
29871,
29947,
29929,
29953,
322,
29871,
29947,
29929,
29955,
29889,
9779,
13,
29947,
29929,
29953,
8128,
263,
13173,
322,
15171,
6270,
731,
310,
20801,
363,
13,
690,
1693,
616,
7632,
29892,
3211,
292,
4094,
29892,
2281,
3631,
29892,
22473,
29892,
3974,
13,
14676,
428,
29892,
715,
3774,
292,
322,
409,
556,
29892,
322,
3546,
16888,
6757,
5626,
29892,
322,
13,
12175,
11211,
916,
10161,
310,
7632,
29936,
372,
884,
8128,
5164,
13,
2230,
23704,
2629,
607,
385,
3158,
1818,
367,
6296,
29892,
8679,
2501,
13,
1552,
3918,
16831,
287,
304,
505,
1063,
5537,
630,
29889,
13,
418,
9779,
29871,
29947,
29929,
29953,
16410,
411,
263,
758,
314,
569,
393,
5922,
297,
8018,
760,
29901,
13,
30015,
797,
738,
3158,
25738,
24205,
310,
5625,
1179,
564,
5921,
714,
310,
29892,
470,
4475,
304,
13,
1753,
293,
819,
2478,
297,
29892,
278,
20201,
616,
7632,
29892,
869,
869,
869,
263,
12856,
29892,
322,
304,
278,
13,
1062,
296,
731,
11483,
297,
23040,
29871,
29946,
313,
510,
1527,
3277,
411,
9779,
29871,
29929,
29896,
29900,
511,
263,
2498,
13,
1285,
28891,
29892,
1014,
1285,
28891,
29892,
5518,
1462,
4926,
29892,
5375,
3234,
13,
1171,
9765,
9945,
29892,
470,
2874,
10257,
29892,
4091,
29892,
5174,
408,
10816,
731,
13,
1454,
386,
297,
445,
3611,
29892,
367,
619,
519,
363,
29892,
322,
278,
5995,
424,
30010,
29879,
29961,
29945,
29962,
16726,
470,
9946,
310,
13,
2467,
4091,
367,
9078,
304,
5537,
362,
310,
29892,
278,
1494,
20801,
29892,
5174,
408,
13,
14940,
635,
731,
11483,
297,
445,
3611,
29889,
910,
3611,
16058,
304,
2441,
13,
3075,
4080,
9146,
304,
367,
5239,
408,
385,
5375,
24013,
292,
5190,
3178,
13,
29898,
30152,
29871,
29947,
29929,
29953,
1846,
512,
916,
3838,
29892,
263,
3271,
20348,
16831,
292,
263,
7632,
23503,
297,
263,
13,
690,
5084,
1122,
6963,
263,
5995,
871,
1090,
278,
3185,
29892,
411,
3058,
6790,
13,
11739,
29879,
29889,
313,
13393,
4052,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
472,
282,
29889,
29871,
29906,
29946,
29955,
1846,
13,
13,
13,
13,
29945,
539,
319,
1346,
29883,
8342,
424,
30024,
338,
3342,
408,
1346,
1552,
5375,
1914,
414,
310,
2323,
29899,
11922,
13,
9706,
267,
29892,
5375,
5190,
1914,
414,
310,
10959,
24013,
886,
322,
29892,
297,
278,
1206,
310,
263,
13,
9435,
4066,
5849,
29892,
738,
15477,
408,
3342,
297,
9779,
29871,
29946,
29900,
29947,
29900,
13,
29961,
29872,
29889,
29887,
1696,
263,
3271,
20348,
30010,
29879,
15477,
1822,
30024,
313,
30152,
29871,
29947,
29929,
29945,
29892,
1014,
29881,
29889,
313,
29888,
467,
29897,
13,
13,
13,
462,
462,
4706,
29947,
13,
15,
268,
3118,
310,
1906,
15283,
338,
1476,
297,
4004,
29871,
29947,
29929,
29953,
3528,
29892,
322,
338,
13,
276,
6591,
304,
445,
1206,
29889,
3323,
4563,
2459,
313,
29887,
5033,
29941,
5033,
29923,
29897,
310,
4004,
29871,
29947,
29929,
29953,
313,
4150,
7045,
29892,
13,
2042,
29871,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
876,
8128,
393,
1346,
29961,
29873,
29962,
22880,
3611,
947,
451,
3394,
297,
738,
13,
2467,
25738,
24205,
14419,
368,
363,
263,
23503,
297,
263,
12012,
2955,
3234,
13,
28809,
2629,
470,
20114,
304,
263,
3829,
3178,
313,
30152,
29871,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
467,
29897,
319,
13,
30015,
1171,
9765,
2955,
3234,
30024,
338,
3342,
408,
1346,
29874,
3234,
393,
338,
6446,
13,
1171,
9765,
2955,
1283,
2746,
3178,
313,
30152,
29871,
29947,
29929,
29953,
29892,
1014,
29881,
29889,
313,
29887,
5033,
29941,
5033,
29907,
467,
29897,
6549,
29892,
263,
3271,
20348,
13,
284,
1397,
292,
393,
263,
12012,
2955,
3234,
30003,
14565,
408,
263,
715,
3774,
292,
5713,
15546,
30003,
13,
25537,
297,
902,
3271,
338,
23503,
573,
1122,
6963,
263,
5995,
1090,
278,
3185,
871,
13,
361,
278,
16831,
23244,
23503,
573,
3234,
8581,
263,
5537,
362,
310,
697,
310,
278,
13,
1689,
3163,
731,
11483,
297,
4004,
29871,
29947,
29929,
29953,
29936,
6467,
1183,
1818,
6963,
263,
3619,
13,
10653,
5995,
5377,
310,
278,
3185,
2750,
278,
12012,
9945,
29892,
322,
723,
367,
13,
29044,
304,
278,
5625,
1179,
6068,
1090,
278,
3619,
4307,
29889,
13,
268,
9779,
29871,
29947,
29929,
29955,
338,
263,
2924,
310,
4380,
29899,
497,
25161,
393,
1346,
16123,
2247,
263,
13,
19303,
944,
284,
3918,
363,
738,
5214,
7117,
393,
4004,
29871,
29947,
29929,
29953,
13,
13029,
505,
975,
6914,
287,
3178,
313,
27297,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
472,
282,
29889,
29871,
29906,
29945,
29941,
1846,
739,
13,
16123,
2247,
29901,
1346,
1576,
20801,
731,
11483,
297,
445,
16385,
518,
29875,
29889,
29872,
1696,
297,
4004,
29871,
29947,
29929,
29953,
29962,
13,
598,
9146,
304,
3211,
1432,
740,
470,
4163,
310,
263,
3829,
29889,
1763,
13,
1552,
15834,
393,
263,
740,
470,
4163,
310,
263,
3829,
338,
451,
20976,
13,
1609,
1438,
20801,
29892,
372,
4091,
367,
3158,
519,
565,
372,
9946,
18658,
3178,
313,
30152,
29871,
29947,
29929,
29955,
1846,
13,
1576,
1820,
4328,
1546,
4004,
29871,
29947,
29929,
29955,
322,
29871,
29947,
29929,
29953,
313,
1228,
1135,
278,
13,
6550,
2450,
310,
20801,
29897,
338,
393,
263,
5995,
6296,
1090,
4004,
29871,
29947,
29929,
29953,
13,
26180,
871,
394,
4424,
263,
5537,
362,
310,
697,
470,
901,
310,
278,
6790,
20801,
13,
29898,
4149,
16683,
29871,
29929,
29946,
29906,
29892,
15648,
297,
9779,
319,
29889,
29941,
1696,
1400,
511,
1550,
263,
5995,
1090,
4004,
13,
13,
13,
13,
13,
462,
462,
418,
29929,
13,
15,
29947,
29929,
29955,
1818,
394,
4424,
1716,
263,
23503,
573,
740,
470,
4163,
310,
278,
3271,
322,
13,
16846,
482,
8581,
491,
393,
23503,
29889,
29953,
13,
13,
13,
539,
29906,
29889,
1678,
23040,
29871,
29946,
13,
9651,
263,
29889,
1678,
349,
2674,
277,
335,
362,
1019,
1133,
1973,
13,
418,
23040,
29871,
29946,
6166,
714,
263,
13173,
731,
310,
28648,
393,
1818,
367,
13,
23031,
287,
1434,
263,
5995,
424,
1122,
934,
11872,
335,
362,
408,
643,
1259,
16726,
1090,
278,
13,
2865,
29889,
739,
16410,
411,
4004,
29871,
29929,
29896,
29900,
29892,
607,
8128,
29892,
297,
8018,
760,
29901,
1346,
29925,
13479,
13,
517,
977,
292,
385,
3158,
2750,
738,
6263,
16831,
287,
304,
505,
26869,
304,
263,
13,
1403,
22671,
310,
278,
20801,
731,
11483,
297,
23040,
29871,
29906,
313,
510,
1527,
3277,
411,
13,
13438,
29871,
29947,
29929,
29953,
511,
278,
5995,
424,
4091,
14511,
403,
278,
1494,
758,
19411,
335,
362,
13,
771,
1133,
1973,
29901,
518,
30497,
29962,
313,
29874,
29897,
450,
5995,
424,
470,
670,
470,
902,
11706,
21097,
13,
845,
497,
3867,
3971,
8369,
3025,
2284,
2164,
10524,
29892,
975,
11147,
10524,
29892,
470,
13,
10532,
284,
28289,
304,
278,
12856,
29892,
297,
278,
8214,
2225,
23059,
297,
445,
13,
2042,
29892,
310,
278,
5995,
424,
30010,
29879,
5995,
393,
278,
7632,
310,
670,
470,
902,
13,
690,
5084,
5537,
1078,
738,
310,
278,
20801,
731,
11483,
297,
23040,
29871,
29906,
13,
29898,
510,
1527,
3277,
411,
9779,
29871,
29947,
29929,
29953,
467,
30024,
313,
10512,
1199,
2715,
1846,
13,
418,
450,
12856,
1818,
18145,
5485,
2414,
21278,
310,
278,
8369,
313,
30152,
29871,
29929,
29896,
29941,
511,
322,
13,
13029,
3546,
304,
16096,
278,
17049,
5537,
362,
310,
278,
20801,
322,
7512,
13,
13424,
29955,
313,
30152,
29871,
29929,
29896,
29953,
29892,
1014,
29881,
29889,
313,
29874,
8106,
960,
278,
12856,
938,
1975,
304,
4808,
263,
1014,
1285,
28891,
29892,
13,
13,
29953,
418,
1334,
4443,
393,
29892,
408,
278,
22569,
9245,
8900,
297,
4052,
19169,
262,
29892,
777,
310,
278,
13,
1689,
3163,
731,
11483,
297,
4004,
29871,
29947,
29929,
29953,
1346,
1509,
278,
3269,
362,
310,
18658,
408,
760,
310,
278,
13,
1688,
363,
3692,
263,
2183,
760,
338,
23503,
573,
3178,
313,
27297,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
472,
282,
29889,
13,
29906,
29945,
29941,
1846,
13,
13,
29955,
1678,
450,
12856,
1122,
7512,
263,
1473,
1663,
27988,
470,
6724,
565,
278,
12856,
13,
311,
1567,
372,
5181,
322,
3058,
5855,
526,
1539,
29889,
313,
30152,
29871,
29929,
29896,
29953,
29892,
1014,
29881,
29889,
313,
29883,
467,
29897,
13,
13,
13,
462,
462,
539,
29896,
29900,
13,
15,
13892,
10257,
29892,
5375,
3234,
12012,
9945,
29892,
470,
5518,
13,
19303,
4926,
14040,
363,
967,
11896,
304,
278,
5537,
362,
310,
278,
13,
1689,
3163,
29892,
278,
12856,
1818,
3867,
8369,
304,
393,
2022,
470,
7855,
13,
2146,
4543,
368,
297,
6564,
304,
2758,
963,
304,
14333,
278,
1663,
27988,
322,
13,
13424,
322,
304,
5221,
403,
297,
278,
26032,
1889,
29889,
313,
30152,
29871,
29929,
29896,
29953,
29892,
1014,
29881,
29889,
313,
29872,
467,
29897,
2860,
13,
1552,
1663,
27988,
470,
6724,
29892,
278,
12856,
1122,
5957,
297,
5007,
304,
26032,
278,
13,
1403,
22671,
29889,
29947,
450,
5957,
1818,
3160,
29892,
4249,
916,
2712,
29892,
263,
13173,
13,
20788,
24232,
278,
5469,
322,
6874,
310,
278,
26032,
29892,
411,
263,
13,
23147,
519,
13285,
2635,
363,
278,
26032,
29892,
322,
372,
1818,
22874,
403,
278,
13,
5184,
20348,
363,
599,
22903,
5625,
1179,
9792,
519,
1090,
278,
3185,
29889,
13,
29898,
30152,
29871,
29929,
29896,
29955,
1846,
450,
5957,
304,
26032,
1818,
884,
367,
21302,
491,
385,
5957,
304,
13,
13847,
278,
28447,
565,
278,
3271,
20348,
577,
3060,
15806,
29889,
313,
30152,
29871,
29929,
29896,
29929,
1846,
960,
278,
13,
5184,
20348,
12560,
29879,
278,
5957,
304,
14457,
403,
29892,
540,
470,
1183,
1818,
2845,
4148,
675,
13,
1552,
12856,
304,
8469,
411,
278,
26032,
29892,
470,
2009,
393,
278,
26032,
367,
13,
5729,
9446,
491,
385,
8671,
8078,
272,
10434,
491,
278,
3271,
20348,
297,
13,
5753,
536,
749,
411,
6790,
28648,
29889,
313,
30152,
29871,
29929,
29896,
29947,
1846,
960,
1612,
11685,
4893,
2058,
13,
4187,
8465,
304,
8814,
278,
28447,
29892,
278,
3271,
20348,
1818,
2758,
278,
26032,
304,
13,
915,
8560,
2845,
491,
278,
12856,
470,
491,
278,
8671,
8078,
272,
408,
13,
8391,
1090,
278,
28648,
731,
11483,
297,
4004,
29871,
29929,
29896,
29947,
29889,
313,
30152,
29871,
29929,
29896,
29929,
1846,
13,
418,
450,
5164,
13926,
310,
23040,
29871,
29946,
731,
931,
13071,
363,
599,
310,
278,
13,
547,
3707,
839,
29887,
4110,
29892,
451,
1575,
29892,
16688,
29892,
322,
1634,
7121,
731,
11483,
297,
278,
16385,
29889,
13,
3644,
278,
12856,
8465,
304,
18719,
322,
5335,
873,
752,
368,
411,
278,
11780,
29892,
13,
13,
13,
29947,
418,
450,
12856,
1122,
297,
278,
8671,
1207,
385,
5957,
310,
274,
1161,
322,
694,
26032,
13,
262,
14523,
363,
263,
6507,
29889,
512,
1316,
263,
1206,
29892,
278,
3271,
20348,
1122,
2845,
3544,
13,
1552,
5957,
470,
12560,
372,
322,
8469,
411,
977,
292,
385,
3158,
1090,
278,
3185,
29889,
313,
30152,
29871,
29929,
29906,
29929,
1846,
13,
13,
13,
462,
462,
4706,
29896,
29896,
13,
15,
1552,
5995,
424,
338,
5492,
515,
278,
11780,
310,
278,
16385,
322,
1122,
13,
771,
3947,
411,
278,
977,
292,
310,
385,
3158,
29889,
313,
30152,
30152,
29871,
29929,
29896,
29945,
29936,
29871,
29929,
29896,
29953,
29892,
1014,
29881,
29889,
313,
29883,
416,
29871,
29929,
29906,
29900,
29936,
29871,
29929,
29906,
29945,
1846,
13,
268,
960,
278,
28648,
731,
11483,
297,
23040,
29871,
29946,
437,
451,
8814,
278,
28447,
13,
14811,
278,
13973,
29892,
278,
5995,
424,
1122,
934,
385,
3158,
304,
427,
10118,
278,
916,
13,
305,
481,
2153,
310,
278,
3185,
29889,
313,
30152,
29871,
29929,
29896,
29946,
29892,
1014,
29881,
29889,
313,
29874,
467,
29897,
960,
278,
12856,
756,
11467,
304,
13,
3445,
1466,
278,
16831,
287,
5537,
362,
310,
278,
20801,
29892,
278,
5995,
424,
1122,
29892,
472,
278,
13,
5729,
12757,
310,
278,
26032,
29892,
934,
385,
3158,
363,
5537,
362,
310,
278,
22903,
13,
1689,
3163,
470,
363,
263,
5995,
310,
297,
1943,
339,
403,
26032,
29892,
470,
1716,
29892,
25738,
599,
13,
932,
506,
519,
5625,
1179,
3625,
1090,
278,
3185,
29889,
313,
30152,
29871,
29929,
29906,
29953,
1846,
2398,
29892,
1434,
13,
1182,
292,
292,
263,
1400,
29899,
3445,
1466,
3158,
29892,
278,
5995,
424,
1818,
2009,
1612,
11685,
565,
13,
12711,
471,
694,
3517,
1612,
11685,
1546,
278,
13973,
29889,
313,
30152,
29871,
29929,
29906,
29947,
1846,
960,
278,
13,
29883,
8342,
424,
947,
451,
15523,
278,
11780,
310,
23040,
29871,
29946,
29892,
278,
12856,
13,
13029,
6963,
263,
10884,
304,
7952,
738,
8973,
3158,
470,
916,
8469,
292,
2745,
13,
1552,
11780,
526,
15787,
29889,
313,
30152,
29871,
29929,
29941,
29900,
29892,
1014,
29881,
29889,
313,
29890,
467,
29897,
13,
13,
13,
965,
289,
29889,
1678,
5901,
1019,
1730,
1080,
310,
23040,
29871,
29946,
13,
268,
512,
6124,
304,
278,
13926,
9493,
292,
278,
758,
19411,
335,
362,
28648,
13,
5747,
1818,
367,
5643,
29892,
23040,
29871,
29946,
884,
7805,
1326,
12112,
3211,
292,
13,
5927,
681,
5626,
29892,
3704,
313,
294,
8018,
304,
445,
3158,
29897,
16726,
393,
14405,
13,
1113,
6394,
310,
3158,
451,
10664,
491,
278,
3185,
411,
1906,
393,
526,
10664,
13,
29898,
30152,
29871,
29929,
29941,
29896,
29897,
322,
13973,
4967,
304,
2280,
310,
278,
3185,
313,
30152,
29871,
29929,
29941,
29953,
467,
13,
268,
9779,
29871,
29929,
29941,
29896,
29892,
607,
591,
5353,
297,
901,
9493,
297,
760,
350,
29889,
29896,
29889,
310,
445,
13,
459,
262,
291,
29892,
1400,
29892,
8128,
393,
746,
263,
5995,
310,
7632,
23503,
29879,
13,
17743,
1475,
9946,
310,
3158,
470,
5625,
1179,
393,
526,
451,
10664,
491,
278,
3185,
13,
2541,
16726,
310,
1346,
348,
2527,
20801,
30024,
313,
29875,
29889,
29872,
1696,
5537,
800,
310,
697,
470,
901,
310,
278,
13,
2042,
29871,
29947,
29929,
29953,
20801,
322,
29914,
272,
4004,
29871,
29947,
29929,
29955,
29897,
1090,
278,
3185,
29892,
278,
16726,
310,
13,
13,
462,
462,
418,
29896,
29906,
13,
15,
348,
2527,
20801,
1818,
367,
4113,
1531,
287,
297,
15017,
749,
411,
278,
3185,
29889,
13,
13438,
29871,
29929,
29941,
29953,
8128,
29892,
408,
8018,
304,
445,
1206,
29892,
393,
599,
310,
278,
1326,
12112,
13,
974,
278,
916,
10708,
2153,
310,
278,
3185,
3394,
304,
2498,
8078,
943,
29892,
13,
1491,
1285,
1461,
943,
29892,
5518,
1462,
27801,
29892,
5375,
3234,
12012,
332,
414,
29892,
13,
392,
2874,
6351,
1338,
304,
278,
15834,
393,
1906,
2305,
470,
16212,
13,
1113,
3880,
29892,
297,
3353,
470,
297,
760,
29892,
263,
5537,
362,
310,
697,
310,
278,
20801,
408,
278,
13,
2914,
310,
263,
3480,
3473,
296,
1044,
470,
2703,
2333,
470,
263,
2078,
496,
310,
8078,
29889,
13,
13,
13,
418,
29941,
29889,
1678,
23040,
29871,
29945,
13,
268,
23040,
29871,
29945,
6166,
11483,
278,
28648,
363,
11872,
335,
362,
1090,
278,
3185,
29889,
13,
1576,
16385,
7805,
13926,
373,
278,
1002,
1082,
310,
29485,
363,
1316,
13,
7387,
313,
30152,
29871,
29929,
29946,
29896,
511,
3161,
310,
263,
5995,
363,
5537,
362,
310,
278,
23040,
29871,
29906,
13,
1689,
3163,
313,
30152,
29871,
29929,
29946,
29906,
518,
517,
10127,
263,
5995,
29892,
278,
3271,
20348,
817,
871,
13,
2310,
265,
710,
403,
393,
278,
3271,
947,
451,
5870,
278,
22903,
3918,
29936,
1346,
29961,
29876,
29962,
29877,
13,
22613,
721,
6445,
310,
3269,
362,
470,
5625,
1179,
338,
3734,
304,
5870,
278,
6866,
1145,
13,
974,
5296,
30024,
11724,
322,
3625,
2756,
3568,
1230,
822,
11259,
313,
30152,
29871,
29929,
29946,
29945,
29889,
29945,
467,
13,
268,
450,
16385,
884,
7805,
263,
4004,
4444,
11483,
278,
13489,
2068,
310,
29892,
13,
392,
15283,
304,
29892,
278,
3185,
29901,
1346,
1252,
1547,
408,
4944,
297,
445,
3611,
29892,
694,
916,
13,
29883,
1071,
310,
3158,
363,
263,
5995,
10664,
491,
445,
3611,
470,
363,
5625,
1179,
13,
3757,
957,
519,
1090,
9779,
29871,
29929,
29946,
29946,
338,
6068,
29889,
512,
6124,
304,
278,
10462,
13,
5062,
445,
3611,
29892,
445,
3611,
947,
451,
3394,
304,
738,
3158,
491,
263,
5995,
424,
304,
13,
264,
10118,
263,
8078,
470,
4653,
8078,
950,
25161,
29892,
470,
738,
3158,
363,
13,
20910,
566,
29892,
7333,
24092,
29892,
470,
5537,
362,
310,
263,
1002,
1082,
3178,
313,
30152,
29871,
29929,
29946,
29941,
29892,
1014,
29881,
29889,
313,
29874,
467,
29897,
13,
268,
9788,
29892,
23040,
29871,
29945,
7805,
263,
4004,
4444,
11483,
278,
5625,
1179,
13,
3757,
957,
519,
1090,
278,
3185,
29901,
1346,
3644,
263,
5995,
363,
5625,
1179,
338,
1754,
1090,
445,
13,
3257,
29892,
278,
3271,
20348,
338,
871,
23437,
304,
5625,
1179,
363,
278,
15590,
13,
13,
462,
462,
418,
29896,
29941,
13,
15,
1767,
310,
26032,
292,
738,
5537,
362,
310,
278,
20801,
731,
11483,
297,
445,
3611,
29892,
13,
1552,
15590,
3438,
310,
26032,
292,
738,
5625,
1179,
8581,
491,
278,
26032,
13,
12352,
441,
29879,
29892,
278,
15590,
3438,
310,
26032,
292,
322,
7705,
9215,
738,
5625,
1179,
13,
2914,
292,
515,
278,
10672,
310,
278,
3271,
304,
5870,
278,
20801,
29892,
278,
13,
23147,
519,
3438,
310,
11077,
322,
15270,
738,
4857,
546,
26032,
491,
278,
13,
16409,
29892,
15590,
337,
5479,
322,
8635,
1518,
11259,
29892,
5714,
5381,
13,
262,
2763,
565,
278,
3271,
471,
1304,
408,
263,
5882,
2058,
310,
263,
5381,
7794,
21144,
13,
517,
367,
19623,
515,
278,
3271,
29892,
15590,
7405,
1230,
21544,
363,
1269,
13,
342,
370,
3726,
5537,
362,
29892,
322,
599,
916,
21544,
470,
1238,
267,
9792,
519,
491,
8078,
13,
272,
1002,
1082,
3178,
313,
30152,
29871,
29929,
29946,
29946,
1846,
13,
13,
13,
29933,
29889,
259,
4134,
319,
1953,
7634,
278,
3185,
13,
268,
2973,
445,
1002,
329,
706,
11380,
297,
3458,
29892,
591,
2507,
304,
278,
1139,
13,
6338,
287,
297,
445,
1206,
29901,
2610,
263,
5995,
363,
5537,
362,
310,
3058,
20801,
13,
5062,
278,
3185,
8581,
491,
385,
16831,
287,
23503,
297,
715,
3774,
292,
5713,
486,
1973,
367,
13,
1182,
1774,
2750,
278,
12012,
9945,
310,
278,
5713,
486,
1973,
297,
263,
770,
3158,
29973,
1763,
13,
12011,
445,
1139,
29892,
591,
1369,
411,
385,
4392,
3381,
310,
4004,
29871,
29929,
29941,
29896,
29892,
278,
13,
6194,
25161,
310,
278,
3185,
393,
26649,
770,
8820,
29889,
13,
13,
13,
418,
29896,
29889,
1678,
9779,
29871,
29929,
29941,
29896,
13,
268,
9779,
29871,
29929,
29941,
29896,
8128,
297,
2989,
29901,
1346,
3644,
263,
5995,
4145,
1475,
9946,
310,
3158,
13,
272,
5625,
1179,
451,
10664,
491,
445,
760,
29892,
3704,
29892,
1728,
29485,
29892,
13,
10532,
284,
10899,
14886,
29892,
770,
8820,
29892,
916,
1002,
329,
706,
1083,
287,
583,
29892,
470,
5227,
566,
29899,
13,
6707,
16726,
29892,
278,
17049,
443,
2527,
20801,
4091,
367,
4113,
1531,
287,
13,
5753,
3278,
304,
445,
760,
29892,
5998,
10757,
310,
278,
2875,
297,
967,
13,
348,
276,
3274,
2859,
4195,
1122,
367,
9129,
304,
2304,
278,
18067,
13,
13,
462,
462,
418,
29896,
29946,
13,
15,
17664,
310,
738,
1316,
4556,
310,
3158,
29889,
1094,
304,
738,
5227,
566,
29899,
6707,
5995,
29892,
565,
13,
1552,
2114,
393,
278,
2875,
756,
1063,
1634,
29874,
2859,
1090,
445,
16385,
338,
13,
311,
22580,
7336,
790,
1821,
29892,
278,
3367,
261,
310,
2114,
4091,
367,
23388,
393,
278,
26032,
13,
11102,
451,
27081,
6275,
9259,
491,
278,
3271,
20348,
29889,
1094,
304,
738,
770,
3158,
13,
29883,
8342,
29879,
393,
3211,
14419,
368,
278,
11039,
362,
310,
263,
23503,
573,
4163,
13,
8941,
263,
25488,
29892,
278,
4257,
322,
443,
17514,
770,
5144,
817,
451,
13,
2388,
368,
411,
445,
16385,
3178,
13,
268,
1670,
338,
694,
1139,
393,
278,
4086,
310,
445,
4004,
338,
10579,
13,
711,
29873,
1509,
29889,
8512,
967,
18378,
6593,
756,
451,
1063,
472,
2228,
297,
4251,
13,
7099,
2618,
491,
278,
28033,
310,
445,
4306,
701,
304,
445,
1298,
29892,
278,
22569,
9245,
13,
392,
916,
28033,
6892,
505,
24774,
278,
937,
10541,
310,
4004,
29871,
29929,
29941,
29896,
13,
517,
3867,
263,
313,
9290,
29916,
7009,
573,
29897,
1051,
310,
13489,
1080,
515,
278,
3185,
29889,
313,
13393,
29892,
321,
29889,
29887,
1696,
13,
27297,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
472,
6499,
29889,
29871,
29906,
29945,
29906,
29892,
29871,
29906,
29945,
29946,
29936,
28047,
16853,
325,
29889,
22389,
313,
29906,
29900,
29896,
29955,
29897,
29871,
29896,
29896,
13,
7856,
29889,
2052,
29889,
29945,
386,
29871,
29947,
29955,
29945,
29892,
29871,
29947,
29929,
29900,
29892,
29871,
29947,
29929,
29941,
1846,
2193,
1051,
310,
13489,
1080,
338,
4944,
297,
278,
13,
4703,
310,
24232,
278,
2280,
310,
278,
3185,
297,
263,
4307,
29658,
393,
13,
24572,
1716,
16726,
1090,
278,
3185,
16831,
292,
5537,
800,
310,
278,
4004,
29871,
29947,
29929,
29953,
13,
392,
29914,
272,
4004,
29871,
29947,
29929,
29955,
20801,
322,
16726,
393,
526,
1346,
1333,
10664,
491,
30024,
813,
29875,
29889,
29872,
1696,
13,
735,
13347,
515,
30003,
1552,
3185,
29889,
9779,
29871,
29929,
29941,
29896,
18568,
393,
278,
758,
19411,
335,
362,
13,
771,
1133,
1973,
1818,
367,
5643,
411,
4880,
304,
278,
16726,
1090,
278,
3185,
29892,
13,
4187,
1906,
28648,
437,
451,
3394,
304,
16726,
393,
526,
5377,
310,
278,
3185,
29892,
13,
19057,
310,
607,
526,
9904,
29889,
13,
268,
3118,
310,
278,
9904,
13489,
1080,
338,
1346,
1990,
8820,
3178,
5806,
445,
5692,
13,
271,
937,
21798,
304,
367,
385,
443,
14727,
681,
429,
10085,
310,
770,
8820,
297,
278,
13,
4102,
10541,
310,
4004,
29871,
29929,
29941,
29896,
29892,
22363,
537,
338,
9129,
746,
278,
937,
13,
18616,
663,
338,
1303,
297,
9589,
651,
411,
278,
1833,
10541,
29901,
1346,
2887,
304,
738,
770,
13,
2467,
16726,
393,
3211,
14419,
368,
278,
11039,
362,
310,
263,
23503,
573,
13,
13,
462,
462,
268,
29896,
29945,
13,
15,
9700,
964,
263,
25488,
29892,
278,
4257,
322,
443,
17514,
770,
5144,
13,
26180,
451,
752,
368,
411,
445,
16385,
518,
29875,
29889,
29872,
1696,
278,
758,
19411,
335,
362,
28648,
1822,
30024,
13,
4013,
10541,
2444,
304,
4368,
393,
472,
3203,
777,
770,
8820,
526,
13,
24622,
1090,
278,
3185,
29889,
1105,
920,
437,
591,
8265,
21873,
1438,
2833,
11687,
13,
9996,
328,
919,
706,
25260,
297,
278,
1021,
1002,
1082,
29973,
13,
268,
13494,
524,
28324,
640,
355,
393,
29892,
15020,
278,
28694,
310,
770,
8820,
373,
13,
1552,
1051,
310,
13489,
1080,
29892,
278,
937,
10541,
310,
278,
1002,
1082,
2609,
367,
13,
1639,
1457,
9446,
304,
19060,
770,
8820,
408,
643,
1259,
16726,
1090,
278,
3185,
13,
18103,
263,
770,
3158,
338,
9561,
263,
4556,
310,
3158,
3643,
263,
883,
310,
13,
16846,
1179,
29936,
3265,
29892,
1346,
277,
338,
263,
6449,
3631,
19716,
363,
24555,
3277,
20446,
573,
13,
10653,
3178,
313,
29907,
11407,
4412,
310,
3087,
5043,
325,
29889,
5670,
1611,
9245,
313,
29896,
29929,
29955,
29946,
29897,
29871,
29896,
29906,
3037,
29889,
29941,
29881,
29871,
29946,
29946,
29955,
29892,
13,
29946,
29953,
29906,
1846,
6549,
29892,
896,
27754,
393,
278,
28694,
310,
770,
8820,
297,
278,
1051,
13,
1050,
873,
2794,
393,
278,
3185,
947,
451,
4612,
9946,
310,
8820,
363,
7333,
13,
262,
29926,
14886,
29892,
5227,
566,
29899,
6707,
16726,
29892,
470,
916,
1002,
329,
706,
9946,
310,
3158,
29892,
470,
770,
13,
7387,
408,
643,
1259,
1906,
9946,
310,
3158,
29889,
2688,
640,
355,
278,
1833,
10541,
13,
276,
262,
1454,
778,
393,
19854,
1363,
372,
9004,
1078,
393,
278,
3185,
13,
7716,
666,
1078,
278,
671,
310,
770,
3158,
28648,
304,
6963,
16726,
1090,
278,
13,
2865,
322,
16089,
277,
1078,
278,
671,
310,
278,
8792,
491,
11324,
4357,
278,
758,
19411,
335,
362,
13,
12277,
1860,
29889,
13,
268,
28590,
1358,
640,
1975,
278,
25260,
526,
451,
27877,
706,
29889,
739,
1852,
1041,
13,
5747,
278,
937,
10541,
310,
278,
1002,
1082,
429,
27722,
599,
770,
8820,
363,
738,
13,
29883,
8342,
1090,
278,
3185,
29892,
1550,
278,
1833,
10541,
14637,
304,
770,
8820,
363,
13,
29883,
8342,
29879,
393,
526,
5377,
310,
278,
3185,
29889,
739,
9590,
393,
1363,
278,
4086,
13,
3880,
297,
278,
1833,
10541,
338,
577,
2788,
304,
278,
4086,
1304,
297,
278,
13,
13,
13,
13,
13,
462,
462,
418,
29896,
29953,
13,
15,
735,
10085,
731,
11483,
297,
4004,
29871,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
29897,
29929,
813,
20313,
2737,
304,
16726,
1346,
2170,
368,
30024,
13,
1454,
263,
23503,
573,
4163,
470,
12012,
2955,
3234,
30003,
1552,
1833,
10541,
13,
21969,
367,
11098,
304,
367,
16811,
304,
278,
1021,
16726,
29889,
1126,
29892,
1951,
13,
2042,
29871,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
29897,
429,
27722,
1906,
16726,
515,
5858,
310,
278,
3185,
29892,
278,
13,
4230,
10541,
310,
4004,
29871,
29929,
29941,
29896,
1818,
367,
11098,
304,
2737,
304,
16726,
393,
13,
598,
5377,
278,
3185,
29889,
13,
418,
1334,
22941,
929,
411,
1716,
13973,
30010,
6613,
800,
310,
4004,
29871,
29929,
29941,
29896,
29889,
13,
418,
1334,
22941,
929,
411,
2174,
524,
28324,
30010,
19854,
1363,
372,
5330,
2361,
278,
13,
19304,
4086,
1304,
297,
278,
1002,
1082,
29889,
313,
2517,
9765,
332,
414,
4634,
13377,
29889,
3189,
29889,
325,
29889,
13,
19111,
1611,
9245,
313,
29896,
29929,
29929,
29945,
29897,
29871,
29896,
29900,
3037,
29889,
29946,
386,
29871,
29906,
29945,
29955,
29892,
29871,
29906,
29955,
29946,
518,
8256,
5133,
1259,
263,
1002,
1082,
29892,
13,
1552,
8973,
2609,
1346,
7851,
825,
756,
1063,
25811,
29892,
470,
869,
869,
869,
288,
2415,
825,
756,
13,
915,
264,
15478,
3995,
322,
1346,
21969,
2367,
26002,
304,
1432,
760,
310,
263,
1002,
1082,
304,
13,
496,
2418,
278,
13332,
1230,
6437,
30024,
1822,
29897,
5806,
372,
338,
1565,
393,
770,
8820,
526,
13,
484,
2121,
9946,
310,
3158,
3643,
263,
883,
310,
5625,
1179,
29892,
591,
14111,
393,
9946,
13,
974,
3158,
393,
526,
4974,
287,
297,
770,
8820,
4049,
526,
12992,
304,
408,
1346,
1990,
13,
2467,
16726,
3178,
1126,
2183,
278,
22435,
9696,
322,
527,
17990,
895,
671,
310,
278,
13,
357,
1516,
1346,
1113,
6394,
310,
3158,
30024,
322,
1346,
29883,
8342,
29879,
30024,
10106,
278,
3185,
313,
4149,
7255,
21408,
13,
29963,
2079,
8778,
776,
414,
4007,
29876,
29889,
325,
29889,
341,
22119,
29892,
9266,
29889,
313,
29906,
29900,
29896,
29955,
29897,
29871,
29955,
3037,
29889,
2052,
29889,
29945,
386,
29871,
29896,
29896,
29906,
29929,
29892,
29871,
29896,
29896,
29946,
29945,
511,
13,
277,
338,
451,
26800,
393,
278,
4086,
1304,
297,
4004,
29871,
29929,
29941,
29896,
338,
527,
17990,
895,
29889,
13,
4806,
437,
451,
4658,
393,
278,
671,
310,
445,
527,
17990,
895,
4086,
9004,
1078,
13,
273,
7609,
304,
7539,
770,
8820,
17587,
1135,
278,
916,
4452,
373,
278,
13,
13,
29929,
268,
9779,
29871,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
29897,
8128,
29901,
1346,
4013,
3611,
947,
451,
3394,
297,
738,
3158,
13,
344,
1416,
292,
24205,
14419,
368,
363,
263,
23503,
297,
263,
12012,
2955,
3234,
5982,
2629,
13,
272,
20114,
304,
263,
3829,
3178,
450,
1833,
10541,
310,
4004,
29871,
29929,
29941,
29896,
8128,
29901,
1346,
2887,
304,
13,
1384,
770,
3158,
16726,
393,
3211,
14419,
368,
278,
11039,
362,
310,
263,
23503,
573,
13,
9700,
964,
263,
25488,
29892,
278,
4257,
322,
443,
17514,
770,
5144,
817,
451,
13,
2388,
368,
411,
445,
16385,
3178,
13,
13,
13,
462,
462,
418,
29896,
29955,
13,
15,
1761,
310,
13489,
1080,
297,
278,
937,
10541,
310,
4004,
29871,
29929,
29941,
29896,
363,
11976,
310,
13,
1639,
1457,
1259,
278,
1002,
329,
706,
4086,
29889,
313,
13393,
27558,
273,
325,
29889,
4702,
1270,
3082,
13,
29934,
2147,
15967,
313,
29906,
29900,
29900,
29941,
29897,
29871,
29941,
29896,
3037,
29889,
29946,
386,
29871,
29955,
29900,
29929,
29892,
29871,
29955,
29896,
29945,
518,
30015,
11284,
29899,
342,
370,
3726,
6865,
310,
13,
6112,
329,
706,
7632,
1996,
502,
304,
408,
14082,
278,
7609,
310,
278,
427,
627,
292,
13,
1397,
7497,
1230,
3573,
577,
393,
591,
1122,
9332,
278,
7632,
393,
1900,
13,
15987,
29884,
1078,
278,
6437,
310,
278,
4307,
30024,
1822,
29897,
13,
268,
12808,
29892,
2174,
524,
28324,
30010,
19854,
310,
278,
937,
10541,
3732,
694,
13,
29879,
1947,
29889,
14302,
278,
18991,
1535,
9146,
278,
19854,
2174,
524,
28324,
2367,
13,
1552,
10541,
29892,
1480,
1711,
372,
723,
505,
7180,
1346,
1990,
8820,
30024,
472,
278,
1095,
310,
13,
1552,
4452,
373,
278,
1051,
310,
13489,
1080,
29892,
3265,
1135,
297,
278,
7256,
310,
278,
1051,
29892,
13,
2541,
4086,
4021,
9215,
393,
1346,
1990,
8820,
30024,
2794,
871,
1906,
8820,
13,
9294,
292,
278,
3517,
4452,
9904,
29889,
1126,
297,
738,
1741,
29892,
727,
723,
367,
13,
1217,
2769,
363,
278,
18991,
1535,
304,
6084,
393,
278,
3185,
947,
451,
4612,
770,
13,
7387,
393,
4974,
16726,
393,
526,
451,
10664,
491,
278,
3185,
29889,
960,
278,
16726,
13,
386,
1567,
295,
1960,
526,
451,
10664,
491,
278,
3185,
29892,
738,
6449,
3631,
9224,
12891,
13,
16515,
5377,
310,
278,
3185,
29892,
1316,
408,
770,
8820,
29892,
12695,
526,
13,
16515,
411,
4880,
304,
1906,
16726,
29889,
13,
268,
28590,
1358,
30010,
29879,
19854,
310,
278,
937,
10541,
310,
4004,
29871,
29929,
29941,
29896,
30003,
29875,
29889,
29872,
1696,
13,
5747,
372,
429,
27722,
599,
770,
8820,
30003,
15189,
3732,
2217,
4060,
1363,
372,
13,
5527,
506,
1372,
411,
278,
1833,
10541,
310,
278,
1002,
1082,
29889,
8512,
28590,
1358,
14335,
304,
13,
276,
535,
21873,
278,
20295,
14529,
491,
1852,
26420,
393,
278,
1833,
10541,
14637,
13,
6194,
304,
16726,
393,
526,
429,
13347,
515,
278,
3185,
1090,
4004,
29871,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
511,
13,
1169,
19854,
310,
393,
10541,
338,
17422,
8734,
363,
1023,
9590,
29889,
13,
268,
3824,
29892,
28590,
1358,
30010,
29879,
19854,
5330,
2361,
278,
12187,
4328,
13,
14811,
278,
4086,
310,
278,
1023,
1002,
2667,
29889,
450,
4004,
29871,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
29897,
13,
735,
10085,
16058,
304,
16726,
1346,
2170,
368,
363,
263,
23503,
297,
263,
12012,
2955,
13,
13,
462,
462,
418,
29896,
29947,
13,
15,
4704,
30024,
1304,
297,
278,
7632,
310,
278,
25488,
322,
429,
27722,
1906,
13,
29883,
8342,
29879,
515,
278,
3185,
9186,
313,
30152,
29871,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
511,
4698,
1199,
2715,
511,
1550,
278,
1833,
13,
18616,
663,
310,
4004,
29871,
29929,
29941,
29896,
1104,
17180,
5995,
1934,
515,
278,
758,
19411,
335,
362,
13,
12277,
1860,
310,
23040,
29871,
29946,
310,
278,
3185,
363,
770,
3158,
16726,
2729,
1346,
2170,
368,
13,
29961,
265,
29962,
278,
11039,
362,
310,
263,
23503,
573,
4163,
964,
263,
25488,
30024,
313,
30152,
29871,
29929,
29941,
29896,
29892,
13,
2410,
1199,
2715,
1846,
319,
1346,
9700,
30024,
338,
451,
278,
1021,
2655,
408,
263,
1346,
1171,
9765,
2955,
13,
4704,
3178,
450,
1840,
1346,
9700,
30024,
408,
1304,
297,
278,
3185,
1122,
3160,
263,
13,
30015,
1171,
9765,
2955,
3234,
3995,
541,
372,
338,
451,
9078,
304,
12012,
2955,
9316,
29889,
13,
2568,
12613,
29892,
727,
526,
1784,
17690,
310,
7117,
16180,
297,
4004,
29871,
29947,
29929,
29953,
29889,
13,
29898,
13393,
29892,
321,
29889,
29887,
1696,
16683,
29871,
29947,
29929,
29953,
29892,
1014,
6289,
29889,
313,
29874,
5033,
29946,
29897,
518,
30015,
9588,
974,
29879,
29892,
17526,
292,
6757,
29892,
20674,
3801,
26091,
29892,
13,
392,
9712,
8634,
7117,
30024,
1402,
313,
29896,
29900,
29897,
518,
30015,
855,
29884,
26454,
29892,
25591,
269,
4821,
29892,
25591,
13,
29893,
4293,
29892,
869,
869,
869,
322,
916,
25591,
10090,
8341,
267,
322,
5713,
486,
1973,
322,
278,
6757,
13,
974,
1906,
7117,
322,
5713,
486,
1973,
30024,
1402,
313,
29890,
5033,
29896,
29897,
518,
30015,
9692,
800,
29892,
2254,
24638,
13,
14036,
29892,
322,
2243,
6897,
30024,
1402,
313,
29887,
5033,
29929,
29897,
518,
30015,
29965,
593,
276,
630,
22973,
285,
2063,
322,
20114,
13,
14036,
30024,
1822,
29897,
20175,
29892,
4004,
29871,
29929,
29900,
29900,
29892,
607,
14157,
9078,
13,
29893,
2749,
424,
583,
393,
1818,
367,
4944,
304,
4612,
278,
6216,
322,
8341,
310,
3058,
13,
30015,
25237,
7117,
3995,
6166,
11483,
263,
1051,
310,
1906,
7117,
29892,
607,
13,
24572,
4452,
393,
1795,
367,
1346,
1171,
9765,
2955,
9316,
30024,
408,
3342,
297,
13,
2042,
29871,
29947,
29929,
29953,
29892,
1014,
4563,
2459,
313,
29887,
5033,
29941,
5033,
29907,
511,
408,
1532,
408,
4452,
393,
9436,
723,
13,
1333,
29889,
313,
30152,
29871,
29929,
29900,
29900,
518,
1761,
292,
1346,
29883,
370,
262,
1691,
29892,
19571,
29879,
29892,
5685,
8253,
29892,
13290,
322,
25591,
13,
29893,
4293,
29892,
6795,
3332,
29879,
29892,
10675,
8341,
267,
29892,
322,
17151,
30024,
1822,
29897,
6549,
29892,
21138,
304,
13,
29968,
1148,
1358,
30010,
29879,
28306,
29892,
278,
16726,
12992,
304,
297,
278,
1833,
10541,
310,
4004,
13,
29929,
29941,
29896,
526,
451,
9186,
278,
1021,
408,
278,
16726,
12992,
304,
297,
4004,
13,
29947,
29929,
29953,
29898,
29887,
5033,
29941,
5033,
29923,
467,
13,
268,
6440,
29892,
28590,
1358,
30010,
29879,
19854,
310,
278,
1833,
10541,
310,
4004,
29871,
29929,
29941,
29896,
13,
29893,
483,
4050,
393,
10541,
2428,
1579,
17269,
29889,
4001,
278,
3185,
947,
451,
3394,
472,
13,
13,
462,
462,
418,
29896,
29929,
13,
15,
497,
304,
16726,
2729,
14419,
368,
373,
263,
23503,
297,
263,
12012,
2955,
3234,
29892,
727,
13,
275,
694,
2769,
363,
278,
18991,
1535,
304,
6084,
393,
23040,
29871,
29946,
310,
278,
3185,
947,
13,
1333,
3394,
304,
1906,
429,
13347,
16726,
565,
896,
526,
6296,
408,
770,
8820,
29889,
13,
268,
1724,
29892,
769,
29892,
526,
591,
304,
1207,
310,
278,
1833,
10541,
310,
4004,
29871,
29929,
29941,
29896,
29973,
13,
29925,
433,
524,
28324,
640,
355,
393,
445,
10541,
1580,
11057,
393,
770,
8820,
526,
13,
24622,
322,
11324,
3145,
278,
758,
19411,
335,
362,
28648,
363,
1906,
16726,
29889,
1205,
13,
10646,
1449,
29892,
2174,
524,
28324,
30010,
19854,
5330,
2361,
278,
1002,
329,
706,
4086,
29889,
13,
4806,
8661,
393,
278,
4086,
310,
278,
1833,
10541,
1033,
29892,
746,
1303,
297,
13,
275,
22671,
29892,
367,
21551,
304,
2099,
393,
770,
8820,
6892,
526,
13,
24622,
363,
16726,
1090,
278,
3185,
29889,
1205,
278,
281,
1794,
369,
310,
278,
758,
19411,
335,
362,
13,
771,
1133,
1973,
25161,
2609,
367,
21551,
304,
3394,
304,
599,
770,
8820,
13,
18103,
967,
8656,
4086,
5922,
393,
372,
16058,
871,
408,
304,
263,
2702,
13,
7320,
310,
770,
3158,
16726,
29901,
1906,
1346,
5747,
3211,
14419,
368,
278,
13,
262,
2616,
1971,
362,
310,
263,
23503,
573,
4163,
964,
263,
25488,
3178,
313,
30152,
29871,
29929,
29941,
29896,
1846,
739,
338,
13,
309,
1188,
936,
304,
17668,
393,
278,
18991,
1535,
9146,
278,
1833,
10541,
304,
13,
735,
29883,
895,
278,
429,
10085,
310,
770,
8820,
11122,
297,
278,
937,
10541,
310,
13,
1552,
1002,
1082,
29892,
322,
884,
9146,
304,
11324,
573,
278,
758,
19411,
335,
362,
28648,
363,
13,
5372,
770,
3158,
16726,
313,
386,
852,
393,
3211,
14419,
368,
278,
11039,
362,
310,
13,
29874,
23503,
573,
4163,
964,
263,
25488,
511,
541,
451,
599,
770,
3158,
16726,
29889,
13,
3379,
1479,
29892,
278,
901,
16667,
19854,
338,
393,
278,
1833,
10541,
29892,
13,
26492,
297,
442,
3730,
3971,
29892,
1559,
1960,
714,
263,
9078,
3682,
304,
278,
13,
735,
10085,
310,
770,
8820,
30003,
1454,
1346,
29883,
8342,
29879,
393,
3211,
14419,
368,
278,
13,
262,
2616,
1971,
362,
310,
263,
23503,
573,
4163,
964,
263,
25488,
30024,
313,
30152,
29871,
29929,
29941,
29896,
29897,
30003,
392,
13,
2766,
3145,
278,
758,
19411,
335,
362,
28648,
363,
1906,
770,
3158,
16726,
29889,
313,
13393,
13,
7856,
6557,
423,
341,
1341,
29879,
29889,
4007,
29876,
29889,
325,
29889,
5236,
22310,
1907,
422,
29889,
313,
29896,
29929,
29955,
29929,
29897,
29871,
29906,
29946,
3037,
29889,
29941,
29881,
29871,
29947,
29941,
29953,
29892,
29871,
29947,
29946,
29946,
13,
13,
13,
13,
462,
462,
268,
29906,
29900,
13,
15,
29961,
30015,
4074,
19819,
573,
6787,
1953,
607,
4050,
777,
3838,
1190,
11242,
482,
29892,
822,
29891,
13,
9435,
4060,
29892,
470,
3275,
304,
286,
783,
2575,
470,
6425,
18245,
537,
29892,
526,
304,
367,
28305,
30024,
1822,
29897,
13,
13,
13,
539,
29906,
29889,
1678,
18991,
1230,
5298,
322,
15247,
4220,
310,
278,
3185,
13,
418,
450,
13332,
1230,
4955,
322,
6437,
310,
278,
3185,
408,
263,
3353,
2304,
13,
473,
15997,
393,
278,
770,
3158,
4742,
1122,
451,
367,
1304,
304,
410,
3471,
1082,
13,
29883,
8342,
29879,
1090,
278,
3185,
29892,
411,
697,
1407,
12474,
3682,
29889,
13,
418,
1932,
427,
627,
292,
278,
3185,
29892,
278,
18991,
1535,
8052,
393,
1346,
29961,
29873,
29962,
354,
13,
14032,
415,
322,
6534,
10104,
310,
7632,
23503,
16726,
338,
297,
278,
13,
1639,
342,
310,
11233,
414,
29892,
3271,
776,
414,
29892,
322,
278,
2048,
414,
310,
17774,
29892,
322,
338,
13,
29894,
2410,
304,
278,
2106,
30010,
29879,
3133,
292,
14321,
322,
27131,
537,
29889,
2398,
29892,
1090,
13,
3784,
28648,
322,
20801,
29892,
3271,
776,
414,
322,
2048,
414,
394,
9345,
526,
13,
1333,
21750,
287,
278,
15130,
363,
4996,
322,
6534,
10104,
310,
16726,
29889,
13,
29933,
720,
817,
2821,
20801,
322,
7208,
12903,
363,
278,
9508,
10104,
310,
13,
29883,
8342,
29879,
29889,
518,
30497,
29962,
869,
869,
869,
739,
338,
278,
7609,
310,
278,
18991,
1535,
393,
445,
1044,
11157,
13,
1552,
28648,
363,
278,
17517,
310,
7631,
15426,
29892,
3704,
13,
1689,
3163,
322,
28648,
363,
4688,
27963,
310,
7632,
23503,
29879,
3178,
13,
29898,
25060,
29889,
29871,
29906,
29900,
29900,
29906,
29892,
521,
29889,
29871,
29955,
29906,
29906,
29892,
16683,
29871,
29896,
29892,
282,
29889,
29871,
29946,
29906,
29946,
29955,
1846,
13,
418,
512,
967,
7418,
310,
18148,
6682,
1939,
29889,
29871,
29947,
29900,
29900,
29892,
607,
2825,
278,
3185,
29892,
278,
13,
29903,
264,
403,
8660,
1654,
653,
12930,
8900,
393,
1346,
29961,
29873,
29962,
354,
11118,
1074,
2039,
304,
10049,
13,
517,
21838,
13384,
491,
263,
1353,
310,
13973,
29889,
450,
11118,
10049,
29879,
304,
13,
535,
29883,
824,
29879,
515,
3271,
776,
414,
322,
278,
2138,
4680,
6212,
272,
484,
952,
310,
8046,
13,
957,
278,
27721,
310,
319,
294,
21939,
13159,
336,
26073,
29871,
29906,
29946,
3037,
29889,
29946,
386,
29871,
29953,
29906,
29955,
29892,
607,
4934,
393,
13,
1753,
522,
29879,
1818,
4556,
3935,
18658,
470,
7333,
24092,
7536,
304,
1641,
13,
2467,
519,
297,
16263,
29889,
450,
11118,
884,
10049,
29879,
304,
21838,
13384,
491,
13,
4282,
414,
29892,
1014,
1285,
1461,
943,
29892,
322,
1663,
332,
414,
975,
278,
21544,
310,
7632,
13,
13,
462,
462,
308,
29906,
29896,
13,
15,
1753,
522,
11872,
335,
362,
518,
392,
967,
29962,
10879,
373,
27261,
21544,
297,
278,
2106,
3178,
313,
29903,
264,
29889,
13,
1523,
29889,
373,
8660,
1654,
653,
29892,
24352,
310,
5811,
29889,
6682,
1939,
29889,
29871,
29947,
29900,
29900,
313,
29906,
29900,
29900,
29896,
29899,
29906,
29900,
29900,
29906,
2169,
29889,
317,
404,
1846,
13,
294,
626,
2760,
22333,
29889,
29871,
29906,
29947,
29892,
29871,
29906,
29900,
29900,
29906,
29892,
6499,
29889,
29871,
29941,
29899,
29946,
1846,
13,
268,
450,
18148,
8660,
1654,
653,
12930,
7418,
10824,
920,
278,
11118,
30010,
29879,
13,
342,
370,
1674,
358,
310,
20801,
322,
527,
3283,
310,
619,
3097,
363,
5537,
800,
310,
13,
386,
852,
20801,
723,
21092,
278,
10104,
310,
8937,
267,
975,
1784,
13,
3075,
4080,
23503,
29879,
29889,
313,
29903,
264,
29889,
422,
29889,
373,
8660,
1654,
653,
29892,
24352,
310,
5811,
29889,
6682,
1939,
29889,
13,
29947,
29900,
29900,
313,
29906,
29900,
29900,
29896,
29899,
29906,
29900,
29900,
29906,
2169,
29889,
317,
404,
1846,
408,
626,
2760,
22333,
29889,
29871,
29906,
29947,
29892,
29871,
29906,
29900,
29900,
29906,
29892,
282,
29889,
29871,
29946,
1846,
450,
13,
15916,
884,
10824,
278,
10879,
310,
278,
11118,
373,
2048,
414,
322,
1009,
13,
3470,
2638,
1078,
29901,
1346,
1576,
11118,
10127,
267,
263,
9619,
7606,
1889,
7536,
304,
278,
977,
292,
310,
13,
29874,
7632,
23503,
3158,
29889,
450,
4655,
4163,
310,
445,
1889,
338,
278,
13,
16409,
30010,
29879,
8380,
1492,
304,
4218,
263,
26032,
7536,
304,
263,
3271,
20348,
977,
292,
13,
273,
3158,
297,
8973,
29889,
8878,
414,
29892,
1663,
332,
414,
29892,
322,
916,
5381,
6471,
526,
13,
1251,
412,
1319,
393,
445,
1492,
304,
26032,
674,
10032,
11872,
335,
362,
3178,
313,
29903,
264,
29889,
422,
29889,
373,
13,
29967,
566,
1654,
653,
29892,
24352,
310,
5811,
29889,
6682,
1939,
29889,
29871,
29947,
29900,
29900,
313,
29906,
29900,
29900,
29896,
29899,
29906,
29900,
29900,
29906,
2169,
29889,
317,
404,
1846,
408,
13,
314,
2760,
22333,
29889,
29871,
29906,
29947,
29892,
29871,
29906,
29900,
29900,
29906,
29892,
282,
29889,
29871,
29945,
29892,
4698,
1199,
2715,
1846,
13,
268,
2193,
278,
18991,
1535,
5545,
278,
758,
19411,
335,
362,
1889,
263,
12187,
13,
9700,
310,
278,
3185,
338,
28585,
491,
278,
9493,
322,
6874,
310,
13,
1451,
3314,
29871,
29946,
29889,
1094,
1749,
15837,
310,
393,
16385,
3697,
29892,
278,
18991,
1535,
2175,
13,
1217,
7404,
393,
278,
7306,
310,
445,
1889,
471,
304,
505,
8937,
267,
11527,
322,
13,
3445,
7121,
8560,
408,
9098,
408,
1950,
29892,
322,
29892,
565,
1950,
29892,
1728,
13,
19411,
335,
362,
29889,
739,
3732,
4060,
29892,
769,
29892,
393,
278,
18991,
1535,
9146,
304,
13,
735,
2325,
770,
8820,
363,
4610,
1474,
738,
5995,
1090,
278,
3185,
29892,
1363,
13,
13,
13,
13,
13,
462,
462,
268,
29906,
29906,
13,
15,
1990,
8820,
1207,
758,
19411,
335,
362,
10104,
9301,
29889,
29896,
29900,
7753,
565,
278,
13,
17514,
2174,
524,
28324,
20794,
263,
770,
3158,
752,
368,
411,
278,
758,
19411,
335,
362,
13,
5014,
29892,
4550,
6820,
278,
12856,
310,
1009,
17774,
385,
15130,
304,
13,
1131,
3456,
304,
26032,
6514,
23503,
338,
17049,
408,
304,
1009,
17774,
29892,
278,
13,
4282,
414,
310,
916,
17774,
526,
2183,
694,
1316,
15130,
411,
3390,
304,
13,
1552,
443,
17514,
770,
5144,
29892,
4550,
266,
10305,
292,
697,
310,
278,
1556,
7282,
13,
294,
1103,
29879,
310,
278,
3185,
29889,
29896,
29896,
313,
13393,
4052,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
472,
6499,
29889,
29871,
29906,
29945,
29945,
29899,
29906,
29945,
29953,
13,
29961,
276,
622,
292,
385,
19854,
310,
278,
3185,
393,
723,
266,
10305,
278,
9619,
7606,
13,
1457,
19411,
335,
362,
1889,
322,
278,
16690,
292,
310,
263,
1492,
304,
26032,
1822,
29897,
13,
13,
13,
29907,
29889,
1678,
8427,
304,
278,
4360,
296,
11733,
13,
418,
15950,
10087,
393,
4004,
29871,
29929,
29941,
29896,
429,
27722,
770,
8820,
29892,
411,
263,
13,
29876,
2936,
3682,
2825,
491,
278,
1833,
10541,
29892,
591,
1818,
8161,
13,
13,
13,
13,
13,
29896,
29900,
1678,
910,
338,
7148,
1565,
297,
263,
1206,
1316,
408,
445,
697,
29892,
607,
16831,
267,
278,
13,
262,
2616,
1971,
362,
310,
263,
17644,
29899,
3880,
715,
3774,
292,
5713,
15546,
964,
19998,
21006,
310,
13,
386,
681,
4167,
310,
24013,
886,
29892,
2225,
24873,
13319,
491,
17202,
310,
1422,
13,
4282,
414,
29892,
1269,
310,
6029,
1818,
367,
2183,
8369,
310,
278,
16831,
287,
23503,
322,
385,
13,
29877,
3016,
6997,
304,
26032,
372,
29889,
13,
13,
29896,
29896,
418,
13494,
524,
28324,
27754,
393,
445,
7282,
9565,
338,
451,
266,
10305,
287,
297,
445,
1206,
13,
18103,
871,
278,
2048,
414,
526,
2183,
385,
15130,
304,
4218,
304,
26032,
278,
13,
29883,
13190,
23503,
29879,
1090,
278,
3185,
29889,
2193,
338,
451,
1959,
29889,
739,
338,
1565,
393,
278,
13,
29883,
8342,
424,
1818,
2367,
8369,
304,
278,
12856,
29892,
3265,
1135,
278,
12012,
9945,
29892,
7536,
13,
517,
977,
292,
385,
3158,
29889,
1205,
278,
5995,
424,
1818,
437,
577,
10940,
385,
3158,
338,
304,
367,
13,
1445,
29881,
1346,
351,
475,
303,
738,
6263,
3178,
313,
30152,
29871,
29929,
29896,
29900,
1846,
960,
278,
12012,
9945,
338,
304,
367,
4934,
13,
26679,
1821,
297,
3353,
470,
297,
760,
363,
278,
5537,
362,
310,
278,
20801,
29892,
278,
12856,
13,
21969,
3867,
8369,
304,
278,
12012,
9945,
29892,
2758,
278,
12012,
9945,
304,
14333,
13,
1552,
1663,
27988,
322,
6724,
310,
278,
16831,
287,
5537,
362,
29892,
322,
2758,
278,
13,
1171,
9765,
9945,
304,
5221,
403,
297,
278,
26032,
1889,
29889,
313,
30152,
29871,
29929,
29896,
29953,
29892,
1014,
29881,
29889,
313,
29872,
467,
29897,
13,
13,
13,
462,
462,
308,
29906,
29941,
13,
15,
1332,
1979,
278,
5995,
16831,
287,
297,
445,
1206,
1122,
367,
6296,
297,
263,
770,
3158,
29889,
13,
4806,
17668,
372,
1122,
451,
29889,
13,
418,
3824,
29892,
278,
12474,
3682,
16058,
871,
304,
1346,
1990,
3158,
16726,
13,
5747,
3211,
14419,
368,
278,
11039,
362,
310,
263,
23503,
573,
4163,
964,
263,
13,
690,
5084,
3178,
313,
30152,
29871,
29929,
29941,
29896,
1846,
1205,
2174,
524,
28324,
30010,
5995,
947,
451,
3211,
14419,
368,
278,
13,
262,
2616,
1971,
362,
310,
263,
23503,
573,
4163,
964,
1009,
17774,
29889,
390,
1624,
29892,
896,
13,
3498,
479,
393,
278,
671,
310,
278,
16831,
23244,
23503,
573,
659,
1960,
322,
6837,
261,
26091,
13,
1403,
324,
630,
322,
29914,
272,
8581,
5537,
800,
310,
3196,
310,
278,
20801,
731,
11483,
297,
13,
2042,
29871,
29947,
29929,
29953,
29892,
322,
393,
896,
8581,
18658,
304,
916,
7117,
297,
1009,
13,
9706,
267,
29889,
29896,
29906,
13,
418,
6440,
29892,
1584,
565,
2174,
524,
28324,
30010,
5995,
1033,
367,
316,
22580,
304,
3211,
14419,
368,
13,
1552,
11039,
362,
310,
263,
23503,
573,
4163,
964,
1009,
17774,
29892,
393,
5995,
13,
26680,
451,
367,
6296,
1090,
278,
3185,
1363,
278,
16831,
23244,
23503,
573,
13,
9700,
338,
263,
12012,
2955,
3234,
29892,
322,
1316,
16726,
526,
4653,
368,
13,
735,
13347,
29889,
313,
13393,
16683,
29871,
29947,
29929,
29953,
29892,
1014,
29881,
29889,
313,
29887,
5033,
29941,
5033,
29923,
29897,
518,
30015,
4013,
3611,
947,
451,
3394,
297,
738,
13,
2467,
25738,
24205,
14419,
368,
363,
263,
23503,
297,
263,
12012,
2955,
3234,
13,
28809,
2629,
470,
20114,
304,
263,
3829,
30024,
1822,
29897,
1152,
445,
2769,
29892,
591,
13,
13,
29896,
29906,
1678,
1334,
4443,
393,
2174,
524,
28324,
884,
394,
4424,
393,
278,
659,
1960,
322,
6837,
261,
26091,
13,
1403,
324,
630,
322,
29914,
272,
8581,
5537,
800,
310,
4004,
29871,
29947,
29929,
29955,
29889,
739,
723,
2615,
393,
565,
13,
13974,
524,
28324,
30010,
5995,
471,
9078,
304,
393,
16831,
362,
29892,
393,
1795,
4021,
1598,
408,
263,
5995,
13,
5747,
14157,
14419,
368,
278,
11039,
362,
310,
263,
23503,
573,
4163,
964,
1009,
13,
9706,
267,
29892,
577,
1472,
408,
278,
23503,
8581,
18658,
29889,
313,
30152,
29871,
29947,
29929,
29955,
518,
30015,
1762,
278,
15834,
393,
263,
13,
2220,
470,
4163,
310,
263,
3829,
338,
451,
20976,
491,
1438,
20801,
29892,
372,
13,
845,
497,
367,
3158,
519,
565,
372,
9946,
18658,
30024,
1385,
1074,
884,
4052,
19169,
262,
29892,
13159,
336,
29892,
29871,
29946,
3037,
29889,
29945,
386,
13,
271,
6499,
29889,
29871,
29906,
29945,
29941,
29899,
29906,
29945,
29946,
518,
4548,
433,
2827,
393,
278,
3185,
18469,
29892,
411,
3058,
6790,
13,
11739,
29879,
29892,
16726,
16831,
292,
5537,
800,
310,
278,
20801,
1090,
4004,
29871,
29947,
29929,
29953,
29892,
322,
13,
29883,
8342,
29879,
1090,
4004,
29871,
29947,
29929,
29955,
363,
23503,
573,
7117,
393,
437,
451,
5537,
403,
385,
13,
442,
293,
7964,
4004,
29871,
29947,
29929,
29953,
3918,
541,
4556,
18658,
1822,
29897,
1205,
1009,
5995,
338,
451,
13,
578,
9078,
29892,
322,
5480,
278,
5995,
947,
451,
2041,
2629,
4004,
29871,
29929,
29941,
29896,
30010,
29879,
13,
11739,
304,
278,
770,
3158,
429,
10085,
29889,
13,
13,
462,
462,
539,
29906,
29946,
13,
15,
535,
2325,
393,
15020,
278,
770,
3158,
3682,
297,
278,
1833,
10541,
310,
13,
2042,
29871,
29929,
29941,
29896,
1104,
1218,
304,
8820,
14419,
368,
363,
23503,
573,
7117,
29892,
393,
13,
11739,
1818,
367,
21551,
304,
3160,
967,
1914,
429,
10085,
363,
16726,
13,
5747,
16508,
304,
9792,
14419,
368,
363,
278,
11039,
362,
310,
263,
23503,
573,
13,
1171,
9765,
2955,
3234,
30003,
29875,
29889,
29872,
1696,
1346,
29874,
3234,
393,
338,
6446,
12012,
2955,
13,
2696,
2746,
30024,
313,
30152,
29871,
29947,
29929,
29953,
29892,
1014,
29881,
29889,
313,
29887,
5033,
29941,
5033,
29907,
8106,
313,
13393,
4546,
7598,
325,
29889,
5244,
1527,
30010,
29879,
3831,
29889,
2401,
29872,
1338,
13,
29933,
29881,
29889,
313,
29896,
29929,
29955,
29941,
29897,
29871,
29896,
29900,
3037,
29889,
29941,
29881,
29871,
29906,
29906,
29906,
29892,
29871,
29906,
29941,
29900,
518,
30015,
1552,
5164,
5633,
310,
263,
1002,
329,
706,
13,
264,
627,
358,
1818,
367,
10311,
265,
1891,
491,
13858,
278,
3153,
11845,
470,
13,
2042,
297,
278,
3030,
310,
278,
1002,
329,
706,
6890,
408,
263,
3353,
30024,
1822,
29897,
13,
268,
512,
3273,
29892,
591,
4808,
393,
278,
3185,
947,
451,
14257,
770,
3158,
16726,
13,
19499,
746,
1906,
16726,
3211,
14419,
368,
278,
11039,
362,
964,
278,
3271,
13,
974,
263,
23503,
573,
4163,
916,
1135,
263,
3234,
393,
338,
6446,
13,
1171,
9765,
2955,
1283,
2746,
29889,
7857,
29892,
278,
14260,
8973,
604,
1127,
491,
972,
5414,
13,
29968,
1148,
1358,
30010,
29879,
9418,
29899,
1990,
2284,
2450,
10884,
411,
3390,
304,
278,
4556,
310,
13,
2467,
1090,
278,
3185,
29889,
13,
462,
462,
268,
849,
13,
462,
462,
268,
849,
13,
462,
462,
268,
849,
13,
462,
462,
268,
849,
13,
462,
462,
268,
849,
13,
462,
462,
268,
849,
13,
462,
462,
268,
849,
13,
462,
462,
268,
849,
13,
462,
462,
268,
849,
13,
13,
13,
13,
13,
462,
462,
268,
29906,
29945,
13,
15,
462,
9651,
28657,
24815,
22122,
13,
268,
2803,
263,
639,
3456,
706,
2044,
310,
9619,
403,
2228,
1513,
292,
10049,
296,
13,
19111,
1611,
9245,
363,
4602,
10722,
5127,
304,
11757,
403,
967,
5490,
29871,
29906,
29906,
29892,
29871,
29906,
29900,
29896,
29947,
13,
2098,
304,
278,
15834,
372,
17935,
28590,
1358,
30010,
29879,
9418,
29899,
1990,
2284,
2450,
10884,
322,
13,
517,
2228,
263,
716,
322,
1422,
1797,
16690,
292,
278,
10884,
297,
967,
4152,
1017,
29889,
13,
29968,
1148,
1358,
4091,
9792,
967,
21544,
411,
4880,
304,
445,
2044,
8469,
292,
29889,
13,
268,
315,
20161,
29902,
3738,
3352,
15842,
349,
7466,
27888,
8098,
13,
13,
13,
13,
13,
462,
462,
308,
399,
24071,
29950,
9094,
29892,
435,
29889,
13,
13,
965,
1334,
378,
2764,
29901,
13,
13,
13,
13,
13,
965,
341,
2190,
29923,
2208,
29909,
29892,
349,
29889,
435,
29889,
13,
13,
13,
13,
13,
965,
4810,
2208,
1177,
29903,
29892,
435,
29889,
13,
13,
13,
13,
13,
462,
462,
268,
29906,
29953,
13,
15
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
President Barack Obama’s job approval has hit an almost three-year high among Americans, according to numbers released by Gallup on Thursday.
Fifty percent of Americans approve of Obama’s performance as the country’s chief executive, the highest level since May 2013. This is an uptick from his average approval rating during his seventh year in office, which was 46 percent, according to Gallup.
Gallup also pointed out how polarizing Obama remains: 87 percent of Democrats approve of his performance compared to 11 percent of Republicans.
Gallup said Obama’s performance rating was lower than Bill Clinton’s but higher than predecessor George W. Bush. Obama’s rating is similar to that of Ronald Reagan at the same time in his second term. (Reagan’s approval in March 1988 was 51 percent.)
The national poll was conducted from Feb. 29-March 6 among 3,563 adults by cell phones and landlines. The margin of error was plus or minus 2 points. | [
1,
7178,
2261,
547,
4250,
3304,
30010,
29879,
4982,
2134,
791,
756,
7124,
385,
4359,
2211,
29899,
6360,
1880,
4249,
23035,
29892,
5034,
304,
3694,
5492,
491,
8130,
786,
373,
498,
1295,
3250,
29889,
13,
13,
29943,
361,
1017,
10151,
310,
23035,
2134,
345,
310,
4250,
3304,
30010,
29879,
4180,
408,
278,
4234,
30010,
29879,
9087,
22760,
29892,
278,
9939,
3233,
1951,
2610,
29871,
29906,
29900,
29896,
29941,
29889,
910,
338,
385,
318,
415,
860,
515,
670,
6588,
2134,
791,
21700,
2645,
670,
16741,
29882,
1629,
297,
8034,
29892,
607,
471,
29871,
29946,
29953,
10151,
29892,
5034,
304,
8130,
786,
29889,
13,
13,
29954,
497,
786,
884,
11520,
714,
920,
16755,
5281,
4250,
3304,
9242,
29901,
29871,
29947,
29955,
10151,
310,
14189,
1446,
2134,
345,
310,
670,
4180,
9401,
304,
29871,
29896,
29896,
10151,
310,
8063,
550,
29889,
13,
13,
29954,
497,
786,
1497,
4250,
3304,
30010,
29879,
4180,
21700,
471,
5224,
1135,
6682,
2233,
16929,
30010,
29879,
541,
6133,
1135,
27978,
985,
272,
5122,
399,
29889,
24715,
29889,
4250,
3304,
30010,
29879,
21700,
338,
2788,
304,
393,
310,
11546,
2741,
830,
18939,
472,
278,
1021,
931,
297,
670,
1473,
1840,
29889,
313,
1123,
18939,
30010,
29879,
2134,
791,
297,
4779,
29871,
29896,
29929,
29947,
29947,
471,
29871,
29945,
29896,
10151,
1846,
13,
13,
1576,
4797,
21180,
471,
18043,
515,
26319,
29889,
29871,
29906,
29929,
29899,
29924,
1279,
29871,
29953,
4249,
29871,
29941,
29892,
29945,
29953,
29941,
16157,
29879,
491,
3038,
1374,
2873,
322,
2982,
9012,
29889,
450,
5906,
310,
1059,
471,
2298,
470,
26134,
29871,
29906,
3291,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Three men were arrested and €110,000 of suspected cannabis herb and plants in Cork and Dublin were seized last week, gardaí said on Saturday.
A car was stopped on the M8 motorway in Mitchelstown, Co Cork shortly before 9pm on Thursday January 30th, the garda statement said.
A search of the car was carried out and gardaí discovered €20,000 of suspected cannabis herb,pending analysis, and €1,000 in cash in the boot.
Two men, in their 20s and 30s, were arrested at the scene and were brought to Fermoy Garda Station.
They were detained under Section 2 of the Criminal Justice (Drugs Trafficking) Act 1996 and were later charged to appear before a special sitting of Cork City District Court on Saturday morning.
As part of the investigation, a search was carried out by gardaí attached to a community action team at a house in Hollystown, Dublin 15 later that evening.
During the search, gardaí seized €8,000 in cash, €76,000 of suspected cannabis herb and four pop-up tents containing €14,000 of suspected cannabis plants with growing and ventilation equipment.
Over 3,000 suspected counterfeit currency in euros, dollars and sterling was also seized.
A man in his 30s was arrested at the scene and brought to Blanchardstown Garda Station where he was detained under Section 2 of the Criminal Justice (Drugs Trafficking) Act 1996
He appeared before the Dublin District Court on Saturday morning.
A third search was carried out at a house in Co Meath but nothing was seized and no arrests were made.
Speaking at Fermoy Garda Station, Superintendent John Deasy said: “Yesterday’s seizure highlights the dedication of our roads policing units to not only reduce the deaths on our roads, but to deny criminals access to the road network throughout the country.” | [
1,
12753,
1757,
892,
24383,
322,
25540,
29896,
29896,
29900,
29892,
29900,
29900,
29900,
310,
2858,
6021,
508,
7183,
275,
902,
29890,
322,
18577,
297,
315,
548,
322,
24533,
892,
25291,
1833,
4723,
29892,
17161,
29874,
29983,
1497,
373,
24211,
29889,
13,
13,
29909,
1559,
471,
11084,
373,
278,
341,
29947,
10992,
1582,
297,
21190,
295,
303,
776,
29892,
3189,
315,
548,
21734,
1434,
29871,
29929,
3358,
373,
498,
1295,
3250,
5490,
29871,
29941,
29900,
386,
29892,
278,
17161,
29874,
3229,
1497,
29889,
13,
13,
29909,
2740,
310,
278,
1559,
471,
8988,
714,
322,
17161,
29874,
29983,
10943,
25540,
29906,
29900,
29892,
29900,
29900,
29900,
310,
2858,
6021,
508,
7183,
275,
902,
29890,
29892,
29886,
2548,
7418,
29892,
322,
25540,
29896,
29892,
29900,
29900,
29900,
297,
274,
1161,
297,
278,
6579,
29889,
13,
13,
13985,
1757,
29892,
297,
1009,
29871,
29906,
29900,
29879,
322,
29871,
29941,
29900,
29879,
29892,
892,
24383,
472,
278,
9088,
322,
892,
6296,
304,
383,
837,
12602,
15971,
29874,
12039,
29889,
13,
13,
15597,
892,
1439,
7114,
1090,
9779,
29871,
29906,
310,
278,
315,
28479,
17181,
313,
29928,
582,
3174,
3201,
600,
860,
292,
29897,
3185,
29871,
29896,
29929,
29929,
29953,
322,
892,
2678,
20139,
304,
2615,
1434,
263,
4266,
16246,
310,
315,
548,
4412,
7457,
9245,
373,
24211,
7250,
29889,
13,
13,
2887,
760,
310,
278,
22522,
29892,
263,
2740,
471,
8988,
714,
491,
17161,
29874,
29983,
10959,
304,
263,
7881,
3158,
3815,
472,
263,
3699,
297,
4168,
368,
303,
776,
29892,
24533,
29871,
29896,
29945,
2678,
393,
11005,
29889,
13,
13,
29928,
3864,
278,
2740,
29892,
17161,
29874,
29983,
25291,
25540,
29947,
29892,
29900,
29900,
29900,
297,
274,
1161,
29892,
25540,
29955,
29953,
29892,
29900,
29900,
29900,
310,
2858,
6021,
508,
7183,
275,
902,
29890,
322,
3023,
1835,
29899,
786,
260,
1237,
6943,
25540,
29896,
29946,
29892,
29900,
29900,
29900,
310,
2858,
6021,
508,
7183,
275,
18577,
411,
15678,
322,
9712,
8634,
21083,
29889,
13,
13,
3563,
29871,
29941,
29892,
29900,
29900,
29900,
2858,
6021,
6795,
1725,
277,
27550,
297,
11878,
1883,
29892,
17208,
322,
16864,
1847,
471,
884,
25291,
29889,
13,
13,
29909,
767,
297,
670,
29871,
29941,
29900,
29879,
471,
24383,
472,
278,
9088,
322,
6296,
304,
3164,
14588,
538,
303,
776,
15971,
29874,
12039,
988,
540,
471,
1439,
7114,
1090,
9779,
29871,
29906,
310,
278,
315,
28479,
17181,
313,
29928,
582,
3174,
3201,
600,
860,
292,
29897,
3185,
29871,
29896,
29929,
29929,
29953,
13,
13,
3868,
7470,
1434,
278,
24533,
7457,
9245,
373,
24211,
7250,
29889,
13,
13,
29909,
4654,
2740,
471,
8988,
714,
472,
263,
3699,
297,
3189,
2191,
493,
541,
3078,
471,
25291,
322,
694,
3948,
9197,
892,
1754,
29889,
13,
13,
10649,
5086,
472,
383,
837,
12602,
15971,
29874,
12039,
29892,
5670,
524,
3906,
2259,
897,
8995,
1497,
29901,
1346,
29979,
18358,
30010,
29879,
409,
466,
545,
12141,
29879,
278,
8856,
362,
310,
1749,
25320,
13665,
292,
10340,
304,
451,
871,
10032,
278,
4892,
29879,
373,
1749,
25320,
29892,
541,
304,
972,
29891,
15116,
19016,
2130,
304,
278,
6520,
3564,
10106,
278,
4234,
3178
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
# This file is part of BlackArch Linux ( https://www.blackarch.org/ ).
# See COPYING for license details.
pkgname=raccoon
pkgver=183.985797f
pkgrel=5
pkgdesc='A high performance offensive security tool for reconnaissance and vulnerability scanning.'
groups=('blackarch' 'blackarch-recon' 'blackarch-scanner')
arch=('any')
url='https://github.com/evyatarmeged/Raccoon'
license=('MIT')
depends=('python' 'python-xmltodict' 'python-dnspython' 'python-requests'
'python-lxml' 'python-beautifulsoup4' 'python-click' 'python-pysocks'
'python-fake-useragent')
makedepends=('git' 'python-setuptools')
source=("$pkgname::git+https://github.com/evyatarmeged/Raccoon.git")
sha512sums=('SKIP')
pkgver() {
cd $pkgname
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
cd $pkgname
python setup.py build
}
package() {
cd $pkgname
python setup.py install --root="$pkgdir" --prefix=/usr -O1 --skip-build
rm -rf "$pkgdir/usr/lib/python3.8/site-packages/tests"
}
| [
1,
396,
910,
934,
338,
760,
310,
6054,
13197,
8074,
313,
2045,
597,
1636,
29889,
8517,
1279,
29889,
990,
29914,
13742,
13,
29937,
2823,
315,
4590,
29979,
4214,
363,
19405,
4902,
29889,
13,
13,
15865,
978,
29922,
336,
617,
6150,
13,
15865,
369,
29922,
29896,
29947,
29941,
29889,
29929,
29947,
29945,
29955,
29929,
29955,
29888,
13,
15865,
2674,
29922,
29945,
13,
15865,
14273,
2433,
29909,
1880,
4180,
1283,
6270,
6993,
5780,
363,
25238,
9948,
322,
23180,
3097,
885,
9450,
6169,
13,
13155,
29922,
877,
8517,
1279,
29915,
525,
8517,
1279,
29899,
276,
535,
29915,
525,
8517,
1279,
29899,
1557,
7310,
1495,
13,
1279,
29922,
877,
1384,
1495,
13,
2271,
2433,
991,
597,
3292,
29889,
510,
29914,
5750,
29891,
271,
2817,
387,
287,
29914,
29934,
17970,
265,
29915,
13,
506,
1947,
29922,
877,
26349,
1495,
13,
2716,
1975,
29922,
877,
4691,
29915,
525,
4691,
29899,
3134,
20034,
919,
29915,
525,
4691,
29899,
5200,
1028,
1656,
29915,
525,
4691,
29899,
24830,
29915,
13,
308,
525,
4691,
29899,
29880,
3134,
29915,
525,
4691,
29899,
915,
1300,
6845,
29879,
1132,
29946,
29915,
525,
4691,
29899,
3808,
29915,
525,
4691,
29899,
2272,
578,
4684,
29915,
13,
308,
525,
4691,
29899,
29888,
1296,
29899,
1792,
14748,
1495,
13,
29885,
12535,
1022,
1975,
29922,
877,
5559,
29915,
525,
4691,
29899,
842,
21245,
8789,
1495,
13,
4993,
29922,
703,
29938,
15865,
978,
1057,
5559,
29974,
991,
597,
3292,
29889,
510,
29914,
5750,
29891,
271,
2817,
387,
287,
29914,
29934,
17970,
265,
29889,
5559,
1159,
13,
17051,
29945,
29896,
29906,
2083,
29879,
29922,
877,
16033,
5690,
1495,
13,
13,
15865,
369,
580,
426,
13,
29871,
14965,
395,
15865,
978,
13,
13,
29871,
2916,
2427,
5559,
6664,
29899,
1761,
1192,
2798,
17714,
3035,
467,
12330,
5559,
6664,
29899,
5510,
1192,
12759,
17714,
3035,
29897,
13,
29913,
13,
13,
4282,
580,
426,
13,
29871,
14965,
395,
15865,
978,
13,
13,
29871,
3017,
6230,
29889,
2272,
2048,
13,
29913,
13,
13,
5113,
580,
426,
13,
29871,
14965,
395,
15865,
978,
13,
13,
29871,
3017,
6230,
29889,
2272,
2601,
1192,
4632,
18965,
15865,
3972,
29908,
1192,
13506,
14327,
4855,
448,
29949,
29896,
1192,
11014,
29899,
4282,
13,
13,
29871,
20241,
448,
9600,
3908,
15865,
3972,
29914,
4855,
29914,
1982,
29914,
4691,
29941,
29889,
29947,
29914,
2746,
29899,
8318,
29914,
21150,
29908,
13,
29913,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Yay for Denver!!! I live in Arvada but work in Denver... You totally have to check out Tommyknockers, they have great brews! It's funny, a few years ago I hated beer but I did a Colorado tour at our local Old C's and found the ones I love. Even at our wedding our kegs were Colorado through and through... Fat Tire and Coors Light! I'm voting for you out of love of your craft and of our town!! | [
1,
612,
388,
363,
3384,
369,
21004,
306,
5735,
297,
826,
29894,
1114,
541,
664,
297,
3384,
369,
856,
887,
14909,
505,
304,
1423,
714,
27036,
29895,
1217,
384,
414,
29892,
896,
505,
2107,
2078,
5652,
29991,
739,
29915,
29879,
2090,
1460,
29892,
263,
2846,
2440,
8020,
306,
298,
630,
367,
261,
541,
306,
1258,
263,
21137,
6282,
472,
1749,
1887,
8198,
315,
29915,
29879,
322,
1476,
278,
6743,
306,
5360,
29889,
7753,
472,
1749,
14837,
8497,
1749,
413,
387,
29879,
892,
21137,
1549,
322,
1549,
856,
383,
271,
323,
533,
322,
3189,
943,
12790,
29991,
306,
29915,
29885,
28931,
363,
366,
714,
310,
5360,
310,
596,
25554,
322,
310,
1749,
4726,
6824
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Introduction {#s1}
============
There are persistent gaps between research evidence and what happens in healthcare policy and practice ([@B1], [@B2]). Better use of evidence to improve primary health care (PHC) requires understanding of how healthcare stakeholders use research findings to strengthen knowledge, refine care delivery systems and change practice ([@B3]), and greater understanding of the factors mediating use.
Knowledge translation literature offers various theories and frameworks relating to evidence use (or non-use) ([@B4]). Commonly identified factors relate to the evidence itself and how it is created, intended target audiences, and the context and process of implementation ([@B5]). Integrating knowledge translation through different stages of research---a principle common with participatory research ([@B6]) and knowledge co-production ([@B7])---is advocated for increasing research relevance and supporting use ([@B8]). However, few studies in this field report outcomes, such as use of research ([@B9]), and there is little evidence on the outcomes of integrated knowledge translation strategies ([@B10]).
Improving Indigenous Health Through Continuous Quality Improvement and Large-Scale Change
-----------------------------------------------------------------------------------------
There are wide disparities in health outcomes and life expectancy between Aboriginal and Torres Strait Islander peoples (Australia\'s Indigenous nations) and the general Australian population ([@B11]). Strengthening the use of evidence in PHC is critical to closing this gap in health equity. Continuous quality improvement (CQI) methods ([@B12]) have been shown to be effective and acceptable in the Indigenous PHC context ([@B13], [@B14]). They generate practice-based evidence relevant to local care delivery ([@B15]) and use participatory approaches that can uphold Indigenous values as expressed in national statements on research and cultural respect ([@B16]).
International evidence supports CQI as effective in improving the standard of care, particularly when applied system-wide ([@B17]--[@B19]). While CQI data are typically used to prioritize and address improvement needs at local and organizational levels ([@B20]), they can be aggregated to indicate where improvement efforts are needed at a broader system level. Engaging diverse healthcare stakeholders in the interpretation of aggregated data could be expected to enhance understanding of systems barriers to improving care and health outcomes across populations. However, little research has examined the application of CQI methods---such as systematic data guided activities, designing with local conditions in mind and iterative development and testing ([@B21])---for prioritizing and addressing wider system needs. Such studies can help address knowledge gaps in how to scale-up programs using theory-based approaches ([@B22]) and how to use systems approaches that combine dissemination and multi-stakeholder relationships to generate knowledge and address complex health problems ([@B23]--[@B25]).
These inherent CQI principles, and those of knowledge co-production ([@B26], [@B27]), informed our novel large-scale, systems-focused participatory CQI research project in Indigenous PHC. Our project (Box [1](#Box1){ref-type="boxed-text"}) engaged diverse stakeholders in interpreting regionally and nationally aggregated CQI data from PHC services, with the aim of informing policy and interventions needed at multiple levels of the health system to achieve wide-scale improvement in PHC quality ([@B39]). Understanding stakeholders\' perspectives and actions in using these CQI research findings is critical to ensuring impact and improving Indigenous health outcomes ([@B40]). In this paper, we draw on findings from a developmental evaluation of the project to explore how healthcare stakeholders used (or proposed to use) the research findings, and their perceptions of barriers and enablers to use. We offer insights for researchers and policy-makers about engaging stakeholders with evidence in ways that integrate multiple perspectives, overcome barriers to use and encourage innovative, varied and complementary translation of findings to improve care.
###### "Engaging Stakeholders in Identifying Priority Evidence-Practice Gaps, Barriers and Strategies for Improvement" (ESP) Project.
The Engaging Stakeholders in Identifying Priority Evidence-Practice Gaps, Barriers and Strategies for Improvement (ESP) project ([@B28]) engaged a range of Indigenous health stakeholders in interpreting regionally- and nationally-aggregated continuous quality improvement (CQI) data. The data were used to identify priority gaps in care, barriers or enablers and strategies for improvement in key areas of clinical care. It aimed to generate knowledge for use in developing policies and strengthening systems and practice to improve the quality of primary health care (PHC) for Indigenous people, leading to improved population health outcomes ([@B29]).
**Aggregated CQI Data**
De-identified CQI data were provided by 175 health centers, across five Australian jurisdictions, that participated in the Audit and Best Practice for Chronic Disease (ABCD) National Research Partnership ([@B30]). The data were derived from health centres\' routine use of evidence-based best-practice CQI audit tools to assess and reflect on system performance, identify improvement priorities and develop strategies appropriate to service populations and delivery contexts ([@B14]). The audit tools cover the scope of PHC (e.g., chronic illness care, maternal health, child health, preventive care). The aggregated data used in the ESP project represented over 60,000 clinical audits of patient records and 492 system assessments ([@B31]), conducted over a decade.
**ESP Activities/processes**
A phased process used online reports and theory-informed surveys ([@B32]--[@B36]) to engage stakeholders in disseminating and interpreting the aggregate data from the ABCD National Research Partnership database, and sharing professional and contextual knowledge to develop the ESP project findings. The iterative process was used to analyse, report and disseminate CQI data for chronic illness care, child, maternal, preventive and mental health, and rheumatic heart disease care. The ESP phases included:
Phase 1---Identify priority evidence-practice gaps using most recent analyzed aggregated CQI data
Phase 2---Identify barriers, enablers and strategies for improvement, using reports on trends over time for key indicators relevant to priority evidence-practice gaps
Phase 3---Provide feedback on draft final report leading to Final ESP Report
**Stakeholders at Different System Levels**
The ESP project used existing CQI professional networks and a snowballing recruitment technique to invite the participation of policymakers and managers, members of health boards, clinicians/practitioners and researchers in Indigenous community-controlled and government-operated health centers, peak bodies and support organizations, government departments and research institutions. ESP Project methods are described in detail elsewhere ([@B28], [@B37], [@B38]).
Materials and Methods {#s2}
=====================
We draw on the developmental evaluation ([@B41]) of the Engaging Stakeholders in Identifying Priority Evidence-Practice Gaps, Barriers and Strategies for Improvement (ESP) project, which used document analysis, surveys, participant interviews and team processes to collect data between 2014 and 2017. The developmental evaluation aimed to inform ongoing project refinement and implementation, explore facilitators and barriers to stakeholder engagement, explore use of project findings and assess the interactive dissemination process used in the ESP project. The developmental evaluation methods are described in detail elsewhere ([@B42]).
Ethics
------
The study was carried out in accordance with the recommendations of the Australian National Health and Medical Research Council, National Statement on Ethical Conduct in Human Research. The protocol was approved by the Human Research Ethics Committee (HREC) of the Northern Territory Department of Health and Menzies School of Health Research (Project 2015-2329), the Central Australian HREC (Project 15-288) and the Charles Darwin University HREC (Project H15030). All evaluation participants gave written informed consent in accordance with the Declaration of Helsinki.
Participant Sampling
--------------------
Purposeful sampling was used to identify and select stakeholders in one Australian jurisdiction in which there was a considerable history of CQI in Indigenous PHC. The sampling strategy allowed for in-depth exploration of diverse and information rich cases ([@B43])---participants included people in policy, management, clinical, CQI and academic roles. Ethics approval enabled inclusion of several participants whose roles encompassed a national perspective on CQI research.
Data Collection
---------------
In-depth, semi-structured interviews were conducted by the lead author (AL) between mid-2015 and early 2017. This timeframe enabled the input of participants involved in different ESP project cycles, and provided evaluative feedback following adjustments to reports and processes over the course of the project. Interviews were conducted face-to-face, by Skype and telephone; all were audio-recorded and transcribed.
The interviews were structured around the aims of the developmental evaluation. An interview guide was developed and piloted and the questions were refined. Example questions relating to the topic areas around use or proposed use of findings, and factors influencing use are provided in Table [1](#T1){ref-type="table"}.
######
Semi-structured interview questions about engaging with project data and using findings.
**Topic area** **Example questions**
--------------------------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Discussing and interpreting use Have you discussed these aggregated data or findings with others? Can you give examples of the outcomes or highlights of your discussions?
Factors influencing use Are there factors that helped you access and use the reports? Can you tell me how that worked? Have there been barriers to engaging with and using these data? What are they?
Use of data and findings Can you provide examples of how you have used the aggregated quality improvement data in your practice? Can you describe how the reports of findings have influenced your practice decisions or intentions?
Impact of the project Would you like to comment on any other impact of the project to date, or impact that you anticipate?
Data Analysis
-------------
Interview transcripts were imported into NVivo10 analytic software ([@B44]). Analysis of interview data was undertaken using content analysis ([@B45]). Initial readings of the transcripts provided the lead author with a collective overview of stakeholder responses to each interview question. First, all interview data were coded deductively using categories broadly aligned with the research questions and key elements of implementation theory ([@B46], [@B47]): evidence/innovation characteristics, targeted groups, settings, project implementation processes, and use. Then the information coded for each category was re-read and analyzed inductively. A researcher who was not involved in the project independently checked coding in accordance with recommended practice for reliability ([@B48]).
Qualitative data on use or proposed use of findings, and factors influencing use, were then obtained from the interview data. The codes arising were compared within and across transcripts, and iteratively refined, until common patterns and themes were identified. The ESP online surveys included questions inviting free text responses about use of ESP data and findings. Responses to relevant questions were read and compared with the coded interview data to check that the codes reflected broader participant perspectives across jurisdictions.
Themes relating to use of findings were not independent of each other; some findings were relevant to more than one theme. We have therefore described the findings according to the predominant theme and the most important influence.
Findings {#s3}
========
Thirty stakeholders were interviewed: 10 clinicians, six academics, five CQI practitioners, five managers and four policy-makers. Some participants held dual roles (e.g., manager/clinician or academic/clinician). Interviewees represented government and Indigenous community-controlled health services (*n* = 17), research/teaching institutions (*n* = 7) and support organizations including regional health networks and peak bodies (*n* = 6). Some participants had engaged in project cycles in several areas of care. Most had worked for some years in Indigenous PHC.
A total of twenty-eight interviews were conducted---26 individual and two small-group interviews involving program teams. Interview length ranged from 23 to 75 min (averaging 50 min). Sixteen interviews were conducted face-to-face---the remaining interviews used Skype or telephone.
Five themes were identified in relation to reported or proposed use of findings from the ESP project: influencing planning and policy; supporting best practice and reflection; capacity strengthening; developing new research, and; multi-level applicability. The factors mediating use were commitment to best practice, perceived relevance, competing work pressures, organizational environment for change, presentation and useability, credibility of research findings, facilitation and communication. The themes are summarized in Table [2](#T2){ref-type="table"} and discussed below. Exemplar quotes and examples illustrating themes and categories are provided in the [Supplementary File](#SM1){ref-type="supplementary-material"}, with some included in the text.
######
Stakeholder feedback on use or proposed use of ESP project findings, and factors mediating use: themes and categories identified.
-------------------------------------------------------------------------------------------------------------------------------------------
**Themes** **Categories**
--------------------------------------------------- ---------------------------------------------------------------------------------------
**USE OF ESP PROJECT FINDINGS**
Influencing planning and policy • Targeting high level decision-making\
• Promoting a strategic approach\
• Strengthening evidence and opportunities for action\
• Bringing people together
Supporting best practice and reflection • Supporting continuous quality improvement activities\
• Supporting reflection and change\
• Affirmation
Capacity strengthening • Building capacity in continuous quality improvement and population health thinking\
• Developing skills in understanding and interpreting data\
• Staff orientation
Developing new research • Developing research based on findings\
• Using the research methodology
Multi-level applicability • Influencing change at different system levels\
• Supporting a systems approach
**FACTORS MEDIATING USE OF ESP PROJECT FINDINGS**
Commitment to best practice • Valuing data and evidence\
• Improving Indigenous health outcomes
Perceived relevance • To role and work context\
• Timeliness\
• Local vs. wider interpretation
Competing work pressures • Time and workload\
• Staff shortages and turnover
Organizational environment for change • Role of managers, organizational change\
• Primary health care approach v\'s acute care focus
Presentation and useability • Report formats for different audiences\
• Accessible information\
• Support for learning
Credibility of research findings • Research history and methodology\
• Data currency, benefits and limitations
Facilitation and communication • Interactive process\
• Methods and paths of communication
-------------------------------------------------------------------------------------------------------------------------------------------
*ESP---Engaging stakeholders in identifying priority evidence-practice gaps, barriers and strategies for improvement project*.
Use of ESP Project Findings
---------------------------
### Influencing Policy and Planning Change
Interviewees perceived that the ESP project findings were useful for identifying system issues, informing high level policy decisions to drive improvement, directing resources where service performance was consistently poor and advocating for continuing investment in CQI. They were generally regarded as having greater potential for leverage at a higher strategy level than at health center level, including contributing to national policy developments in CQI in Indigenous PHC. Interviewees perceived that the analysis of comprehensive data from Indigenous PHC centers on adherence to guideline-recommended care over time and wide stakeholder input strengthened credibility for these purposes.
Overall, the national findings strengthened arguments for engaging in improvement-focused work, particularly when they aligned with priorities and barriers observed in organizational and local contexts (e.g., health center-community links, staff training in chronic illness management). Some interviewees regarded CQI data use as useful for fostering closer engagement between people in different roles, for example between policy-makers and practitioners.
> "*I see the role of data as actually bringing strategic people much closer to the frontline practitioners, and then saying to frontline practitioners, 'We need to do something about this, help us and we will help you'."* (Manager 2)
Interviewees commonly expressed concern about the increasing prevalence and earlier onset of preventable chronic conditions among Indigenous people. A number suggested the findings could inform a more comprehensive PHC model, with greater community involvement, a less siloed approach to care delivery and more efficient use of resources. Use of the findings in combination with other available evidence was commonly reported or proposed. For example, using identified barriers to addressing priority evidence-practice gaps: to help explain jurisdiction-level key performance indicator results; to build on information collected through CQI and dialogue between managers, PHC teams and communities for regional planning; and to enrich team discussions and planning to address improvement needs identified through CQI processes in health centers.
### Supporting Best Practice and Reflection
The ESP process required stakeholders to use the findings from the ESP study on priority evidence-practice gaps to reflect on and identify barriers, enablers and strategies for improving care (through ESP survey responses). Interviewees in CQI roles reported using the ESP reports in their work with health teams.
> "*I\'m using them. I used them in some feedback recently---you know, 'This is a summary of research ... we already know these clinical datasets or morbidity. This is the evidence. These are the things that have been measured, this is what we have been looking at and this is what they have foundș... for me, it\'s very useful."* (CQI practitioner 2)
Dissemination of the ESP study reports led to both opportunistic and scheduled conversations about improving care, particularly in workplaces where CQI was embedded. Findings often concurred with interviewees\' local experiences, reinforcing that other teams were experiencing similar challenges and offering ideas for addressing them. Some participants used the findings as affirmation that their commitment and efforts were worthwhile and could make a difference in improving health outcomes.
For some, the ESP findings prompted immediate action (e.g., checking that items of maternal care were included in the health service template). For many, they sparked reflection on broader issues, such as the impact of social determinants on health, the interdependencies of priorities and barriers identified through the research and the importance of sharing health center data with policy makers. Reflection on the important role of Indigenous staff for improving care quality and cultural safety, and the need to strengthen preventive care and improve the quality of life for people with chronic illnesses, were commonly reported.
### Capacity Strengthening
Interviewees said that the ESP reports provided resources for CQI training in understanding data and population health, undergraduate clinician education and orientation of new health researchers to CQI. Some used the results for comparison with their local data to stimulate discussion of improvement barriers and strategies. In one instance, ESP results were used to justify a proposal for a community engagement and education program.
Outcomes reported by interviewees included better understanding of: using data to inform decision making; how CQI can work at multiple healthcare system levels; improvement processes and strategies, and; the value and interpretation of box-and-whisker-plot graphs (which display the distribution of data based on the five-number summary: minimum, first quartile, median, third quartile, and maximum). The value of sharing ideas and collaboratively producing knowledge through the project processes was widely acknowledged.
> "*They\'ve provided another layer of information that\'s stimulated thinking and discussion, that\'s brought in knowledge and expertise and experience from a broad group. It\'s really enriched the work that we\'ve done."* (CQI practitioner 1)
### Developing New Research
Researcher interviewees described ways in which the findings influenced or informed their work, reinforced existing evidence or helped to document failings. Several reported using the findings in successful grant applications for quality improvement research. In one example, the ESP research design was used as a model for community-based research, with the graphs informing the research team\'s analysis and reporting of data. In another example, the ESP methodology was applied when supporting a health service to undertake a CQI project. It was proposed the findings be used by researchers and clinicians to co-design intervention research addressing specific priorities.
### Multi-Level Applicability
As described above, the reports were perceived by interviewees as useful for focusing on broader PHC and CQI issues, and for sharing information and knowledge between people at different levels of the health system. The potential for the ESP findings to influence change at multiple levels (national, jurisdiction or regional systems, health center and community level) was widely acknowledged, with the reports seen as providing evidence to (1) shift government policy and strategy, (2) influence organizational planning, (3) stimulate team discussions and decisions, and (4) support practitioners\' practices to improve care. The need for complementary strategies at different levels was identified, e.g., policy and staff training to improve access to culturally appropriate services, effective staff recruitment and retention strategies and better coordination of care services. Several interviewees referred to the findings as demonstrating the value of a systems approach for improving care.
> "*You can just see how fixing systems for one area of care, such as childhood anemia, would work across other areas of care."* (Academic 2)
Factors Mediating Use of ESP Project Findings
---------------------------------------------
### Commitment to Best Practice
Commitment to providing best practice care and improving Indigenous health outcomes was reported to be a strong motivator for the use of ESP findings. Interviewees generally spoke of the desire to use relevant evidence to improve individual and team practice, deliver better PHC services, and make a difference. Interviewees in clinical and CQI roles talked about using the findings to "work smarter" and strengthen their understanding of how to improve the health of people accessing their services. Comments from policy and senior management perspectives reflected the same motivation for higher-level strategic use. Interviewees in various roles spoke of the value of the data for aligning intentions and practices.
> "*I want best practice. I like to be able to measure that. I\'m comfortable with data, and I\'m wanting the very best practice---looking at data and wanting to understand where we\'ve been, where we are and where we want to go*." (Clinician 3)
### Perceived Relevance
Interviewees in a range of Indigenous PHC roles and contexts found ESP findings on improvement priorities and barriers relevant to their work---they validated other evidence, affirmed the real-life experiences of Indigenous clients and PHC teams and provided useable knowledge. Further, the aggregated data used in the research represented the work of PHC staff in recording and auditing client care. Timing was an important factor: when report publication coincided with immediate information needs it supported opportunistic use.
Those with an understanding of population health and experience in CQI appeared to engage more readily with the data. Some perceived the research reports as most useful for staff in specialized programs (e.g., chronic conditions programs) than for generalist staff, because they focused on specific areas of care. Others were uncertain about who the research targeted and who would take responsibility to use the findings. Several interviewees referred to the need for regional and local contexts to be considered when using the system-wide ESP project findings to inform policy or plan interventions.
> "*You do need to be a bit careful that a national report hides important jurisdictional differences, and that national decisions are made without reference to more detailed data, which would inform a more locally responsive answer to a system issue."* (Policy practitioner 2)
Several interviewees suggested that researchers, health center staff and policy makers may have different perceptions of what comprises potentially powerful evidence to take to high-level policy and funding groups.
### Presentation and Useability
Presenting research findings in 1:3:25 report format (1-page key messages: 3-page summary: 25-page detailed report), accompanied by a plain language summary and data supplement was widely thought by interviewees to offer "something for everyone." The key messages for action (in the final reports) were considered practical for focused team conversations about improving care. Generally, those with more research or data experience sought the detailed information provided in the full reports. Plain language summaries were thought to be vital for use by a range of staff---more so after the inclusion of explicit statements about how the findings could benefit people in different roles. Several interviewees suggested summaries provided a pathway into the full reports.
> "*I think it\'s getting the information out there in easily digestible form, so that people have an option to look at a summary that says these are the key areas or can drill down and look in more depth---because people in different roles want different levels of information*." (CQI practitioner 1)
Interviewees perceived that box-and-whisker-plot graphs were valuable for effectively presenting data on trends and variation in care delivery across health centers. Some were concerned that the level of understanding required to interpret these graphs discouraged engagement---the accompanying interpretation guide was important. ESP reports were compared favorably with other web-generated reports of analyzed audit data that services received, because they reported collaboratively interpreted (rather than just analyzed) CQI data.
### Competing Work Pressures
Managing competing work demands and being time poor were dominant issues. Many interviewees described the nature of work in Indigenous PHC settings as a barrier to engaging with the findings. High staff turnover and staff shortages were commonly identified as contributing to work pressures in remote PHC settings and organizational management. The challenge of being able to sustain planned improvement efforts based on the findings was raised in relation to staff turnover.
### Organizational Environment for Change
Managers were perceived to have an important role in engaging with the findings and setting the agenda so that "everybody comes on board." The challenge of facilitating and sustaining change within health centers and teams was noted. Several participants talked about the difficulty of getting traction for implementing quality improvement at a time when managers were engaged in organization restructuring. Managing high acute care workloads in PHC settings was also identified as a factor impacting negatively on uptake of findings.
### Credibility of Research Findings
Most interviewees with considerable experience working in Indigenous PHC were aware of the achievements of the ABCD CQI research program and many were aware of the establishment of the multidisciplinary CQI research network through which the ABCD data and ESP project findings were disseminated. The program\'s aim and longevity, evidence base, collaboration between community-controlled and government operated services and applied nature were regarded positively. This influenced regard for the ESP project, also noted for its participatory approach and use of up-to-date CQI data. These features were linked to the significance of the findings for improving PHC quality for Indigenous communities, including their potential to enrich local CQI activities and routine practice.
### Facilitation and Communication
Participants spoke positively about the way the interactive ESP dissemination process engaged stakeholders in data interpretation and knowledge exchange, acknowledged input and provided opportunities for checking and further input prior to finalizing results.
> "*I do like \[the reports\] presenting the stakeholder priorities back to the stakeholders when asking about barriers and enablers. "This is what you\'ve said, we\'ve taken that on board. This is the next step. What can we do about it?" I think that\'s really powerful to acknowledge the consultation and to reassure people that their voices have been heard."* (Academic 3)
The phased ESP research design was likened to a participatory Plan-Do-Study-Act CQI cycle for the way it linked the data, improvement priorities and strategies. Repeated opportunities to engage in project phases was reported as facilitating deeper understanding of the ESP data, and how data could inform decision making. When recounting or proposing use of findings, participants often described interactive processes (e.g., facilitated discussions, education sessions, collaborative planning, stakeholder-researcher dialogue). People in CQI roles were important facilitators of these processes and in disseminating the ESP reports. Interviewees suggested that forums increasing engagement with ESP findings include quality improvement collaboratives.
Acknowledging that people access, understand and assimilate information in different ways, some participants suggested communicating the findings in non-written formats, such as webinars and video-clips. Other suggested mechanisms were newsletters, institution websites, professional association and network websites and online information repositories.
Discussion {#s4}
==========
Summary of Findings
-------------------
Interviewees used the CQI research findings to inform policy, practice, capacity development and research. Use was mediated by factors relating to individual motivations, the way evidence was perceived and presented, the context for use and interactions with others. The schema at Figure [1](#F1){ref-type="fig"} summarizes key study findings in the context of the ESP project. Interviewees representing stakeholders at different levels of the health system described (1) use of ESP findings derived from interpreting aggregated CQI data in different areas of care, and (2) factors mediating use in the Indigenous PHC context. The schema illustrates the way in which the translation of findings was supported through ESP activities and iterative processes through which analysis, reporting, interpretation and feedback were integrated into the research, with the aim of encouraging ongoing use in policy and practice.
![Schema of key study findings in the context of the ESP project. ARF/RHD, Acute rheumatic fever/rheumatic heart disease; CQI, continuous quality improvement; ESP, "Engaging Stakeholders in Identifying Priority Evidence-Practice Gaps, Barriers and Strategies for Improvement";^\*^CQI practitioners were important for facilitating engagement with the ESP project findings.](fpubh-06-00378-g0001){#F1}
Interpretation and Comparison With Existing Literature
------------------------------------------------------
Context-specific aggregated data derived from the use of evidence-based best practice CQI tools provided an effective starting point for mobilizing evidence-use across different stakeholder groups. It provided interviewees with opportunities to reflect on and discuss practice-based evidence relevant to their experience in the Indigenous healthcare sector, and to consider findings on system-wide improvement priorities and barriers in relation to regional and local evidence. Practice-based research findings are likely to be more relevant, believable, and actionable to practitioners ([@B15]). The variety of reported and intended uses for the ESP findings are consistent with the diversity of roles and perspectives represented in the sample, and the participatory principles of CQI in Indigenous PHC ([@B14], [@B30]) that informed the research design.
The integration of knowledge translation into iterative research processes resulted in different types of evidence use ([@B49]). At least three types of evidence use are commonly described in the literature---conceptual use that increases knowledge and understanding, instrumental use with a practical focus for bridging evidence-practice gaps, and strategic use ([@B50], [@B51]). All were reflected in our results. ESP findings were used conceptually and instrumentally to support work-relevant learning ([@B52]) and improvement (e.g., by CQI practitioners and educators). Strategic use was described by policy-makers. A further type, "process use" ([@B53], [@B54]), was demonstrated when changes in thinking and procedures resulted from learning that occurred during involvement in the research (e.g., improved understanding of CQI data prompted a PHC team to improve recording of client care). Our research methods also enabled the use of different forms of information---aggregate data, research findings and the ESP research methodology---and continuing collaboration of diverse stakeholders through implementation research based on ESP findings.
The study findings are also consistent with studies suggesting that evidence use reflects the system levels at which participants work and the information needs and functions of professional roles ([@B51], [@B55]). People working at each level used the findings in conjunction with other evidence, indicating that they actively sought and used evidence to improve their practice.
The factors mediating use within our sample generally reflect factors identified in Greenhalgh and colleagues landmark review of the diffusion of service innovations ([@B3]) and in implementation frameworks ([@B4], [@B56]) and studies. Common factors included the perceived merits of the evidence ([@B57], [@B58]), its relevance to tasks in context ([@B59]) and its potential for needs-specific modification (e.g., use of ESP reports in different ways). System readiness (e.g., environment for change, available time) and compatibility with individual values and motivation (e.g., commitment to best practice) were influential. Other mediating factors were the level of implementation support (e.g., from managers and CQI facilitators), continuing communication and tailored information products ([@B55], [@B60], [@B61]) and opportunities for interaction, supporting the common understanding that research use is social, interactive and context-dependent ([@B62], [@B63]). While lack of confidence in analyzing data was perceived as a barrier to research participation, interviewees in our study were less inclined to identify knowledge and skills as mediating the use of ESP findings. Linkage between the ESP project and stakeholders (a central component in Greenhalgh and colleagues\' conceptual model) ([@B3]) occurred through the ABCD National Research Partnership in the design stage and was implemented through the research team, with CQI opinion leaders and practitioners playing an important facilitation and boundary spanning role ([@B3]). CQI practitioners worked across boundaries to disseminate reports, facilitate participation in the research, promote and discuss findings in PHC services and encourage comparison of aggregated and local CQI data. These activities supported researcher-stakeholder linkage and finding-informed decision-making ([@B64]), contributing to the variety of reported and proposed uses of findings. Our study thereby established that participatory research informed by implementation and CQI theory can be applied effectively at scale to engage diverse stakeholders in using evidence on quality of care. It can work across boundaries and system levels to create synergy for improvement.
Implications for Knowledge Translation Practice and Future Research
-------------------------------------------------------------------
These findings can contribute to debate about enhancing the useability and impact of research ([@B26], [@B65]), including the intensity of engagement required between stakeholders and researchers. First, the processes used to successfully engage stakeholders with data and findings were informed by implementation research suggesting that effective change strategies can be developed using evidence to identify and link priority gaps in care to theoretical domains that are known to be system enablers or barriers ([@B32], [@B33], [@B66]). Second, the varied uses of findings by diverse stakeholders at different system levels were achieved through an interactive dissemination strategy that used high-level aggregated CQI data. It thereby challenged conventional approaches limiting the feedback and use of health center performance data to local CQI activities, demonstrating its potential for planning policy and system-level improvement efforts. Third, the strategy incorporated use of findings at each phase (e.g., participants used findings on barriers to suggest strategies), and this design appeared to positively influence use of the final reports. Fourth, online dissemination and feedback were effective for engaging stakeholders in evidence co-production and use at scale. This demonstrates that engagement can be achieved with limited resources for research when the research and findings are sufficiently practice-relevant and there is time to foster participation. Finally, a multi-disciplinary CQI research network (the Center of Research Excellence in Integrated Quality Improvement in Indigenous Primary Health Care) ([@B67]) provided a suitable platform for interactive dissemination and engagement with the findings.
Interviewees represented a sample of ESP project participants. Their project "buy-in," perspectives on use of the findings to improve care and their generally high regard for the data source and research quality augur well for continuing and wider use of findings ([@B68]). However, considerable feedback related to proposed rather than reported use. Descriptions of the uptake of research findings into healthcare as haphazard, unpredictable and messy ([@B5], [@B69]) acknowledge that many factors are likely to interfere with realization of intentions ([@B70], [@B71]). Studies to establish positive correlation between the intentions and behaviors of health professionals pose methodological challenges but are encouraging ([@B72]). Acknowledging that longer term impact will require a continuing knowledge translation strategy ([@B73]--[@B75]), we posit that because the ESP project findings were co-created by researchers and other stakeholders, encompass explicit and tacit dimensions of knowledge ([@B58]) and reflect organizational, community and cultural contexts ([@B65]), they match the needs of health services, policy makers and affected populations and are more likely to be "owned" and used for change ([@B76]).
The ESP project offers promising methods for involving stakeholders in generating knowledge to inform policy and multifaceted improvement strategies ([@B77]). The broad-scale and multi-level focus of our CQI research responds to previous work identifying the need for concurrent change at multiple levels of the health system to support wide-scale improvement ([@B39]) and the involvement of multiple types of stakeholders to implement and sustain CQI efforts ([@B78]). It demonstrated that a structured data and knowledge sharing process and shared commitment to improving Indigenous health outcomes could productively connect stakeholders from different professional perspectives and PHC contexts. Capturing these perspectives to identify priority evidence-practice gaps, and enablers and barriers to addressing them, enables future policy and research to focus on areas important to people involved in Indigenous PHC delivery. Interviewees recommended that ESP findings be used to influence resource allocation and develop translation strategies targeting high-level policymakers. This reinforces our recommendation that further research should explore the utility of interactive dissemination for engaging stakeholders in informing policy and system change.
Strengths and Limitations
-------------------------
This qualitative study captured the perspectives of people working at different health system levels, in various roles and organization types and using CQI research findings relevant to different areas of clinical care. It explored the implementation of evidence to improve care, helping to address concern that CQI activities in the Indigenous PHC sector have tended to focus on data collection and auditing, with less emphasis on data interpretation and implementing interventions ([@B79]).
The interviews focused primarily on one Australian jurisdiction in which CQI is well-established. Stakeholders in jurisdictions with less CQI experience may have different perspectives and experiences of CQI, limiting generalisability. This limitation is offset by inclusion of several interviewees in cross-jurisdiction roles (e.g., a national support organisation), and by comparing interview data with qualitative ESP survey data from other jurisdictions to check the generalisability of findings.
Conclusion {#s5}
==========
This study in the Australian Indigenous PHC context identified the use of research findings by stakeholders in a variety of roles and at different health system levels, and factors mediating use, over the course of a large-scale participatory CQI research project.
Context-specific aggregated CQI data provided an effective starting point for sharing perspectives, generating practice-based evidence and mobilizing evidence-use. While factors mediating use were generally consistent with previous studies, engaging stakeholders in participatory processes to interpret the data resulted in different types of use that could be considered complementary, and strategies that were tailored to work needs and applicable at different system levels. CQI methods provided an iterative, systematic and interactive dissemination process that was feasible at scale.
The system-based research design and translation process have implications for using CQI data and approaches in policymaking to create synergy for, and advance, wide-scale healthcare improvement. Increased effort and research are needed to support the use of aggregated CQI data in this way.
Large scale improvement efforts involve long timeframes and planned approaches. Ongoing translation of the ESP project findings into policy and practice to improve Indigenous health outcomes will require the collective commitment and sustained involvement of multiple healthcare stakeholders at different levels of the PHC system.
Data Availability Statement {#s6}
===========================
The qualitative data analyzed for this manuscript are not publicly available because of the need to protect the identity and confidentiality of research participants.
Author Contributions {#s7}
====================
AL conceptualized the study and led the data analysis, interpretation, writing of drafts, and finalizing the manuscript. RB leads the ESP project and supervised the writing process. JB, NP, FC, and GH provided advice during manuscript development. JB and VM contributed to the ESP project design. KC and LP assisted in ESP report dissemination and recruitment of study participants. All authors reviewed drafts, read, and approved the final manuscript.
Conflict of Interest Statement
------------------------------
The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.
The authors acknowledge the support, enthusiasm and commitment of staff in participating primary health care services, and members of the ABCD National Research Partnership and the Center of Research Excellence in Integrated Quality Improvement in Indigenous Primary Health Care. We thank Audra De Witt for checking coding reliability.
**Funding.** The ABCD National Research Partnership Project has been supported by funding from the National Health and Medical Research Council (545267) and the Lowitja Institute, and by in-kind and financial support from Community Controlled and Government agencies. AL is supported by a National Health and Medical Research Council Postgraduate Scholarship (1094595), and by the Centre of Research Excellence: An Innovation Platform for Integrated Quality Improvement in Indigenous Primary Health Care (CRE-IQI, funded by the NHMRC ID 1078927). RB\'s work has been supported by an Australian Research Council Future Fellowship (100100087). NP\'s contributions have been supported by a National Health and Medical Research Council Early Career Fellowship (1121303). The views expressed in this publication are those of the authors and do not necessarily reflect the views of the funding agencies.
Supplementary Material {#s8}
======================
The Supplementary Material for this article can be found online at: <https://www.frontiersin.org/articles/10.3389/fpubh.2018.00378/full#supplementary-material>
######
Click here for additional data file.
ABCD
: audit and best practice for chronic disease
CQI
: continuous quality improvement
ESP, engaging stakeholders in identifying priority evidence-practice gaps
: barriers and strategies for improvement
HREC
: Human Research Ethics Committee
PHC
: primary health care.
[^1]: Edited by: Tarun Stephen Weeramanthri, University of Western Australia, Australia
[^2]: Reviewed by: Georgi Iskrov, Plovdiv Medical University, Bulgaria; Paul Russell Ward, Flinders University, Australia
[^3]: This article was submitted to Public Health Policy, a section of the journal Frontiers in Public Health
| [
1,
27576,
426,
29937,
29879,
29896,
29913,
13,
4936,
2751,
13,
13,
8439,
526,
28152,
330,
2547,
1546,
5925,
10757,
322,
825,
5930,
297,
9045,
18020,
8898,
322,
6944,
9310,
29992,
29933,
29896,
1402,
518,
29992,
29933,
29906,
14664,
26965,
671,
310,
10757,
304,
11157,
7601,
9045,
2562,
313,
29925,
19127,
29897,
6858,
8004,
310,
920,
9045,
18020,
380,
1296,
8948,
414,
671,
5925,
1284,
886,
304,
9324,
264,
7134,
29892,
2143,
457,
2562,
28289,
6757,
322,
1735,
6944,
9310,
29992,
29933,
29941,
11724,
322,
7621,
8004,
310,
278,
13879,
14457,
1218,
671,
29889,
13,
13,
29968,
3707,
5485,
13962,
12845,
16688,
5164,
25841,
322,
29143,
1104,
1218,
304,
10757,
671,
313,
272,
1661,
29899,
1509,
29897,
9310,
29992,
29933,
29946,
14664,
1876,
6194,
15659,
13879,
29279,
304,
278,
10757,
3528,
322,
920,
372,
338,
2825,
29892,
9146,
3646,
12990,
819,
778,
29892,
322,
278,
3030,
322,
1889,
310,
5314,
9310,
29992,
29933,
29945,
14664,
17100,
1218,
7134,
13962,
1549,
1422,
22950,
310,
5925,
5634,
29874,
12502,
3619,
411,
5221,
7606,
5925,
9310,
29992,
29933,
29953,
2314,
322,
7134,
1302,
29899,
24601,
9310,
29992,
29933,
29955,
2314,
5634,
275,
22545,
630,
363,
10231,
5925,
29527,
749,
322,
20382,
671,
9310,
29992,
29933,
29947,
14664,
2398,
29892,
2846,
11898,
297,
445,
1746,
3461,
714,
26807,
29892,
1316,
408,
671,
310,
5925,
9310,
29992,
29933,
29929,
11724,
322,
727,
338,
2217,
10757,
373,
278,
714,
26807,
310,
23387,
7134,
13962,
16650,
583,
9310,
29992,
29933,
29896,
29900,
14664,
13,
13,
1888,
771,
1747,
1894,
2101,
681,
15202,
17044,
2866,
8675,
681,
751,
2877,
1954,
16123,
882,
322,
8218,
479,
29899,
17185,
10726,
13,
2683,
2683,
2683,
2683,
2683,
1378,
29899,
13,
13,
8439,
526,
9377,
17508,
1907,
297,
9045,
714,
26807,
322,
2834,
2149,
6906,
1546,
1976,
13492,
322,
4794,
690,
7357,
277,
7935,
261,
1236,
459,
793,
313,
22537,
423,
20333,
29879,
1894,
2101,
681,
19079,
29897,
322,
278,
2498,
9870,
4665,
9310,
29992,
29933,
29896,
29896,
14664,
3767,
1477,
8333,
278,
671,
310,
10757,
297,
349,
19127,
338,
12187,
304,
14382,
445,
17261,
297,
9045,
1592,
537,
29889,
2866,
8675,
681,
11029,
20414,
313,
29907,
29984,
29902,
29897,
3519,
9310,
29992,
29933,
29896,
29906,
2314,
505,
1063,
4318,
304,
367,
11828,
322,
22691,
297,
278,
1894,
2101,
681,
349,
19127,
3030,
9310,
29992,
29933,
29896,
29941,
1402,
518,
29992,
29933,
29896,
29946,
14664,
2688,
5706,
6944,
29899,
6707,
10757,
8018,
304,
1887,
2562,
28289,
9310,
29992,
29933,
29896,
29945,
2314,
322,
671,
5221,
7606,
13501,
393,
508,
318,
561,
1025,
1894,
2101,
681,
1819,
408,
13384,
297,
4797,
9506,
373,
5925,
322,
16375,
3390,
9310,
29992,
29933,
29896,
29953,
14664,
13,
13,
17579,
1288,
10757,
11286,
315,
29984,
29902,
408,
11828,
297,
4857,
1747,
278,
3918,
310,
2562,
29892,
10734,
746,
7436,
1788,
29899,
8157,
9310,
29992,
29933,
29896,
29955,
29962,
489,
17548,
29933,
29896,
29929,
14664,
5806,
315,
29984,
29902,
848,
526,
12234,
1304,
304,
7536,
277,
675,
322,
3211,
20414,
4225,
472,
1887,
322,
8674,
1288,
11174,
9310,
29992,
29933,
29906,
29900,
11724,
896,
508,
367,
11404,
630,
304,
12266,
988,
20414,
14231,
526,
4312,
472,
263,
2545,
1664,
1788,
3233,
29889,
2201,
6751,
16984,
9045,
18020,
380,
1296,
8948,
414,
297,
278,
19854,
310,
11404,
630,
848,
1033,
367,
3806,
304,
26371,
749,
8004,
310,
6757,
2594,
26536,
304,
4857,
1747,
2562,
322,
9045,
714,
26807,
4822,
23093,
29889,
2398,
29892,
2217,
5925,
756,
4392,
1312,
278,
2280,
310,
315,
29984,
29902,
3519,
5634,
14565,
408,
1788,
2454,
848,
1410,
2618,
14188,
29892,
2874,
292,
411,
1887,
5855,
297,
3458,
322,
4256,
1230,
5849,
322,
6724,
9310,
29992,
29933,
29906,
29896,
2314,
5634,
1454,
7536,
277,
5281,
322,
3211,
292,
25734,
1788,
4225,
29889,
10506,
11898,
508,
1371,
3211,
7134,
330,
2547,
297,
920,
304,
6287,
29899,
786,
11104,
773,
6368,
29899,
6707,
13501,
9310,
29992,
29933,
29906,
29906,
2314,
322,
920,
304,
671,
6757,
13501,
393,
14405,
766,
12846,
3381,
322,
2473,
29899,
303,
1296,
7694,
21702,
304,
5706,
7134,
322,
3211,
4280,
9045,
4828,
9310,
29992,
29933,
29906,
29941,
29962,
489,
17548,
29933,
29906,
29945,
14664,
13,
13,
1349,
968,
7846,
296,
315,
29984,
29902,
18671,
29892,
322,
1906,
310,
7134,
1302,
29899,
24601,
9310,
29992,
29933,
29906,
29953,
1402,
518,
29992,
29933,
29906,
29955,
11724,
23388,
1749,
9554,
2919,
29899,
7052,
29892,
6757,
29899,
29888,
542,
3880,
5221,
7606,
315,
29984,
29902,
5925,
2060,
297,
1894,
2101,
681,
349,
19127,
29889,
8680,
2060,
313,
3313,
518,
29896,
10514,
3313,
29896,
2597,
999,
29899,
1853,
543,
1884,
287,
29899,
726,
29908,
1800,
17785,
16984,
380,
1296,
8948,
414,
297,
5133,
1259,
5120,
635,
322,
5233,
635,
11404,
630,
315,
29984,
29902,
848,
515,
349,
19127,
5786,
29892,
411,
278,
12242,
310,
1871,
292,
8898,
322,
1006,
794,
1080,
4312,
472,
2999,
11174,
310,
278,
9045,
1788,
304,
6176,
9377,
29899,
7052,
20414,
297,
349,
19127,
11029,
9310,
29992,
29933,
29941,
29929,
14664,
7634,
11235,
380,
1296,
8948,
414,
20333,
3736,
1103,
3145,
322,
8820,
297,
773,
1438,
315,
29984,
29902,
5925,
1284,
886,
338,
12187,
304,
5662,
3864,
10879,
322,
4857,
1747,
1894,
2101,
681,
9045,
714,
26807,
9310,
29992,
29933,
29946,
29900,
14664,
512,
445,
5650,
29892,
591,
4216,
373,
1284,
886,
515,
263,
5849,
284,
17983,
310,
278,
2060,
304,
26987,
920,
9045,
18020,
380,
1296,
8948,
414,
1304,
313,
272,
7972,
304,
671,
29897,
278,
5925,
1284,
886,
29892,
322,
1009,
639,
1441,
29879,
310,
2594,
26536,
322,
427,
370,
9306,
304,
671,
29889,
1334,
5957,
1663,
5861,
363,
5925,
414,
322,
8898,
29899,
29885,
21079,
1048,
3033,
6751,
380,
1296,
8948,
414,
411,
10757,
297,
5837,
393,
22782,
2999,
3736,
1103,
3145,
29892,
25688,
2594,
26536,
304,
671,
322,
13731,
6617,
24233,
1230,
29892,
23821,
322,
19595,
653,
13962,
310,
1284,
886,
304,
11157,
2562,
29889,
13,
13,
4136,
2277,
376,
8100,
6751,
624,
1296,
8948,
414,
297,
13355,
9215,
22096,
537,
7298,
5084,
29899,
29925,
1461,
625,
402,
2547,
29892,
2261,
26536,
322,
3767,
1845,
583,
363,
1954,
16123,
882,
29908,
313,
2890,
29925,
29897,
8010,
29889,
13,
13,
1576,
2201,
6751,
624,
1296,
8948,
414,
297,
13355,
9215,
22096,
537,
7298,
5084,
29899,
29925,
1461,
625,
402,
2547,
29892,
2261,
26536,
322,
3767,
1845,
583,
363,
1954,
16123,
882,
313,
2890,
29925,
29897,
2060,
9310,
29992,
29933,
29906,
29947,
2314,
17785,
263,
3464,
310,
1894,
2101,
681,
9045,
380,
1296,
8948,
414,
297,
5133,
1259,
5120,
635,
29899,
322,
5233,
635,
29899,
26193,
630,
9126,
11029,
20414,
313,
29907,
29984,
29902,
29897,
848,
29889,
450,
848,
892,
1304,
304,
12439,
20136,
330,
2547,
297,
2562,
29892,
2594,
26536,
470,
427,
370,
9306,
322,
16650,
583,
363,
20414,
297,
1820,
10161,
310,
24899,
936,
2562,
29889,
739,
12242,
287,
304,
5706,
7134,
363,
671,
297,
14338,
24833,
322,
9324,
8333,
6757,
322,
6944,
304,
11157,
278,
11029,
310,
7601,
9045,
2562,
313,
29925,
19127,
29897,
363,
1894,
2101,
681,
2305,
29892,
8236,
304,
16710,
4665,
9045,
714,
26807,
9310,
29992,
29933,
29906,
29929,
14664,
13,
13,
1068,
29909,
26127,
630,
315,
29984,
29902,
3630,
1068,
13,
13,
2772,
29899,
1693,
2164,
315,
29984,
29902,
848,
892,
4944,
491,
29871,
29896,
29955,
29945,
9045,
1644,
414,
29892,
4822,
5320,
9870,
24894,
8977,
1080,
29892,
393,
25223,
297,
278,
8612,
277,
322,
6407,
29124,
625,
363,
15336,
293,
360,
895,
559,
313,
2882,
6530,
29897,
3086,
10550,
3455,
8397,
4034,
9310,
29992,
29933,
29941,
29900,
14664,
450,
848,
892,
10723,
515,
9045,
1644,
690,
20333,
26529,
671,
310,
10757,
29899,
6707,
1900,
29899,
29886,
1461,
625,
315,
29984,
29902,
12990,
277,
8492,
304,
24809,
322,
9432,
373,
1788,
4180,
29892,
12439,
20414,
7536,
1907,
322,
2693,
16650,
583,
8210,
304,
2669,
23093,
322,
28289,
3030,
29879,
9310,
29992,
29933,
29896,
29946,
14664,
450,
12990,
277,
8492,
4612,
278,
6874,
310,
349,
19127,
313,
29872,
29889,
29887,
1696,
17168,
293,
4486,
2264,
2562,
29892,
1775,
17196,
9045,
29892,
2278,
9045,
29892,
5557,
573,
2562,
467,
450,
11404,
630,
848,
1304,
297,
278,
26480,
2060,
9875,
975,
29871,
29953,
29900,
29892,
29900,
29900,
29900,
24899,
936,
12990,
1169,
310,
16500,
6475,
322,
29871,
29946,
29929,
29906,
1788,
24809,
1860,
9310,
29992,
29933,
29941,
29896,
11724,
18043,
975,
263,
316,
6332,
29889,
13,
13,
1068,
2890,
29925,
21775,
1907,
29914,
5014,
267,
1068,
13,
13,
29909,
1374,
1463,
1889,
1304,
7395,
13676,
322,
6368,
29899,
262,
15628,
26946,
952,
9310,
29992,
29933,
29941,
29906,
29962,
489,
17548,
29933,
29941,
29953,
2314,
304,
3033,
482,
380,
1296,
8948,
414,
297,
766,
12846,
262,
1218,
322,
5133,
1259,
278,
20431,
848,
515,
278,
16417,
29928,
3086,
10550,
3455,
8397,
4034,
2566,
29892,
322,
19383,
10257,
322,
3030,
950,
7134,
304,
2693,
278,
26480,
2060,
1284,
886,
29889,
450,
4256,
1230,
1889,
471,
1304,
304,
16455,
344,
29892,
3461,
322,
766,
12846,
16976,
315,
29984,
29902,
848,
363,
17168,
293,
4486,
2264,
2562,
29892,
2278,
29892,
1775,
17196,
29892,
5557,
573,
322,
19119,
9045,
29892,
322,
364,
354,
398,
2454,
5192,
17135,
2562,
29889,
450,
26480,
29540,
5134,
29901,
13,
13,
4819,
559,
29871,
29896,
5634,
7648,
1598,
20136,
10757,
29899,
29886,
1461,
625,
330,
2547,
773,
1556,
7786,
29537,
287,
11404,
630,
315,
29984,
29902,
848,
13,
13,
4819,
559,
29871,
29906,
5634,
7648,
1598,
2594,
26536,
29892,
427,
370,
9306,
322,
16650,
583,
363,
20414,
29892,
773,
13676,
373,
534,
1975,
975,
931,
363,
1820,
4221,
4097,
8018,
304,
20136,
10757,
29899,
29886,
1461,
625,
330,
2547,
13,
13,
4819,
559,
29871,
29941,
5634,
1184,
29894,
680,
16705,
373,
18195,
2186,
3461,
8236,
304,
9550,
26480,
13969,
13,
13,
1068,
855,
1296,
8948,
414,
472,
360,
15622,
2184,
21597,
29879,
1068,
13,
13,
1576,
26480,
2060,
1304,
5923,
315,
29984,
29902,
10257,
14379,
322,
263,
15007,
2135,
292,
1162,
9216,
358,
11043,
304,
2437,
568,
278,
27577,
310,
13665,
962,
21079,
322,
767,
18150,
29892,
5144,
310,
9045,
1045,
3163,
29892,
24899,
14722,
29914,
29886,
1461,
654,
414,
322,
5925,
414,
297,
1894,
2101,
681,
7881,
29899,
6451,
839,
322,
5874,
29899,
3372,
630,
9045,
1644,
414,
29892,
19224,
17873,
322,
2304,
25700,
29892,
5874,
5840,
1860,
322,
5925,
21561,
29889,
26480,
8010,
3519,
526,
5439,
297,
9493,
17551,
9310,
29992,
29933,
29906,
29947,
1402,
518,
29992,
29933,
29941,
29955,
1402,
518,
29992,
29933,
29941,
29947,
14664,
13,
13,
24095,
29879,
322,
8108,
29879,
426,
29937,
29879,
29906,
29913,
13,
9166,
2751,
29922,
13,
13,
4806,
4216,
373,
278,
5849,
284,
17983,
9310,
29992,
29933,
29946,
29896,
2314,
310,
278,
2201,
6751,
624,
1296,
8948,
414,
297,
13355,
9215,
22096,
537,
7298,
5084,
29899,
29925,
1461,
625,
402,
2547,
29892,
2261,
26536,
322,
3767,
1845,
583,
363,
1954,
16123,
882,
313,
2890,
29925,
29897,
2060,
29892,
607,
1304,
1842,
7418,
29892,
26946,
952,
29892,
5221,
424,
1006,
7406,
322,
3815,
10174,
304,
6314,
848,
1546,
29871,
29906,
29900,
29896,
29946,
322,
29871,
29906,
29900,
29896,
29955,
29889,
450,
5849,
284,
17983,
12242,
287,
304,
1871,
373,
17696,
2060,
2143,
262,
882,
322,
5314,
29892,
26987,
16089,
277,
4097,
322,
2594,
26536,
304,
380,
1296,
7694,
3033,
5049,
29892,
26987,
671,
310,
2060,
1284,
886,
322,
24809,
278,
28923,
766,
12846,
3381,
1889,
1304,
297,
278,
26480,
2060,
29889,
450,
5849,
284,
17983,
3519,
526,
5439,
297,
9493,
17551,
9310,
29992,
29933,
29946,
29906,
14664,
13,
13,
29923,
386,
1199,
13,
22158,
13,
13,
1576,
6559,
471,
8988,
714,
297,
15017,
749,
411,
278,
6907,
800,
310,
278,
9870,
3086,
15202,
322,
20795,
10550,
8831,
29892,
3086,
6666,
882,
373,
13772,
936,
1281,
2199,
297,
12968,
10550,
29889,
450,
9608,
471,
23454,
491,
278,
12968,
10550,
13772,
1199,
12930,
313,
29950,
1525,
29907,
29897,
310,
278,
14299,
19833,
706,
10317,
310,
15202,
322,
341,
4666,
583,
4523,
310,
15202,
10550,
313,
7653,
29871,
29906,
29900,
29896,
29945,
29899,
29906,
29941,
29906,
29929,
511,
278,
8068,
9870,
379,
1525,
29907,
313,
7653,
29871,
29896,
29945,
29899,
29906,
29947,
29947,
29897,
322,
278,
5322,
7335,
5080,
3014,
379,
1525,
29907,
313,
7653,
379,
29896,
29945,
29900,
29941,
29900,
467,
2178,
17983,
27138,
4846,
3971,
23388,
20218,
297,
15017,
749,
411,
278,
3826,
23838,
310,
23278,
682,
29875,
29889,
13,
13,
7439,
12654,
424,
3685,
10335,
13,
2683,
807,
13,
13,
29925,
332,
4220,
1319,
23460,
471,
1304,
304,
12439,
322,
1831,
380,
1296,
8948,
414,
297,
697,
9870,
24894,
29467,
297,
607,
727,
471,
263,
15620,
4955,
310,
315,
29984,
29902,
297,
1894,
2101,
681,
349,
19127,
29889,
450,
23460,
13705,
6068,
363,
297,
29899,
19488,
3902,
12418,
310,
16984,
322,
2472,
8261,
4251,
9310,
29992,
29933,
29946,
29941,
2314,
5634,
1595,
12654,
1934,
5134,
2305,
297,
8898,
29892,
10643,
29892,
24899,
936,
29892,
315,
29984,
29902,
322,
21567,
16178,
29889,
13772,
1199,
2134,
791,
9615,
28694,
310,
3196,
27138,
5069,
16178,
427,
2388,
465,
287,
263,
4797,
18520,
373,
315,
29984,
29902,
5925,
29889,
13,
13,
1469,
14348,
13,
9072,
5634,
13,
13,
797,
29899,
19488,
29892,
12647,
29899,
4984,
2955,
1006,
7406,
892,
18043,
491,
278,
3275,
4148,
313,
1964,
29897,
1546,
7145,
29899,
29906,
29900,
29896,
29945,
322,
4688,
29871,
29906,
29900,
29896,
29955,
29889,
910,
931,
2557,
9615,
278,
1881,
310,
27138,
9701,
297,
1422,
26480,
2060,
25785,
29892,
322,
4944,
6161,
1230,
16705,
1494,
10365,
1860,
304,
13676,
322,
10174,
975,
278,
3236,
310,
278,
2060,
29889,
4124,
7406,
892,
18043,
3700,
29899,
517,
29899,
2161,
29892,
491,
4971,
668,
322,
4382,
6710,
29936,
599,
892,
10348,
29899,
11651,
287,
322,
1301,
23059,
29889,
13,
13,
1576,
1006,
7406,
892,
2281,
2955,
2820,
278,
263,
9893,
310,
278,
5849,
284,
17983,
29889,
530,
15593,
10754,
471,
8906,
322,
8230,
5715,
322,
278,
5155,
892,
2143,
1312,
29889,
8741,
5155,
1104,
1218,
304,
278,
11261,
10161,
2820,
671,
470,
7972,
671,
310,
1284,
886,
29892,
322,
13879,
13787,
3277,
671,
526,
4944,
297,
6137,
518,
29896,
10514,
29911,
29896,
2597,
999,
29899,
1853,
543,
2371,
29908,
1836,
13,
13,
4136,
2277,
29871,
13,
13,
29903,
14208,
29899,
4984,
2955,
15593,
5155,
1048,
3033,
6751,
411,
2060,
848,
322,
773,
1284,
886,
29889,
13,
13,
29871,
3579,
7031,
293,
4038,
1068,
462,
1678,
3579,
14023,
5155,
1068,
13,
29871,
448,
2683,
2683,
448,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
9072,
13,
29871,
8565,
1558,
292,
322,
5133,
1259,
671,
259,
6975,
366,
15648,
1438,
11404,
630,
848,
470,
1284,
886,
411,
4045,
29973,
1815,
366,
2367,
6455,
310,
278,
714,
26807,
470,
12141,
29879,
310,
596,
5353,
1080,
29973,
13,
29871,
26748,
943,
13787,
3277,
671,
965,
4683,
727,
13879,
393,
9213,
366,
2130,
322,
671,
278,
13676,
29973,
1815,
366,
2649,
592,
920,
393,
3796,
29973,
6975,
727,
1063,
2594,
26536,
304,
3033,
6751,
411,
322,
773,
1438,
848,
29973,
1724,
526,
896,
29973,
13,
29871,
4803,
310,
848,
322,
1284,
886,
3986,
1815,
366,
3867,
6455,
310,
920,
366,
505,
1304,
278,
11404,
630,
11029,
20414,
848,
297,
596,
6944,
29973,
1815,
366,
8453,
920,
278,
13676,
310,
1284,
886,
505,
28482,
596,
6944,
1602,
12112,
470,
7609,
1080,
29973,
13,
29871,
14305,
627,
310,
278,
2060,
632,
10878,
366,
763,
304,
3440,
373,
738,
916,
10879,
310,
278,
2060,
304,
2635,
29892,
470,
10879,
393,
366,
23483,
403,
29973,
13,
13,
1469,
24352,
13,
9072,
29899,
13,
13,
4074,
1493,
1301,
924,
29879,
892,
19673,
964,
405,
29963,
4243,
29896,
29900,
16114,
293,
7047,
9310,
29992,
29933,
29946,
29946,
14664,
24352,
310,
15593,
848,
471,
22332,
9424,
773,
2793,
7418,
9310,
29992,
29933,
29946,
29945,
14664,
17250,
1303,
886,
310,
278,
1301,
924,
29879,
4944,
278,
3275,
4148,
411,
263,
6314,
573,
975,
1493,
310,
380,
1296,
7694,
20890,
304,
1269,
15593,
1139,
29889,
3824,
29892,
599,
15593,
848,
892,
274,
6797,
28262,
5313,
3598,
773,
13997,
7300,
368,
26118,
411,
278,
5925,
5155,
322,
1820,
3161,
310,
5314,
6368,
9310,
29992,
29933,
29946,
29953,
1402,
518,
29992,
29933,
29946,
29955,
29962,
1125,
10757,
29914,
2559,
586,
362,
21862,
29892,
3646,
287,
6471,
29892,
6055,
29892,
2060,
5314,
10174,
29892,
322,
671,
29889,
1987,
278,
2472,
274,
6797,
363,
1269,
7663,
471,
337,
29899,
949,
322,
29537,
287,
22799,
3598,
29889,
319,
5925,
261,
1058,
471,
451,
9701,
297,
278,
2060,
25499,
7120,
14137,
297,
15017,
749,
411,
13622,
6944,
363,
12536,
3097,
9310,
29992,
29933,
29946,
29947,
14664,
13,
13,
24399,
23378,
848,
373,
671,
470,
7972,
671,
310,
1284,
886,
29892,
322,
13879,
13787,
3277,
671,
29892,
892,
769,
7625,
515,
278,
15593,
848,
29889,
450,
11561,
564,
5921,
892,
9401,
2629,
322,
4822,
1301,
924,
29879,
29892,
322,
4256,
6703,
2143,
1312,
29892,
2745,
3619,
15038,
322,
963,
267,
892,
15659,
29889,
450,
26480,
7395,
26946,
952,
5134,
5155,
2437,
11407,
3889,
1426,
20890,
1048,
671,
310,
26480,
848,
322,
1284,
886,
29889,
2538,
29886,
787,
267,
304,
8018,
5155,
892,
1303,
322,
9401,
411,
278,
274,
6797,
15593,
848,
304,
1423,
393,
278,
11561,
25312,
2545,
1664,
5221,
424,
3736,
1103,
3145,
4822,
24894,
8977,
1080,
29889,
13,
13,
1349,
13826,
1104,
1218,
304,
671,
310,
1284,
886,
892,
451,
7417,
310,
1269,
916,
29936,
777,
1284,
886,
892,
8018,
304,
901,
1135,
697,
10929,
29889,
1334,
505,
5480,
5439,
278,
1284,
886,
5034,
304,
278,
758,
24130,
424,
10929,
322,
278,
1556,
4100,
9949,
29889,
13,
13,
12542,
886,
426,
29937,
29879,
29941,
29913,
13,
4936,
13,
13,
1349,
13163,
380,
1296,
8948,
414,
892,
15593,
287,
29901,
29871,
29896,
29900,
24899,
14722,
29892,
4832,
16274,
1199,
29892,
5320,
315,
29984,
29902,
4120,
654,
414,
29892,
5320,
767,
18150,
322,
3023,
8898,
29899,
29885,
21079,
29889,
3834,
27138,
4934,
14581,
16178,
313,
29872,
29889,
29887,
1696,
8455,
29914,
695,
262,
8910,
470,
21567,
29914,
695,
262,
8910,
467,
4124,
1493,
12712,
9875,
5874,
322,
1894,
2101,
681,
7881,
29899,
6451,
839,
9045,
5786,
3070,
29876,
29930,
353,
29871,
29896,
29955,
511,
5925,
29914,
371,
9733,
21561,
3070,
29876,
29930,
353,
29871,
29955,
29897,
322,
2304,
25700,
3704,
14014,
9045,
14379,
322,
19224,
17873,
3070,
29876,
29930,
353,
29871,
29953,
467,
3834,
27138,
750,
17785,
297,
2060,
25785,
297,
3196,
10161,
310,
2562,
29889,
7849,
750,
3796,
363,
777,
2440,
297,
1894,
2101,
681,
349,
19127,
29889,
13,
13,
29909,
3001,
310,
10081,
29899,
29872,
523,
1006,
7406,
892,
18043,
5634,
29906,
29953,
5375,
322,
1023,
2319,
29899,
2972,
1006,
7406,
21677,
1824,
10907,
29889,
4124,
1493,
3309,
364,
4618,
515,
29871,
29906,
29941,
304,
29871,
29955,
29945,
1375,
313,
12483,
6751,
29871,
29945,
29900,
1375,
467,
18372,
9404,
1006,
7406,
892,
18043,
3700,
29899,
517,
29899,
2161,
5634,
1552,
9886,
1006,
7406,
1304,
4971,
668,
470,
4382,
6710,
29889,
13,
13,
29943,
573,
963,
267,
892,
15659,
297,
8220,
304,
8967,
470,
7972,
671,
310,
1284,
886,
515,
278,
26480,
2060,
29901,
13787,
3277,
18987,
322,
8898,
29936,
20382,
1900,
6944,
322,
17842,
29936,
13284,
9324,
8333,
29936,
14338,
716,
5925,
29892,
322,
29936,
2473,
29899,
5563,
15576,
3097,
29889,
450,
13879,
14457,
1218,
671,
892,
9063,
358,
304,
1900,
6944,
29892,
17189,
2347,
29527,
749,
29892,
5100,
292,
664,
3965,
1973,
29892,
8674,
1288,
5177,
363,
1735,
29892,
24329,
322,
671,
3097,
29892,
6625,
4127,
310,
5925,
1284,
886,
29892,
16089,
7018,
322,
12084,
29889,
450,
963,
267,
526,
19138,
1891,
297,
6137,
518,
29906,
10514,
29911,
29906,
2597,
999,
29899,
1853,
543,
2371,
9092,
322,
15648,
2400,
29889,
1222,
16305,
279,
11839,
322,
6455,
8632,
1218,
963,
267,
322,
13997,
526,
4944,
297,
278,
518,
20182,
944,
653,
3497,
10514,
17061,
29896,
2597,
999,
29899,
1853,
543,
19303,
944,
653,
29899,
15388,
10758,
411,
777,
5134,
297,
278,
1426,
29889,
13,
13,
4136,
2277,
29871,
13,
13,
855,
1296,
7694,
16705,
373,
671,
470,
7972,
671,
310,
26480,
2060,
1284,
886,
29892,
322,
13879,
14457,
1218,
671,
29901,
963,
267,
322,
13997,
15659,
29889,
13,
13,
29871,
448,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
28400,
13,
29871,
3579,
1349,
13826,
1068,
462,
462,
3986,
3579,
29907,
14404,
1068,
13,
29871,
448,
2683,
2683,
2683,
489,
448,
2683,
2683,
2683,
2683,
2683,
22158,
13,
29871,
3579,
17171,
8079,
26480,
13756,
17637,
383,
22255,
4214,
29903,
1068,
462,
418,
13,
13,
29871,
512,
1579,
3837,
3277,
18987,
322,
8898,
462,
268,
10266,
17157,
292,
1880,
3233,
10608,
29899,
28990,
29905,
13,
462,
462,
462,
418,
10266,
9705,
11427,
263,
16650,
293,
2948,
29905,
13,
462,
462,
462,
418,
10266,
3767,
1477,
8333,
10757,
322,
28602,
1907,
363,
3158,
29905,
13,
462,
462,
462,
418,
10266,
1771,
292,
292,
2305,
4208,
13,
13,
29871,
18601,
292,
1900,
6944,
322,
17842,
632,
10266,
18601,
292,
9126,
11029,
20414,
14188,
29905,
13,
462,
462,
462,
418,
10266,
18601,
292,
17842,
322,
1735,
29905,
13,
462,
462,
462,
418,
10266,
13737,
3568,
362,
13,
13,
29871,
5915,
5946,
9324,
8333,
462,
795,
10266,
17166,
13284,
297,
9126,
11029,
20414,
322,
4665,
9045,
7291,
29905,
13,
462,
462,
462,
418,
10266,
10682,
292,
25078,
297,
8004,
322,
5133,
1259,
848,
29905,
13,
462,
462,
462,
418,
10266,
15351,
19843,
13,
13,
29871,
10682,
292,
716,
5925,
462,
632,
10266,
10682,
292,
5925,
2729,
373,
1284,
886,
29905,
13,
462,
462,
462,
418,
10266,
5293,
278,
5925,
1158,
3002,
13,
13,
29871,
14974,
29899,
5563,
15576,
3097,
462,
965,
10266,
512,
1579,
3837,
3277,
1735,
472,
1422,
1788,
11174,
29905,
13,
462,
462,
462,
418,
10266,
18601,
292,
263,
6757,
2948,
13,
13,
29871,
3579,
4519,
1783,
24125,
341,
3352,
29902,
1299,
4214,
501,
1660,
8079,
26480,
13756,
17637,
383,
22255,
4214,
29903,
1068,
1678,
13,
13,
29871,
1876,
277,
358,
304,
1900,
6944,
462,
308,
10266,
2630,
26420,
848,
322,
10757,
29905,
13,
462,
462,
462,
418,
10266,
1954,
771,
1747,
1894,
2101,
681,
9045,
714,
26807,
13,
13,
29871,
2431,
346,
2347,
29527,
749,
462,
462,
10266,
1763,
6297,
322,
664,
3030,
29905,
13,
462,
462,
462,
418,
10266,
7870,
295,
3335,
29905,
13,
462,
462,
462,
418,
10266,
9959,
7186,
29889,
25734,
19854,
13,
13,
29871,
3831,
15133,
664,
3965,
1973,
462,
9651,
10266,
5974,
322,
664,
1359,
29905,
13,
462,
462,
462,
418,
10266,
15351,
3273,
1179,
322,
2507,
957,
13,
13,
29871,
9205,
466,
1288,
5177,
363,
1735,
1669,
10266,
1528,
280,
310,
767,
18150,
29892,
8674,
1288,
1735,
29905,
13,
462,
462,
462,
418,
10266,
28267,
9045,
2562,
2948,
325,
20333,
29879,
1274,
1082,
2562,
8569,
13,
13,
29871,
4360,
9233,
322,
671,
3097,
462,
308,
10266,
13969,
21971,
363,
1422,
12990,
819,
778,
29905,
13,
462,
462,
462,
418,
10266,
11028,
1821,
2472,
29905,
13,
462,
462,
462,
418,
10266,
18601,
363,
6509,
13,
13,
29871,
24596,
4127,
310,
5925,
1284,
886,
462,
1678,
10266,
10550,
4955,
322,
1158,
3002,
29905,
13,
462,
462,
462,
418,
10266,
3630,
27550,
29892,
23633,
322,
27028,
13,
13,
29871,
14184,
309,
7018,
322,
12084,
462,
418,
10266,
4124,
4925,
1889,
29905,
13,
462,
462,
462,
418,
10266,
8108,
29879,
322,
10898,
310,
12084,
13,
29871,
448,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
28400,
13,
13,
29930,
2890,
29925,
5634,
8100,
6751,
380,
1296,
8948,
414,
297,
2893,
9215,
20136,
10757,
29899,
29886,
1461,
625,
330,
2547,
29892,
2594,
26536,
322,
16650,
583,
363,
20414,
2060,
10521,
13,
13,
11403,
310,
26480,
8010,
10987,
886,
13,
2683,
1378,
5634,
13,
13,
2277,
29937,
512,
1579,
3837,
3277,
25219,
322,
1858,
9450,
10726,
13,
13,
4074,
1493,
12712,
17189,
2347,
393,
278,
26480,
2060,
1284,
886,
892,
5407,
363,
2893,
9215,
1788,
5626,
29892,
1871,
292,
1880,
3233,
8898,
1602,
12112,
304,
7899,
20414,
29892,
1513,
292,
7788,
988,
2669,
4180,
471,
5718,
2705,
6460,
322,
22545,
1218,
363,
3133,
292,
13258,
358,
297,
315,
29984,
29902,
29889,
2688,
892,
6892,
17878,
408,
2534,
7621,
7037,
363,
454,
19698,
472,
263,
6133,
13705,
3233,
1135,
472,
9045,
4818,
3233,
29892,
3704,
17737,
17068,
304,
4797,
8898,
2693,
1860,
297,
315,
29984,
29902,
297,
1894,
2101,
681,
349,
19127,
29889,
4124,
1493,
12712,
17189,
2347,
393,
278,
7418,
310,
15171,
6270,
848,
515,
1894,
2101,
681,
349,
19127,
1644,
414,
373,
594,
2276,
663,
304,
16605,
5570,
29899,
276,
2055,
2760,
2562,
975,
931,
322,
9377,
380,
1296,
7694,
1881,
9324,
6419,
6625,
4127,
363,
1438,
11976,
29889,
13,
13,
3563,
497,
29892,
278,
4797,
1284,
886,
9324,
6419,
6273,
363,
3033,
6751,
297,
20414,
29899,
29888,
542,
3880,
664,
29892,
10734,
746,
896,
26118,
411,
7536,
1907,
322,
2594,
26536,
8900,
297,
8674,
1288,
322,
1887,
3030,
29879,
313,
29872,
29889,
29887,
1696,
9045,
4818,
29899,
23834,
2988,
29892,
13925,
6694,
297,
17168,
293,
4486,
2264,
10643,
467,
3834,
15593,
12712,
17878,
315,
29984,
29902,
848,
671,
408,
5407,
363,
9926,
3241,
17649,
3033,
5049,
1546,
2305,
297,
1422,
16178,
29892,
363,
1342,
1546,
8898,
29899,
29885,
21079,
322,
4120,
654,
414,
29889,
13,
13,
29958,
26345,
29902,
1074,
278,
6297,
310,
848,
408,
2869,
20794,
16650,
293,
2305,
1568,
17649,
304,
278,
4565,
1220,
4120,
654,
414,
29892,
322,
769,
5934,
304,
4565,
1220,
4120,
654,
414,
29892,
525,
4806,
817,
304,
437,
1554,
1048,
445,
29892,
1371,
502,
322,
591,
674,
1371,
366,
29915,
1213,
29930,
313,
3260,
29871,
29906,
29897,
13,
13,
4074,
1493,
12712,
15574,
13384,
5932,
1048,
278,
10231,
758,
791,
663,
322,
8859,
373,
842,
310,
5557,
519,
17168,
293,
5855,
4249,
1894,
2101,
681,
2305,
29889,
319,
1353,
7829,
278,
1284,
886,
1033,
1871,
263,
901,
15171,
6270,
349,
19127,
1904,
29892,
411,
7621,
7881,
5297,
29841,
29892,
263,
3109,
4047,
29877,
287,
2948,
304,
2562,
28289,
322,
901,
8543,
671,
310,
7788,
29889,
4803,
310,
278,
1284,
886,
297,
10296,
411,
916,
3625,
10757,
471,
15574,
8967,
470,
7972,
29889,
1152,
1342,
29892,
773,
15659,
2594,
26536,
304,
3211,
292,
20136,
10757,
29899,
29886,
1461,
625,
330,
2547,
29901,
304,
1371,
5649,
24894,
29467,
29899,
5563,
1820,
4180,
27717,
2582,
29936,
304,
2048,
373,
2472,
16531,
1549,
315,
29984,
29902,
322,
7928,
434,
1546,
767,
18150,
29892,
349,
19127,
10907,
322,
23507,
363,
14014,
18987,
29936,
322,
304,
427,
4018,
3815,
5353,
1080,
322,
18987,
304,
3211,
20414,
4225,
15659,
1549,
315,
29984,
29902,
10174,
297,
9045,
1644,
414,
29889,
13,
13,
2277,
29937,
18601,
292,
6407,
29124,
625,
322,
9897,
1464,
13,
13,
1576,
26480,
1889,
3734,
380,
1296,
8948,
414,
304,
671,
278,
1284,
886,
515,
278,
26480,
6559,
373,
20136,
10757,
29899,
29886,
1461,
625,
330,
2547,
304,
9432,
373,
322,
12439,
2594,
26536,
29892,
427,
370,
9306,
322,
16650,
583,
363,
4857,
1747,
2562,
313,
20678,
26480,
18994,
20890,
467,
4124,
1493,
12712,
297,
315,
29984,
29902,
16178,
8967,
773,
278,
26480,
13676,
297,
1009,
664,
411,
9045,
10907,
29889,
13,
13,
29958,
26345,
29902,
20333,
29885,
773,
963,
29889,
306,
1304,
963,
297,
777,
16705,
10325,
5634,
6293,
1073,
29892,
525,
4013,
338,
263,
15837,
310,
5925,
2023,
591,
2307,
1073,
1438,
24899,
936,
20035,
470,
3036,
23883,
537,
29889,
910,
338,
278,
10757,
29889,
4525,
526,
278,
2712,
393,
505,
1063,
17005,
29892,
445,
338,
825,
591,
505,
1063,
3063,
472,
322,
445,
338,
825,
896,
505,
1476,
30065,
856,
363,
592,
29892,
372,
20333,
29879,
1407,
5407,
1213,
29930,
313,
29907,
29984,
29902,
4120,
654,
261,
29871,
29906,
29897,
13,
13,
29928,
790,
331,
3381,
310,
278,
26480,
6559,
13676,
5331,
304,
1716,
28602,
4695,
322,
21467,
9678,
800,
1048,
4857,
1747,
2562,
29892,
10734,
297,
664,
29886,
6048,
988,
315,
29984,
29902,
471,
15685,
29889,
10987,
886,
4049,
378,
2764,
1127,
411,
15593,
12712,
20333,
1887,
27482,
29892,
15561,
1454,
3277,
393,
916,
10907,
892,
10623,
3277,
2788,
18066,
267,
322,
27032,
7014,
363,
3211,
292,
963,
29889,
3834,
27138,
1304,
278,
1284,
886,
408,
2756,
3568,
362,
393,
1009,
9063,
358,
322,
14231,
892,
7088,
8000,
322,
1033,
1207,
263,
4328,
297,
4857,
1747,
9045,
714,
26807,
29889,
13,
13,
2831,
777,
29892,
278,
26480,
1284,
886,
9508,
287,
16800,
3158,
313,
29872,
29889,
29887,
1696,
8454,
393,
4452,
310,
1775,
17196,
2562,
892,
5134,
297,
278,
9045,
2669,
4472,
467,
1152,
1784,
29892,
896,
16267,
287,
17842,
373,
2545,
1664,
5626,
29892,
1316,
408,
278,
10879,
310,
5264,
11806,
1934,
373,
9045,
29892,
278,
1006,
22594,
310,
7536,
1907,
322,
2594,
26536,
15659,
1549,
278,
5925,
322,
278,
13500,
310,
19383,
9045,
4818,
848,
411,
8898,
2136,
414,
29889,
9897,
1464,
373,
278,
4100,
6297,
310,
1894,
2101,
681,
13925,
363,
4857,
1747,
2562,
11029,
322,
16375,
15332,
29892,
322,
278,
817,
304,
9324,
264,
5557,
573,
2562,
322,
11157,
278,
11029,
310,
2834,
363,
2305,
411,
17168,
293,
4486,
2264,
267,
29892,
892,
15574,
8967,
29889,
13,
13,
2277,
29937,
5915,
5946,
3767,
1477,
8333,
13,
13,
4074,
1493,
12712,
1497,
393,
278,
26480,
13676,
4944,
7788,
363,
315,
29984,
29902,
6694,
297,
8004,
848,
322,
4665,
9045,
29892,
1090,
5105,
27240,
24899,
8910,
9793,
322,
19843,
310,
716,
9045,
5925,
414,
304,
315,
29984,
29902,
29889,
3834,
1304,
278,
2582,
363,
10230,
411,
1009,
1887,
848,
304,
20436,
5987,
10679,
310,
20414,
2594,
26536,
322,
16650,
583,
29889,
512,
697,
2777,
29892,
26480,
2582,
892,
1304,
304,
26922,
263,
24963,
363,
263,
7881,
3033,
5049,
322,
9793,
1824,
29889,
13,
13,
3744,
26807,
8967,
491,
15593,
12712,
5134,
2253,
8004,
310,
29901,
773,
848,
304,
1871,
10608,
3907,
29936,
920,
315,
29984,
29902,
508,
664,
472,
2999,
9045,
18020,
1788,
11174,
29936,
20414,
10174,
322,
16650,
583,
29892,
322,
29936,
278,
995,
322,
19854,
310,
3800,
29899,
392,
29899,
1332,
3873,
261,
29899,
5317,
18445,
313,
4716,
2479,
278,
4978,
310,
848,
2729,
373,
278,
5320,
29899,
4537,
15837,
29901,
9212,
29892,
937,
10256,
488,
29892,
19194,
29892,
4654,
10256,
488,
29892,
322,
7472,
467,
450,
995,
310,
19383,
7014,
322,
11465,
6703,
20811,
7134,
1549,
278,
2060,
10174,
471,
17644,
24084,
3192,
29889,
13,
13,
29958,
26345,
15597,
20333,
345,
4944,
1790,
7546,
310,
2472,
393,
20333,
29879,
20436,
7964,
7291,
322,
10679,
29892,
393,
20333,
29879,
6296,
297,
7134,
322,
17924,
895,
322,
7271,
515,
263,
7300,
2318,
29889,
739,
20333,
29879,
2289,
427,
4018,
287,
278,
664,
393,
591,
20333,
345,
2309,
1213,
29930,
313,
29907,
29984,
29902,
4120,
654,
261,
29871,
29896,
29897,
13,
13,
2277,
29937,
10682,
292,
1570,
10550,
13,
13,
1666,
2842,
261,
15593,
12712,
5439,
5837,
297,
607,
278,
1284,
886,
28482,
470,
23388,
1009,
664,
29892,
15561,
1454,
1133,
5923,
10757,
470,
9213,
304,
1842,
4418,
886,
29889,
21882,
8967,
773,
278,
1284,
886,
297,
9150,
16690,
8324,
363,
11029,
20414,
5925,
29889,
512,
697,
1342,
29892,
278,
26480,
5925,
2874,
471,
1304,
408,
263,
1904,
363,
7881,
29899,
6707,
5925,
29892,
411,
278,
18445,
1871,
292,
278,
5925,
3815,
20333,
29879,
7418,
322,
23415,
310,
848,
29889,
512,
1790,
1342,
29892,
278,
26480,
1158,
3002,
471,
7436,
746,
20382,
263,
9045,
2669,
304,
22332,
1296,
263,
315,
29984,
29902,
2060,
29889,
739,
471,
7972,
278,
1284,
886,
367,
1304,
491,
5925,
414,
322,
24899,
14722,
304,
1302,
29899,
13892,
1006,
7316,
5925,
3211,
292,
2702,
7536,
1907,
29889,
13,
13,
2277,
29937,
14974,
29899,
10108,
2401,
506,
3097,
13,
13,
2887,
5439,
2038,
29892,
278,
13676,
892,
17189,
2347,
491,
15593,
12712,
408,
5407,
363,
12789,
4746,
373,
2545,
1664,
349,
19127,
322,
315,
29984,
29902,
5626,
29892,
322,
363,
19383,
2472,
322,
7134,
1546,
2305,
472,
1422,
11174,
310,
278,
9045,
1788,
29889,
450,
7037,
363,
278,
26480,
1284,
886,
304,
9949,
1735,
472,
2999,
11174,
313,
29876,
1288,
29892,
24894,
29467,
470,
14014,
6757,
29892,
9045,
4818,
322,
7881,
3233,
29897,
471,
17644,
24084,
3192,
29892,
411,
278,
13676,
3595,
408,
13138,
10757,
304,
313,
29896,
29897,
9500,
5874,
8898,
322,
13705,
29892,
313,
29906,
29897,
9949,
8674,
1288,
18987,
29892,
313,
29941,
29897,
20436,
5987,
3815,
5353,
1080,
322,
1602,
12112,
29892,
322,
313,
29946,
29897,
2304,
4120,
654,
414,
20333,
23274,
304,
11157,
2562,
29889,
450,
817,
363,
19595,
653,
16650,
583,
472,
1422,
11174,
471,
15659,
29892,
321,
29889,
29887,
1696,
8898,
322,
13925,
6694,
304,
11157,
2130,
304,
4185,
332,
635,
8210,
5786,
29892,
11828,
13925,
1162,
9216,
358,
322,
3240,
2509,
16650,
583,
322,
2253,
29311,
3381,
310,
2562,
5786,
29889,
21882,
15593,
12712,
12992,
304,
278,
1284,
886,
408,
9004,
1218,
278,
995,
310,
263,
6757,
2948,
363,
4857,
1747,
2562,
29889,
13,
13,
29958,
26345,
3492,
508,
925,
1074,
920,
27826,
6757,
363,
697,
4038,
310,
2562,
29892,
1316,
408,
2278,
6614,
385,
29747,
29892,
723,
664,
4822,
916,
10161,
310,
2562,
1213,
29930,
313,
29909,
9431,
293,
29871,
29906,
29897,
13,
13,
20738,
943,
22855,
1218,
4803,
310,
26480,
8010,
10987,
886,
13,
2683,
2683,
9072,
29899,
13,
13,
2277,
29937,
1876,
277,
358,
304,
6407,
29124,
625,
13,
13,
1523,
2415,
358,
304,
13138,
1900,
6944,
2562,
322,
4857,
1747,
1894,
2101,
681,
9045,
714,
26807,
471,
8967,
304,
367,
263,
4549,
17385,
1061,
363,
278,
671,
310,
26480,
1284,
886,
29889,
4124,
1493,
12712,
6892,
12707,
310,
278,
13521,
304,
671,
8018,
10757,
304,
11157,
5375,
322,
3815,
6944,
29892,
12021,
2253,
349,
19127,
5786,
29892,
322,
1207,
263,
4328,
29889,
4124,
1493,
12712,
297,
24899,
936,
322,
315,
29984,
29902,
16178,
24867,
1048,
773,
278,
1284,
886,
304,
376,
1287,
1560,
4254,
29908,
322,
9324,
264,
1009,
8004,
310,
920,
304,
11157,
278,
9045,
310,
2305,
17378,
1009,
5786,
29889,
461,
29879,
515,
8898,
322,
16336,
10643,
3736,
1103,
3145,
25312,
278,
1021,
17385,
362,
363,
6133,
29899,
5563,
16650,
293,
671,
29889,
4124,
1493,
12712,
297,
5164,
16178,
12707,
310,
278,
995,
310,
278,
848,
363,
7595,
292,
7609,
1080,
322,
23274,
29889,
13,
13,
29958,
26345,
29902,
864,
1900,
6944,
29889,
306,
763,
304,
367,
2221,
304,
5645,
393,
29889,
306,
20333,
29885,
25561,
411,
848,
29892,
322,
306,
20333,
29885,
24507,
278,
1407,
1900,
6944,
5634,
23261,
472,
848,
322,
24507,
304,
2274,
988,
591,
20333,
345,
1063,
29892,
988,
591,
526,
322,
988,
591,
864,
304,
748,
29930,
1213,
313,
29907,
1915,
8910,
29871,
29941,
29897,
13,
13,
2277,
29937,
2431,
346,
2347,
830,
2608,
749,
13,
13,
4074,
1493,
12712,
297,
263,
3464,
310,
1894,
2101,
681,
349,
19127,
16178,
322,
3030,
29879,
1476,
26480,
1284,
886,
373,
20414,
7536,
1907,
322,
2594,
26536,
8018,
304,
1009,
664,
5634,
19562,
2854,
630,
916,
10757,
29892,
2756,
381,
2168,
278,
1855,
29899,
19264,
27482,
310,
1894,
2101,
681,
13154,
322,
349,
19127,
10907,
322,
4944,
671,
519,
7134,
29889,
8725,
29892,
278,
11404,
630,
848,
1304,
297,
278,
5925,
9875,
278,
664,
310,
349,
19127,
13925,
297,
16867,
322,
12990,
11407,
3132,
2562,
29889,
7870,
292,
471,
385,
4100,
7329,
29901,
746,
3461,
17745,
22819,
2618,
411,
16800,
2472,
4225,
372,
6969,
28602,
4695,
671,
29889,
13,
13,
1349,
852,
411,
385,
8004,
310,
4665,
9045,
322,
7271,
297,
315,
29984,
29902,
7470,
304,
3033,
482,
901,
28520,
411,
278,
848,
29889,
3834,
17189,
2347,
278,
5925,
13676,
408,
1556,
5407,
363,
13925,
297,
4266,
1891,
11104,
313,
29872,
29889,
29887,
1696,
17168,
293,
5855,
11104,
29897,
1135,
363,
2498,
391,
13925,
29892,
1363,
896,
21309,
373,
2702,
10161,
310,
2562,
29889,
438,
3341,
892,
17999,
1048,
1058,
278,
5925,
3646,
287,
322,
1058,
723,
2125,
23134,
304,
671,
278,
1284,
886,
29889,
21882,
15593,
12712,
12992,
304,
278,
817,
363,
14014,
322,
1887,
3030,
29879,
304,
367,
5545,
746,
773,
278,
1788,
29899,
8157,
26480,
2060,
1284,
886,
304,
1871,
8898,
470,
3814,
1006,
794,
1080,
29889,
13,
13,
29958,
26345,
3492,
437,
817,
304,
367,
263,
2586,
16010,
393,
263,
4797,
3461,
298,
2247,
4100,
24894,
8977,
1848,
12651,
29892,
322,
393,
4797,
1602,
12112,
526,
1754,
1728,
3407,
304,
901,
13173,
848,
29892,
607,
723,
1871,
263,
901,
12430,
5544,
573,
1234,
304,
263,
1788,
2228,
1213,
29930,
313,
15644,
4120,
654,
261,
29871,
29906,
29897,
13,
13,
29903,
1310,
284,
15593,
12712,
7829,
393,
5925,
414,
29892,
9045,
4818,
13925,
322,
8898,
2136,
414,
1122,
505,
1422,
639,
1441,
29879,
310,
825,
7199,
4637,
19998,
13988,
10757,
304,
2125,
304,
1880,
29899,
5563,
8898,
322,
5220,
292,
6471,
29889,
13,
13,
2277,
29937,
4360,
9233,
322,
4803,
3097,
13,
13,
13504,
296,
292,
5925,
1284,
886,
297,
29871,
29896,
29901,
29941,
29901,
29906,
29945,
3461,
3402,
313,
29896,
29899,
3488,
1820,
7191,
29901,
29871,
29941,
29899,
3488,
15837,
29901,
29871,
29906,
29945,
29899,
3488,
13173,
3461,
511,
21302,
491,
263,
8656,
4086,
15837,
322,
848,
1462,
944,
471,
17644,
2714,
491,
15593,
12712,
304,
5957,
376,
14481,
363,
14332,
1213,
450,
1820,
7191,
363,
3158,
313,
262,
278,
2186,
13676,
29897,
892,
5545,
15031,
363,
21309,
3815,
9678,
800,
1048,
4857,
1747,
2562,
29889,
3251,
635,
29892,
1906,
411,
901,
5925,
470,
848,
7271,
18365,
278,
13173,
2472,
4944,
297,
278,
2989,
13676,
29889,
349,
7420,
4086,
19138,
583,
892,
2714,
304,
367,
27131,
363,
671,
491,
263,
3464,
310,
13925,
5634,
5514,
577,
1156,
278,
28694,
310,
6261,
9506,
1048,
920,
278,
1284,
886,
1033,
14169,
2305,
297,
1422,
16178,
29889,
21882,
15593,
12712,
7829,
19138,
583,
4944,
263,
2224,
1582,
964,
278,
2989,
13676,
29889,
13,
13,
29958,
26345,
29902,
1348,
372,
20333,
29879,
2805,
278,
2472,
714,
727,
297,
5948,
4697,
342,
1821,
883,
29892,
577,
393,
2305,
505,
385,
2984,
304,
1106,
472,
263,
15837,
393,
4083,
1438,
526,
278,
1820,
10161,
470,
508,
4192,
453,
1623,
322,
1106,
297,
901,
10809,
5634,
18103,
2305,
297,
1422,
16178,
864,
1422,
11174,
310,
2472,
29930,
1213,
313,
29907,
29984,
29902,
4120,
654,
261,
29871,
29896,
29897,
13,
13,
4074,
1493,
12712,
17189,
2347,
393,
3800,
29899,
392,
29899,
1332,
3873,
261,
29899,
5317,
18445,
892,
21114,
363,
17583,
2198,
292,
848,
373,
534,
1975,
322,
19262,
297,
2562,
28289,
4822,
9045,
1644,
414,
29889,
3834,
892,
15041,
393,
278,
3233,
310,
8004,
3734,
304,
6613,
1438,
18445,
2313,
283,
1431,
287,
3033,
5049,
5634,
1552,
10259,
1384,
292,
19854,
10754,
471,
4100,
29889,
26480,
13676,
892,
9401,
7853,
2197,
411,
916,
1856,
29899,
13525,
13676,
310,
29537,
287,
12990,
277,
848,
393,
5786,
4520,
29892,
1363,
896,
8967,
11465,
6703,
21551,
313,
29878,
1624,
1135,
925,
29537,
287,
29897,
315,
29984,
29902,
848,
29889,
13,
13,
2277,
29937,
3831,
15133,
5244,
5254,
1973,
13,
13,
2517,
6751,
5100,
292,
664,
1261,
4167,
322,
1641,
931,
6460,
892,
28526,
5626,
29889,
9267,
15593,
12712,
5439,
278,
5469,
310,
664,
297,
1894,
2101,
681,
349,
19127,
6055,
408,
263,
2594,
4336,
304,
3033,
6751,
411,
278,
1284,
886,
29889,
5057,
13925,
2507,
957,
322,
13925,
3273,
1179,
892,
15574,
15659,
408,
17737,
17068,
304,
664,
3965,
1973,
297,
7592,
349,
19127,
6055,
322,
8674,
1288,
10643,
29889,
450,
18766,
310,
1641,
2221,
304,
15075,
475,
20458,
20414,
14231,
2729,
373,
278,
1284,
886,
471,
10425,
297,
8220,
304,
13925,
2507,
957,
29889,
13,
13,
2277,
29937,
9205,
466,
1288,
16738,
363,
10726,
13,
13,
2517,
18150,
892,
17189,
2347,
304,
505,
385,
4100,
6297,
297,
3033,
6751,
411,
278,
1284,
886,
322,
4444,
278,
946,
8395,
577,
393,
376,
17991,
2587,
5304,
373,
7613,
1213,
450,
18766,
310,
16089,
277,
1218,
322,
15075,
17225,
1735,
2629,
9045,
1644,
414,
322,
10907,
471,
11682,
29889,
21882,
27138,
24867,
1048,
278,
14656,
310,
2805,
1020,
428,
363,
16049,
11029,
20414,
472,
263,
931,
746,
767,
18150,
892,
17785,
297,
13013,
1791,
1247,
3864,
29889,
2315,
6751,
1880,
1274,
1082,
2562,
664,
18132,
297,
349,
19127,
6055,
471,
884,
15659,
408,
263,
7329,
10879,
292,
3480,
6703,
373,
318,
415,
1296,
310,
1284,
886,
29889,
13,
13,
2277,
29937,
24596,
4127,
310,
10550,
10987,
886,
13,
13,
29924,
520,
15593,
12712,
411,
15620,
7271,
1985,
297,
1894,
2101,
681,
349,
19127,
892,
9543,
310,
278,
27012,
4110,
310,
278,
16417,
29928,
315,
29984,
29902,
5925,
1824,
322,
1784,
892,
9543,
310,
278,
25012,
310,
278,
1773,
333,
275,
13326,
3821,
315,
29984,
29902,
5925,
3564,
1549,
607,
278,
16417,
29928,
848,
322,
26480,
2060,
1284,
886,
892,
766,
12846,
262,
630,
29889,
450,
1824,
20333,
29879,
12242,
322,
23123,
479,
17037,
29892,
10757,
2967,
29892,
24771,
1546,
7881,
29899,
6451,
839,
322,
5874,
19623,
5786,
322,
7436,
5469,
892,
17878,
13686,
3598,
29889,
910,
28482,
4880,
363,
278,
26480,
2060,
29892,
884,
11682,
363,
967,
5221,
7606,
2948,
322,
671,
310,
701,
29899,
517,
29899,
1256,
315,
29984,
29902,
848,
29889,
4525,
5680,
892,
9024,
304,
278,
26002,
310,
278,
1284,
886,
363,
4857,
1747,
349,
19127,
11029,
363,
1894,
2101,
681,
23507,
29892,
3704,
1009,
7037,
304,
427,
4018,
1887,
315,
29984,
29902,
14188,
322,
26529,
6944,
29889,
13,
13,
2277,
29937,
14184,
309,
7018,
322,
22365,
362,
13,
13,
7439,
12654,
1934,
12707,
13686,
3598,
1048,
278,
982,
278,
28923,
26480,
766,
12846,
3381,
1889,
17785,
380,
1296,
8948,
414,
297,
848,
19854,
322,
7134,
14523,
29892,
24084,
3192,
1881,
322,
4944,
28602,
1907,
363,
8454,
322,
4340,
1881,
7536,
304,
2186,
5281,
2582,
29889,
13,
13,
29958,
26345,
29902,
437,
763,
5539,
1552,
13676,
18899,
2198,
292,
278,
380,
1296,
7694,
7536,
1907,
1250,
304,
278,
380,
1296,
8948,
414,
746,
6721,
1048,
2594,
26536,
322,
427,
370,
9306,
29889,
376,
4013,
338,
825,
366,
20333,
345,
1497,
29892,
591,
20333,
345,
4586,
393,
373,
7613,
29889,
910,
338,
278,
2446,
4331,
29889,
1724,
508,
591,
437,
1048,
372,
3026,
306,
1348,
393,
20333,
29879,
2289,
13988,
304,
18145,
5485,
278,
8799,
362,
322,
304,
337,
465,
545,
2305,
393,
1009,
28848,
505,
1063,
6091,
1213,
29930,
313,
29909,
9431,
293,
29871,
29941,
29897,
13,
13,
1576,
1374,
1463,
26480,
5925,
2874,
471,
619,
1717,
287,
304,
263,
5221,
7606,
8402,
29899,
6132,
29899,
855,
566,
29891,
29899,
2865,
315,
29984,
29902,
11412,
363,
278,
982,
372,
9024,
278,
848,
29892,
20414,
7536,
1907,
322,
16650,
583,
29889,
830,
412,
630,
28602,
1907,
304,
3033,
482,
297,
2060,
29540,
471,
8967,
408,
16089,
277,
1218,
25871,
8004,
310,
278,
26480,
848,
29892,
322,
920,
848,
1033,
1871,
10608,
3907,
29889,
1932,
1162,
792,
292,
470,
9551,
292,
671,
310,
1284,
886,
29892,
27138,
4049,
5439,
28923,
10174,
313,
29872,
29889,
29887,
1696,
16089,
22731,
5353,
1080,
29892,
9793,
21396,
29892,
11465,
1230,
18987,
29892,
380,
1296,
7694,
29899,
690,
2842,
261,
7928,
434,
467,
11647,
297,
315,
29984,
29902,
16178,
892,
4100,
16089,
277,
4097,
310,
1438,
10174,
322,
297,
766,
12846,
262,
1218,
278,
26480,
13676,
29889,
4124,
1493,
12712,
7829,
393,
363,
6762,
10231,
3033,
5049,
411,
26480,
1284,
886,
3160,
11029,
20414,
11465,
5056,
29889,
13,
13,
29909,
15415,
839,
3460,
393,
2305,
2130,
29892,
2274,
322,
24443,
309,
403,
2472,
297,
1422,
5837,
29892,
777,
27138,
7829,
7212,
1218,
278,
1284,
886,
297,
1661,
29899,
17625,
21971,
29892,
1316,
408,
1856,
262,
1503,
322,
4863,
29899,
11303,
567,
29889,
5901,
7829,
7208,
12903,
892,
9763,
1026,
2153,
29892,
12666,
28007,
29892,
10257,
15477,
322,
3564,
28007,
322,
7395,
2472,
28914,
29889,
13,
13,
4205,
17348,
426,
29937,
29879,
29946,
29913,
13,
4936,
1360,
13,
13,
26289,
310,
10987,
886,
13,
2683,
5634,
13,
13,
4074,
1493,
12712,
1304,
278,
315,
29984,
29902,
5925,
1284,
886,
304,
1871,
8898,
29892,
6944,
29892,
13284,
5849,
322,
5925,
29889,
4803,
471,
14457,
630,
491,
13879,
1104,
1218,
304,
5375,
17385,
800,
29892,
278,
982,
10757,
471,
17189,
2347,
322,
9132,
29892,
278,
3030,
363,
671,
322,
22060,
411,
4045,
29889,
450,
10938,
472,
11479,
518,
29896,
10514,
29943,
29896,
2597,
999,
29899,
1853,
543,
1003,
9092,
19138,
7093,
1820,
6559,
1284,
886,
297,
278,
3030,
310,
278,
26480,
2060,
29889,
4124,
1493,
12712,
15783,
380,
1296,
8948,
414,
472,
1422,
11174,
310,
278,
9045,
1788,
5439,
313,
29896,
29897,
671,
310,
26480,
1284,
886,
10723,
515,
5133,
1259,
11404,
630,
315,
29984,
29902,
848,
297,
1422,
10161,
310,
2562,
29892,
322,
313,
29906,
29897,
13879,
14457,
1218,
671,
297,
278,
1894,
2101,
681,
349,
19127,
3030,
29889,
450,
10938,
8632,
1078,
278,
982,
297,
607,
278,
13962,
310,
1284,
886,
471,
6969,
1549,
26480,
14188,
322,
4256,
1230,
10174,
1549,
607,
7418,
29892,
23415,
29892,
19854,
322,
16705,
892,
23387,
964,
278,
5925,
29892,
411,
278,
12242,
310,
18443,
292,
373,
17696,
671,
297,
8898,
322,
6944,
29889,
13,
13,
21298,
12763,
310,
1820,
6559,
1284,
886,
297,
278,
3030,
310,
278,
26480,
2060,
29889,
9033,
29943,
29914,
29934,
26124,
29892,
7255,
1082,
364,
354,
398,
2454,
1238,
369,
29914,
29878,
354,
398,
2454,
5192,
17135,
29936,
315,
29984,
29902,
29892,
9126,
11029,
20414,
29936,
26480,
29892,
376,
8100,
6751,
624,
1296,
8948,
414,
297,
13355,
9215,
22096,
537,
7298,
5084,
29899,
29925,
1461,
625,
402,
2547,
29892,
2261,
26536,
322,
3767,
1845,
583,
363,
1954,
16123,
882,
1769,
3823,
29930,
29985,
29907,
29984,
29902,
4120,
654,
414,
892,
4100,
363,
16089,
277,
1218,
3033,
5049,
411,
278,
26480,
2060,
1284,
886,
24630,
29888,
5467,
29882,
29899,
29900,
29953,
29899,
29900,
29900,
29941,
29955,
29947,
29899,
29887,
29900,
29900,
29900,
29896,
2597,
29937,
29943,
29896,
29913,
13,
13,
4074,
19819,
362,
322,
422,
20941,
2973,
1222,
15423,
5449,
1535,
13,
2683,
2683,
2683,
22158,
13,
13,
2677,
29899,
14940,
11404,
630,
848,
10723,
515,
278,
671,
310,
10757,
29899,
6707,
1900,
6944,
315,
29984,
29902,
8492,
4944,
385,
11828,
6257,
1298,
363,
27227,
5281,
10757,
29899,
1509,
4822,
1422,
380,
1296,
7694,
6471,
29889,
739,
4944,
15593,
12712,
411,
28602,
1907,
304,
9432,
373,
322,
5353,
6944,
29899,
6707,
10757,
8018,
304,
1009,
7271,
297,
278,
1894,
2101,
681,
9045,
18020,
17535,
29892,
322,
304,
2050,
1284,
886,
373,
1788,
29899,
8157,
20414,
7536,
1907,
322,
2594,
26536,
297,
8220,
304,
14014,
322,
1887,
10757,
29889,
29124,
625,
29899,
6707,
5925,
1284,
886,
526,
5517,
304,
367,
901,
8018,
29892,
1339,
10384,
519,
29892,
322,
3158,
519,
304,
4120,
654,
414,
9310,
29992,
29933,
29896,
29945,
14664,
450,
12875,
310,
8967,
322,
9146,
3913,
363,
278,
26480,
1284,
886,
526,
13747,
411,
278,
6894,
537,
310,
16178,
322,
3736,
1103,
3145,
9875,
297,
278,
4559,
29892,
322,
278,
5221,
7606,
18671,
310,
315,
29984,
29902,
297,
1894,
2101,
681,
349,
19127,
9310,
29992,
29933,
29896,
29946,
1402,
518,
29992,
29933,
29941,
29900,
2314,
393,
23388,
278,
5925,
2874,
29889,
13,
13,
1576,
13465,
310,
7134,
13962,
964,
4256,
1230,
5925,
10174,
20601,
297,
1422,
4072,
310,
10757,
671,
9310,
29992,
29933,
29946,
29929,
14664,
2180,
3203,
2211,
4072,
310,
10757,
671,
526,
15574,
5439,
297,
278,
12845,
5634,
535,
1547,
950,
671,
393,
16415,
7134,
322,
8004,
29892,
11395,
284,
671,
411,
263,
15031,
8569,
363,
28635,
3460,
10757,
29899,
29886,
1461,
625,
330,
2547,
29892,
322,
16650,
293,
671,
9310,
29992,
29933,
29945,
29900,
1402,
518,
29992,
29933,
29945,
29896,
14664,
2178,
892,
25312,
297,
1749,
2582,
29889,
26480,
1284,
886,
892,
1304,
6964,
1474,
322,
11395,
635,
304,
2304,
664,
29899,
276,
6591,
6509,
9310,
29992,
29933,
29945,
29906,
2314,
322,
20414,
313,
29872,
29889,
29887,
1696,
491,
315,
29984,
29902,
4120,
654,
414,
322,
6320,
4097,
467,
3767,
1845,
293,
671,
471,
5439,
491,
8898,
29899,
29885,
21079,
29889,
319,
4340,
1134,
29892,
376,
5014,
671,
29908,
9310,
29992,
29933,
29945,
29941,
1402,
518,
29992,
29933,
29945,
29946,
11724,
471,
28585,
746,
3620,
297,
7291,
322,
28648,
20601,
515,
6509,
393,
10761,
2645,
5297,
29841,
297,
278,
5925,
313,
29872,
29889,
29887,
1696,
16710,
8004,
310,
315,
29984,
29902,
848,
9508,
287,
263,
349,
19127,
3815,
304,
11157,
16867,
310,
3132,
2562,
467,
8680,
5925,
3519,
884,
9615,
278,
671,
310,
1422,
7190,
310,
2472,
5634,
26193,
403,
848,
29892,
5925,
1284,
886,
322,
278,
26480,
5925,
1158,
3002,
5634,
392,
3133,
292,
24771,
310,
16984,
380,
1296,
8948,
414,
1549,
5314,
5925,
2729,
373,
26480,
1284,
886,
29889,
13,
13,
1576,
6559,
1284,
886,
526,
884,
13747,
411,
11898,
26233,
393,
10757,
671,
9432,
29879,
278,
1788,
11174,
472,
607,
27138,
664,
322,
278,
2472,
4225,
322,
3168,
310,
10257,
16178,
9310,
29992,
29933,
29945,
29896,
1402,
518,
29992,
29933,
29945,
29945,
14664,
11647,
1985,
472,
1269,
3233,
1304,
278,
1284,
886,
297,
9589,
651,
411,
916,
10757,
29892,
23941,
393,
896,
1044,
3598,
18365,
322,
1304,
10757,
304,
11157,
1009,
6944,
29889,
13,
13,
1576,
13879,
14457,
1218,
671,
2629,
1749,
4559,
6892,
9432,
13879,
15659,
297,
7646,
4077,
12443,
322,
23056,
21628,
2982,
3502,
9076,
310,
278,
23253,
310,
2669,
24233,
800,
9310,
29992,
29933,
29941,
2314,
322,
297,
5314,
29143,
9310,
29992,
29933,
29946,
1402,
518,
29992,
29933,
29945,
29953,
2314,
322,
11898,
29889,
13103,
13879,
5134,
278,
17189,
2347,
2778,
1169,
310,
278,
10757,
9310,
29992,
29933,
29945,
29955,
1402,
518,
29992,
29933,
29945,
29947,
11724,
967,
29527,
749,
304,
9595,
297,
3030,
9310,
29992,
29933,
29945,
29929,
2314,
322,
967,
7037,
363,
4225,
29899,
14940,
21733,
313,
29872,
29889,
29887,
1696,
671,
310,
26480,
13676,
297,
1422,
5837,
467,
2184,
1303,
3335,
313,
29872,
29889,
29887,
1696,
5177,
363,
1735,
29892,
3625,
931,
29897,
322,
24521,
411,
5375,
1819,
322,
17385,
362,
313,
29872,
29889,
29887,
1696,
9063,
358,
304,
1900,
6944,
29897,
892,
7112,
2556,
29889,
5901,
14457,
1218,
13879,
892,
278,
3233,
310,
5314,
2304,
313,
29872,
29889,
29887,
1696,
515,
767,
18150,
322,
315,
29984,
29902,
16089,
277,
4097,
511,
3133,
292,
12084,
322,
12464,
4395,
2472,
9316,
9310,
29992,
29933,
29945,
29945,
1402,
518,
29992,
29933,
29953,
29900,
1402,
518,
29992,
29933,
29953,
29896,
2314,
322,
28602,
1907,
363,
14881,
29892,
20382,
278,
3619,
8004,
393,
5925,
671,
338,
5264,
29892,
28923,
322,
3030,
29899,
18980,
9310,
29992,
29933,
29953,
29906,
1402,
518,
29992,
29933,
29953,
29941,
14664,
5806,
10225,
310,
16420,
297,
29537,
292,
848,
471,
17189,
2347,
408,
263,
2594,
4336,
304,
5925,
27577,
29892,
15593,
12712,
297,
1749,
6559,
892,
3109,
1343,
1312,
304,
12439,
7134,
322,
25078,
408,
14457,
1218,
278,
671,
310,
26480,
1284,
886,
29889,
6645,
482,
1546,
278,
26480,
2060,
322,
380,
1296,
8948,
414,
313,
29874,
6555,
4163,
297,
7646,
4077,
12443,
322,
23056,
21628,
20333,
6964,
950,
1904,
29897,
9310,
29992,
29933,
29941,
2314,
10761,
1549,
278,
16417,
29928,
3086,
10550,
3455,
8397,
4034,
297,
278,
2874,
7408,
322,
471,
8762,
1549,
278,
5925,
3815,
29892,
411,
315,
29984,
29902,
9426,
20251,
322,
4120,
654,
414,
8743,
385,
4100,
16089,
7018,
322,
10452,
805,
9450,
6297,
9310,
29992,
29933,
29941,
14664,
315,
29984,
29902,
4120,
654,
414,
3796,
4822,
24371,
304,
766,
12846,
16976,
13676,
29892,
16089,
10388,
27577,
297,
278,
5925,
29892,
27391,
322,
5353,
1284,
886,
297,
349,
19127,
5786,
322,
13731,
6617,
10230,
310,
11404,
630,
322,
1887,
315,
29984,
29902,
848,
29889,
4525,
14188,
6969,
5925,
261,
29899,
303,
1296,
7694,
1544,
482,
322,
9138,
29899,
262,
15628,
10608,
29899,
28990,
9310,
29992,
29933,
29953,
29946,
11724,
17737,
17068,
304,
278,
12875,
310,
8967,
322,
7972,
3913,
310,
1284,
886,
29889,
8680,
6559,
27999,
7841,
393,
5221,
7606,
5925,
23388,
491,
5314,
322,
315,
29984,
29902,
6368,
508,
367,
7436,
17583,
472,
6287,
304,
3033,
482,
16984,
380,
1296,
8948,
414,
297,
773,
10757,
373,
11029,
310,
2562,
29889,
739,
508,
664,
4822,
24371,
322,
1788,
11174,
304,
1653,
5222,
261,
1927,
363,
20414,
29889,
13,
13,
24192,
5795,
363,
19320,
5485,
4103,
18411,
29124,
625,
322,
16367,
10550,
13,
2683,
2683,
2683,
2683,
5634,
13,
13,
1349,
968,
1284,
886,
508,
29126,
304,
27836,
1048,
427,
5403,
3277,
278,
671,
3097,
322,
10879,
310,
5925,
9310,
29992,
29933,
29906,
29953,
1402,
518,
29992,
29933,
29953,
29945,
11724,
3704,
278,
26171,
310,
3033,
5049,
3734,
1546,
380,
1296,
8948,
414,
322,
5925,
414,
29889,
3824,
29892,
278,
10174,
1304,
304,
8472,
3033,
482,
380,
1296,
8948,
414,
411,
848,
322,
1284,
886,
892,
23388,
491,
5314,
5925,
26233,
393,
11828,
1735,
16650,
583,
508,
367,
8906,
773,
10757,
304,
12439,
322,
1544,
20136,
330,
2547,
297,
2562,
304,
23399,
21904,
393,
526,
2998,
304,
367,
1788,
427,
370,
9306,
470,
2594,
26536,
9310,
29992,
29933,
29941,
29906,
1402,
518,
29992,
29933,
29941,
29941,
1402,
518,
29992,
29933,
29953,
29953,
14664,
6440,
29892,
278,
23821,
3913,
310,
1284,
886,
491,
16984,
380,
1296,
8948,
414,
472,
1422,
1788,
11174,
892,
14363,
1549,
385,
28923,
766,
12846,
3381,
13705,
393,
1304,
1880,
29899,
5563,
11404,
630,
315,
29984,
29902,
848,
29889,
739,
27999,
18066,
287,
28557,
13501,
4046,
292,
278,
16705,
322,
671,
310,
9045,
4818,
4180,
848,
304,
1887,
315,
29984,
29902,
14188,
29892,
9004,
1218,
967,
7037,
363,
18987,
8898,
322,
1788,
29899,
5563,
20414,
14231,
29889,
18008,
29892,
278,
13705,
11039,
630,
671,
310,
1284,
886,
472,
1269,
8576,
313,
29872,
29889,
29887,
1696,
27138,
1304,
1284,
886,
373,
2594,
26536,
304,
4368,
16650,
583,
511,
322,
445,
2874,
7470,
304,
13686,
3598,
9949,
671,
310,
278,
2186,
13676,
29889,
12458,
386,
29892,
7395,
766,
12846,
3381,
322,
16705,
892,
11828,
363,
3033,
6751,
380,
1296,
8948,
414,
297,
10757,
1302,
29899,
24601,
322,
671,
472,
6287,
29889,
910,
9004,
1078,
393,
3033,
5049,
508,
367,
14363,
411,
9078,
7788,
363,
5925,
746,
278,
5925,
322,
1284,
886,
526,
18430,
6944,
29899,
276,
6591,
322,
727,
338,
931,
304,
9926,
261,
27577,
29889,
9788,
29892,
263,
2473,
29899,
2218,
13326,
3821,
315,
29984,
29902,
5925,
3564,
313,
1552,
7817,
310,
10550,
1222,
3729,
663,
297,
17100,
630,
751,
2877,
1954,
16123,
882,
297,
1894,
2101,
681,
28267,
15202,
10057,
29897,
9310,
29992,
29933,
29953,
29955,
2314,
4944,
263,
13907,
7481,
363,
28923,
766,
12846,
3381,
322,
3033,
5049,
411,
278,
1284,
886,
29889,
13,
13,
4074,
1493,
12712,
9875,
263,
4559,
310,
26480,
2060,
27138,
29889,
11275,
2060,
376,
2423,
29891,
29899,
262,
1699,
3736,
1103,
3145,
373,
671,
310,
278,
1284,
886,
304,
11157,
2562,
322,
1009,
6892,
1880,
4880,
363,
278,
848,
2752,
322,
5925,
11029,
11307,
332,
1532,
363,
3133,
292,
322,
25734,
671,
310,
1284,
886,
9310,
29992,
29933,
29953,
29947,
14664,
2398,
29892,
15620,
16705,
4475,
304,
7972,
3265,
1135,
8967,
671,
29889,
20355,
1980,
310,
278,
318,
415,
1296,
310,
5925,
1284,
886,
964,
9045,
18020,
408,
447,
561,
834,
538,
29892,
443,
27711,
519,
322,
4473,
29891,
9310,
29992,
29933,
29945,
1402,
518,
29992,
29933,
29953,
29929,
2314,
18145,
5485,
393,
1784,
13879,
526,
5517,
304,
1006,
29888,
406,
411,
1855,
2133,
310,
7609,
1080,
9310,
29992,
29933,
29955,
29900,
1402,
518,
29992,
29933,
29955,
29896,
14664,
16972,
304,
10127,
6374,
19869,
1546,
278,
7609,
1080,
322,
4010,
18930,
310,
9045,
6351,
1338,
18593,
1158,
5996,
18066,
267,
541,
526,
18443,
292,
9310,
29992,
29933,
29955,
29906,
14664,
319,
15415,
839,
3460,
393,
5520,
1840,
10879,
674,
1996,
263,
3133,
292,
7134,
13962,
13705,
9310,
29992,
29933,
29955,
29941,
29962,
489,
17548,
29933,
29955,
29945,
11724,
591,
13686,
393,
1363,
278,
26480,
2060,
1284,
886,
892,
1302,
29899,
11600,
491,
5925,
414,
322,
916,
380,
1296,
8948,
414,
29892,
427,
2388,
465,
6261,
322,
260,
562,
277,
13391,
310,
7134,
9310,
29992,
29933,
29945,
29947,
2314,
322,
9432,
8674,
1288,
29892,
7881,
322,
16375,
3030,
29879,
9310,
29992,
29933,
29953,
29945,
11724,
896,
1993,
278,
4225,
310,
9045,
5786,
29892,
8898,
2136,
414,
322,
15201,
23093,
322,
526,
901,
5517,
304,
367,
376,
26689,
29908,
322,
1304,
363,
1735,
9310,
29992,
29933,
29955,
29953,
14664,
13,
13,
1576,
26480,
2060,
16688,
2504,
5921,
3519,
363,
21677,
380,
1296,
8948,
414,
297,
14655,
7134,
304,
1871,
8898,
322,
1773,
361,
562,
300,
287,
20414,
16650,
583,
9310,
29992,
29933,
29955,
29955,
14664,
450,
7300,
29899,
7052,
322,
2473,
29899,
5563,
8569,
310,
1749,
315,
29984,
29902,
5925,
10049,
29879,
304,
3517,
664,
2893,
9215,
278,
817,
363,
21984,
1735,
472,
2999,
11174,
310,
278,
9045,
1788,
304,
2304,
9377,
29899,
7052,
20414,
9310,
29992,
29933,
29941,
29929,
2314,
322,
278,
5297,
29841,
310,
2999,
4072,
310,
380,
1296,
8948,
414,
304,
2334,
322,
15075,
475,
315,
29984,
29902,
14231,
9310,
29992,
29933,
29955,
29947,
14664,
739,
28585,
393,
263,
2281,
2955,
848,
322,
7134,
19383,
1889,
322,
7258,
9063,
358,
304,
4857,
1747,
1894,
2101,
681,
9045,
714,
26807,
1033,
3234,
3598,
4511,
380,
1296,
8948,
414,
515,
1422,
10257,
3736,
1103,
3145,
322,
349,
19127,
3030,
29879,
29889,
8868,
3864,
1438,
3736,
1103,
3145,
304,
12439,
20136,
10757,
29899,
29886,
1461,
625,
330,
2547,
29892,
322,
427,
370,
9306,
322,
2594,
26536,
304,
3211,
292,
963,
29892,
28936,
5434,
8898,
322,
5925,
304,
8569,
373,
10161,
4100,
304,
2305,
9701,
297,
1894,
2101,
681,
349,
19127,
28289,
29889,
4124,
1493,
12712,
13622,
393,
26480,
1284,
886,
367,
1304,
304,
9949,
6503,
24082,
322,
2693,
13962,
16650,
583,
3646,
292,
1880,
29899,
5563,
13665,
962,
21079,
29889,
910,
15561,
1454,
778,
1749,
29303,
393,
4340,
5925,
881,
26987,
278,
19725,
310,
28923,
766,
12846,
3381,
363,
3033,
6751,
380,
1296,
8948,
414,
297,
1871,
292,
8898,
322,
1788,
1735,
29889,
13,
13,
5015,
1477,
29879,
322,
9628,
24182,
13,
2683,
1378,
29899,
13,
13,
4013,
4021,
23378,
6559,
15468,
278,
3736,
1103,
3145,
310,
2305,
1985,
472,
1422,
9045,
1788,
11174,
29892,
297,
5164,
16178,
322,
13013,
4072,
322,
773,
315,
29984,
29902,
5925,
1284,
886,
8018,
304,
1422,
10161,
310,
24899,
936,
2562,
29889,
739,
3902,
4395,
278,
5314,
310,
10757,
304,
11157,
2562,
29892,
19912,
304,
3211,
5932,
393,
315,
29984,
29902,
14188,
297,
278,
1894,
2101,
681,
349,
19127,
17535,
505,
260,
2760,
304,
8569,
373,
848,
4333,
322,
12990,
11407,
29892,
411,
3109,
19310,
275,
373,
848,
19854,
322,
16049,
1006,
794,
1080,
9310,
29992,
29933,
29955,
29929,
14664,
13,
13,
1576,
1006,
7406,
21309,
19434,
373,
697,
9870,
24894,
29467,
297,
607,
315,
29984,
29902,
338,
1532,
29899,
342,
370,
3726,
29889,
624,
1296,
8948,
414,
297,
24894,
8977,
1080,
411,
3109,
315,
29984,
29902,
7271,
1122,
505,
1422,
3736,
1103,
3145,
322,
27482,
310,
315,
29984,
29902,
29892,
4046,
292,
2498,
275,
3097,
29889,
910,
29485,
338,
9210,
491,
28694,
310,
3196,
15593,
12712,
297,
4891,
29899,
29926,
332,
275,
29467,
16178,
313,
29872,
29889,
29887,
1696,
263,
4797,
2304,
24788,
511,
322,
491,
17420,
15593,
848,
411,
4021,
23378,
26480,
18994,
848,
515,
916,
24894,
8977,
1080,
304,
1423,
278,
2498,
275,
3097,
310,
1284,
886,
29889,
13,
13,
1168,
10085,
426,
29937,
29879,
29945,
29913,
13,
4936,
1360,
13,
13,
4013,
6559,
297,
278,
9870,
1894,
2101,
681,
349,
19127,
3030,
15659,
278,
671,
310,
5925,
1284,
886,
491,
380,
1296,
8948,
414,
297,
263,
12875,
310,
16178,
322,
472,
1422,
9045,
1788,
11174,
29892,
322,
13879,
14457,
1218,
671,
29892,
975,
278,
3236,
310,
263,
2919,
29899,
7052,
5221,
7606,
315,
29984,
29902,
5925,
2060,
29889,
13,
13,
2677,
29899,
14940,
11404,
630,
315,
29984,
29902,
848,
4944,
385,
11828,
6257,
1298,
363,
19383,
3736,
1103,
3145,
29892,
14655,
6944,
29899,
6707,
10757,
322,
27227,
5281,
10757,
29899,
1509,
29889,
5806,
13879,
14457,
1218,
671,
892,
6892,
13747,
411,
3517,
11898,
29892,
3033,
6751,
380,
1296,
8948,
414,
297,
5221,
7606,
10174,
304,
6613,
278,
848,
20601,
297,
1422,
4072,
310,
671,
393,
1033,
367,
5545,
19595,
653,
29892,
322,
16650,
583,
393,
892,
12464,
4395,
304,
664,
4225,
322,
22903,
472,
1422,
1788,
11174,
29889,
315,
29984,
29902,
3519,
4944,
385,
4256,
1230,
29892,
1788,
2454,
322,
28923,
766,
12846,
3381,
1889,
393,
471,
28326,
1821,
472,
6287,
29889,
13,
13,
1576,
1788,
29899,
6707,
5925,
2874,
322,
13962,
1889,
505,
2411,
5795,
363,
773,
315,
29984,
29902,
848,
322,
13501,
297,
13665,
962,
5086,
304,
1653,
5222,
261,
1927,
363,
29892,
322,
6564,
29892,
9377,
29899,
7052,
9045,
18020,
20414,
29889,
512,
1037,
1463,
7225,
322,
5925,
526,
4312,
304,
2304,
278,
671,
310,
11404,
630,
315,
29984,
29902,
848,
297,
445,
982,
29889,
13,
13,
24105,
479,
6287,
20414,
14231,
25135,
1472,
931,
19935,
322,
20458,
13501,
29889,
438,
865,
29877,
292,
13962,
310,
278,
26480,
2060,
1284,
886,
964,
8898,
322,
6944,
304,
11157,
1894,
2101,
681,
9045,
714,
26807,
674,
1996,
278,
6314,
573,
9063,
358,
322,
15075,
7114,
5297,
29841,
310,
2999,
9045,
18020,
380,
1296,
8948,
414,
472,
1422,
11174,
310,
278,
349,
19127,
1788,
29889,
13,
13,
1469,
7740,
737,
3097,
6666,
882,
426,
29937,
29879,
29953,
29913,
13,
9166,
4936,
25512,
13,
13,
1576,
4021,
23378,
848,
29537,
287,
363,
445,
27593,
526,
451,
970,
368,
3625,
1363,
310,
278,
817,
304,
12566,
278,
10110,
322,
24332,
616,
537,
310,
5925,
27138,
29889,
13,
13,
13720,
2866,
3224,
29879,
426,
29937,
29879,
29955,
29913,
13,
9166,
2751,
13,
13,
1964,
6964,
950,
1891,
278,
6559,
322,
5331,
278,
848,
7418,
29892,
19854,
29892,
5007,
310,
18195,
29879,
29892,
322,
2186,
5281,
278,
27593,
29889,
390,
29933,
11981,
278,
26480,
2060,
322,
2428,
11292,
278,
5007,
1889,
29889,
435,
29933,
29892,
405,
29925,
29892,
7992,
29892,
322,
402,
29950,
4944,
9848,
2645,
27593,
5849,
29889,
435,
29933,
322,
11400,
26869,
304,
278,
26480,
2060,
2874,
29889,
476,
29907,
322,
23671,
6985,
287,
297,
26480,
3461,
766,
12846,
3381,
322,
1162,
9216,
358,
310,
6559,
27138,
29889,
2178,
15717,
9076,
287,
18195,
29879,
29892,
1303,
29892,
322,
23454,
278,
2186,
27593,
29889,
13,
13,
16376,
29176,
310,
23829,
6666,
882,
13,
2683,
9072,
489,
13,
13,
1576,
15717,
9607,
393,
278,
5925,
471,
18043,
297,
278,
18070,
310,
738,
12128,
470,
18161,
21702,
393,
1033,
367,
6787,
287,
408,
263,
7037,
14529,
310,
4066,
29889,
13,
13,
1576,
15717,
18145,
5485,
278,
2304,
29892,
23644,
3173,
29885,
322,
9063,
358,
310,
13925,
297,
5221,
1218,
7601,
9045,
2562,
5786,
29892,
322,
5144,
310,
278,
16417,
29928,
3086,
10550,
3455,
8397,
4034,
322,
278,
7817,
310,
10550,
1222,
3729,
663,
297,
17100,
630,
751,
2877,
1954,
16123,
882,
297,
1894,
2101,
681,
28267,
15202,
10057,
29889,
1334,
6452,
8612,
336,
897,
399,
986,
363,
8454,
14137,
12536,
3097,
29889,
13,
13,
1068,
29943,
870,
292,
29889,
1068,
450,
16417,
29928,
3086,
10550,
3455,
8397,
4034,
8010,
756,
1063,
6969,
491,
5220,
292,
515,
278,
3086,
15202,
322,
20795,
10550,
8831,
313,
29945,
29946,
29945,
29906,
29953,
29955,
29897,
322,
278,
17511,
277,
1764,
8907,
29892,
322,
491,
297,
29899,
14380,
322,
18161,
2304,
515,
19184,
11264,
839,
322,
10354,
946,
15942,
29889,
14445,
338,
6969,
491,
263,
3086,
15202,
322,
20795,
10550,
8831,
4918,
5105,
27240,
1102,
10170,
3527,
313,
29896,
29900,
29929,
29946,
29945,
29929,
29945,
511,
322,
491,
278,
11319,
310,
10550,
1222,
3729,
663,
29901,
530,
512,
13715,
362,
28096,
363,
17100,
630,
751,
2877,
1954,
16123,
882,
297,
1894,
2101,
681,
28267,
15202,
10057,
313,
22245,
29899,
29902,
29984,
29902,
29892,
5220,
287,
491,
278,
405,
29950,
29924,
10363,
3553,
29871,
29896,
29900,
29955,
29947,
29929,
29906,
29955,
467,
390,
29933,
20333,
29879,
664,
756,
1063,
6969,
491,
385,
9870,
10550,
8831,
16367,
25940,
3527,
313,
29896,
29900,
29900,
29896,
29900,
29900,
29900,
29947,
29955,
467,
405,
29925,
20333,
29879,
20706,
505,
1063,
6969,
491,
263,
3086,
15202,
322,
20795,
10550,
8831,
11095,
15825,
25940,
3527,
313,
29896,
29896,
29906,
29896,
29941,
29900,
29941,
467,
450,
8386,
13384,
297,
445,
17745,
526,
1906,
310,
278,
15717,
322,
437,
451,
12695,
9432,
278,
8386,
310,
278,
5220,
292,
946,
15942,
29889,
13,
13,
20182,
944,
653,
17582,
426,
29937,
29879,
29947,
29913,
13,
9166,
2751,
1360,
13,
13,
1576,
9179,
944,
653,
17582,
363,
445,
4274,
508,
367,
1476,
7395,
472,
29901,
529,
991,
597,
1636,
29889,
8862,
4285,
262,
29889,
990,
29914,
18569,
29914,
29896,
29900,
29889,
29941,
29941,
29947,
29929,
29914,
29888,
5467,
29882,
29889,
29906,
29900,
29896,
29947,
29889,
29900,
29900,
29941,
29955,
29947,
29914,
8159,
29937,
19303,
944,
653,
29899,
15388,
29958,
13,
13,
4136,
2277,
29871,
13,
13,
4164,
1244,
363,
5684,
848,
934,
29889,
13,
13,
2882,
6530,
13,
13,
29901,
259,
12990,
277,
322,
1900,
6944,
363,
17168,
293,
17135,
13,
13,
29907,
29984,
29902,
13,
13,
29901,
259,
9126,
11029,
20414,
13,
13,
2890,
29925,
29892,
3033,
6751,
380,
1296,
8948,
414,
297,
2893,
9215,
20136,
10757,
29899,
29886,
1461,
625,
330,
2547,
13,
13,
29901,
259,
2594,
26536,
322,
16650,
583,
363,
20414,
13,
13,
29950,
1525,
29907,
13,
13,
29901,
259,
12968,
10550,
13772,
1199,
12930,
13,
13,
29925,
19127,
13,
13,
29901,
259,
7601,
9045,
2562,
29889,
13,
13,
22896,
29896,
5387,
2155,
1573,
491,
29901,
11740,
348,
14317,
1334,
261,
314,
9716,
374,
29892,
3014,
310,
10504,
8314,
29892,
8314,
13,
13,
22896,
29906,
5387,
13957,
287,
491,
29901,
6158,
29875,
306,
808,
10139,
29892,
349,
5590,
4563,
20795,
3014,
29892,
28126,
4568,
29936,
3739,
20679,
21910,
29892,
2379,
513,
414,
3014,
29892,
8314,
13,
13,
22896,
29941,
5387,
910,
4274,
471,
18397,
304,
5236,
15202,
25219,
29892,
263,
4004,
310,
278,
8955,
13960,
4285,
297,
5236,
15202,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Karaoke Country Greatest, Pt. 4 (Karaoke Version)
Download links and information about Karaoke Country Greatest, Pt. 4 (Karaoke Version). This album was released in 2006 and it belongs to Country genres. It contains 16 tracks with total duration of 55:15 minutes. | [
1,
476,
2518,
6946,
15456,
7027,
342,
29892,
349,
29873,
29889,
29871,
29946,
313,
29968,
2518,
6946,
10079,
29897,
13,
13,
22954,
2988,
322,
2472,
1048,
476,
2518,
6946,
15456,
7027,
342,
29892,
349,
29873,
29889,
29871,
29946,
313,
29968,
2518,
6946,
10079,
467,
910,
3769,
471,
5492,
297,
29871,
29906,
29900,
29900,
29953,
322,
372,
14393,
304,
15456,
2531,
690,
29889,
739,
3743,
29871,
29896,
29953,
16257,
411,
3001,
14385,
310,
29871,
29945,
29945,
29901,
29896,
29945,
6233,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/route53/model/GeoLocationDetails.h>
#include <aws/core/utils/xml/XmlSerializer.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <utility>
using namespace Aws::Utils::Xml;
using namespace Aws::Utils;
namespace Aws
{
namespace Route53
{
namespace Model
{
GeoLocationDetails::GeoLocationDetails() :
m_continentCodeHasBeenSet(false),
m_continentNameHasBeenSet(false),
m_countryCodeHasBeenSet(false),
m_countryNameHasBeenSet(false),
m_subdivisionCodeHasBeenSet(false),
m_subdivisionNameHasBeenSet(false)
{
}
GeoLocationDetails::GeoLocationDetails(const XmlNode& xmlNode) :
m_continentCodeHasBeenSet(false),
m_continentNameHasBeenSet(false),
m_countryCodeHasBeenSet(false),
m_countryNameHasBeenSet(false),
m_subdivisionCodeHasBeenSet(false),
m_subdivisionNameHasBeenSet(false)
{
*this = xmlNode;
}
GeoLocationDetails& GeoLocationDetails::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode continentCodeNode = resultNode.FirstChild("ContinentCode");
if(!continentCodeNode.IsNull())
{
m_continentCode = Aws::Utils::Xml::DecodeEscapedXmlText(continentCodeNode.GetText());
m_continentCodeHasBeenSet = true;
}
XmlNode continentNameNode = resultNode.FirstChild("ContinentName");
if(!continentNameNode.IsNull())
{
m_continentName = Aws::Utils::Xml::DecodeEscapedXmlText(continentNameNode.GetText());
m_continentNameHasBeenSet = true;
}
XmlNode countryCodeNode = resultNode.FirstChild("CountryCode");
if(!countryCodeNode.IsNull())
{
m_countryCode = Aws::Utils::Xml::DecodeEscapedXmlText(countryCodeNode.GetText());
m_countryCodeHasBeenSet = true;
}
XmlNode countryNameNode = resultNode.FirstChild("CountryName");
if(!countryNameNode.IsNull())
{
m_countryName = Aws::Utils::Xml::DecodeEscapedXmlText(countryNameNode.GetText());
m_countryNameHasBeenSet = true;
}
XmlNode subdivisionCodeNode = resultNode.FirstChild("SubdivisionCode");
if(!subdivisionCodeNode.IsNull())
{
m_subdivisionCode = Aws::Utils::Xml::DecodeEscapedXmlText(subdivisionCodeNode.GetText());
m_subdivisionCodeHasBeenSet = true;
}
XmlNode subdivisionNameNode = resultNode.FirstChild("SubdivisionName");
if(!subdivisionNameNode.IsNull())
{
m_subdivisionName = Aws::Utils::Xml::DecodeEscapedXmlText(subdivisionNameNode.GetText());
m_subdivisionNameHasBeenSet = true;
}
}
return *this;
}
void GeoLocationDetails::AddToNode(XmlNode& parentNode) const
{
Aws::StringStream ss;
if(m_continentCodeHasBeenSet)
{
XmlNode continentCodeNode = parentNode.CreateChildElement("ContinentCode");
continentCodeNode.SetText(m_continentCode);
}
if(m_continentNameHasBeenSet)
{
XmlNode continentNameNode = parentNode.CreateChildElement("ContinentName");
continentNameNode.SetText(m_continentName);
}
if(m_countryCodeHasBeenSet)
{
XmlNode countryCodeNode = parentNode.CreateChildElement("CountryCode");
countryCodeNode.SetText(m_countryCode);
}
if(m_countryNameHasBeenSet)
{
XmlNode countryNameNode = parentNode.CreateChildElement("CountryName");
countryNameNode.SetText(m_countryName);
}
if(m_subdivisionCodeHasBeenSet)
{
XmlNode subdivisionCodeNode = parentNode.CreateChildElement("SubdivisionCode");
subdivisionCodeNode.SetText(m_subdivisionCode);
}
if(m_subdivisionNameHasBeenSet)
{
XmlNode subdivisionNameNode = parentNode.CreateChildElement("SubdivisionName");
subdivisionNameNode.SetText(m_subdivisionName);
}
}
} // namespace Model
} // namespace Route53
} // namespace Aws
| [
1,
29871,
30143,
7918,
13,
334,
14187,
1266,
16631,
29889,
510,
29892,
9266,
29889,
470,
967,
23736,
1078,
29889,
2178,
26863,
2538,
9841,
29889,
13,
334,
10937,
29928,
29990,
29899,
29931,
293,
1947,
29899,
12889,
29901,
13380,
29899,
29906,
29889,
29900,
29889,
13,
3776,
13,
13,
29937,
2856,
529,
10467,
29914,
13134,
29945,
29941,
29914,
4299,
29914,
7999,
29877,
6508,
10602,
29889,
29882,
29958,
13,
29937,
2856,
529,
10467,
29914,
3221,
29914,
13239,
29914,
3134,
29914,
11089,
17679,
29889,
29882,
29958,
13,
29937,
2856,
529,
10467,
29914,
3221,
29914,
13239,
29914,
1231,
12177,
29889,
29882,
29958,
13,
29937,
2856,
529,
10467,
29914,
3221,
29914,
13239,
29914,
14834,
29914,
303,
29880,
29914,
29909,
7811,
1231,
3835,
29889,
29882,
29958,
13,
13,
29937,
2856,
529,
329,
1793,
29958,
13,
13,
4746,
7397,
319,
5652,
1057,
12177,
1057,
11089,
29936,
13,
4746,
7397,
319,
5652,
1057,
12177,
29936,
13,
13,
22377,
319,
5652,
13,
29912,
13,
22377,
12034,
29945,
29941,
13,
29912,
13,
22377,
8125,
13,
29912,
13,
13,
7999,
29877,
6508,
10602,
1057,
7999,
29877,
6508,
10602,
580,
584,
29871,
13,
1678,
286,
29918,
1285,
8946,
3399,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
1285,
8946,
1170,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
13509,
3399,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
13509,
1170,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
1491,
4563,
2459,
3399,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
1491,
4563,
2459,
1170,
14510,
3629,
264,
2697,
29898,
4541,
29897,
13,
29912,
13,
29913,
13,
13,
7999,
29877,
6508,
10602,
1057,
7999,
29877,
6508,
10602,
29898,
3075,
24409,
4247,
29987,
4903,
4247,
29897,
584,
29871,
13,
1678,
286,
29918,
1285,
8946,
3399,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
1285,
8946,
1170,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
13509,
3399,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
13509,
1170,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
1491,
4563,
2459,
3399,
14510,
3629,
264,
2697,
29898,
4541,
511,
13,
1678,
286,
29918,
1491,
4563,
2459,
1170,
14510,
3629,
264,
2697,
29898,
4541,
29897,
13,
29912,
13,
29871,
334,
1366,
353,
4903,
4247,
29936,
13,
29913,
13,
13,
7999,
29877,
6508,
10602,
29987,
1879,
29877,
6508,
10602,
1057,
6891,
353,
29898,
3075,
24409,
4247,
29987,
4903,
4247,
29897,
13,
29912,
13,
29871,
24409,
4247,
1121,
4247,
353,
4903,
4247,
29936,
13,
13,
29871,
565,
11864,
2914,
4247,
29889,
3624,
7327,
3101,
13,
29871,
426,
13,
1678,
24409,
4247,
25523,
3399,
4247,
353,
1121,
4247,
29889,
6730,
5938,
703,
1323,
8946,
3399,
1496,
13,
1678,
565,
11864,
1285,
8946,
3399,
4247,
29889,
3624,
7327,
3101,
13,
1678,
426,
13,
418,
286,
29918,
1285,
8946,
3399,
353,
319,
5652,
1057,
12177,
1057,
11089,
1057,
2772,
401,
29923,
1557,
10501,
11089,
1626,
29898,
1285,
8946,
3399,
4247,
29889,
2577,
1626,
3310,
13,
418,
286,
29918,
1285,
8946,
3399,
14510,
3629,
264,
2697,
353,
1565,
29936,
13,
1678,
500,
13,
1678,
24409,
4247,
25523,
1170,
4247,
353,
1121,
4247,
29889,
6730,
5938,
703,
1323,
8946,
1170,
1496,
13,
1678,
565,
11864,
1285,
8946,
1170,
4247,
29889,
3624,
7327,
3101,
13,
1678,
426,
13,
418,
286,
29918,
1285,
8946,
1170,
353,
319,
5652,
1057,
12177,
1057,
11089,
1057,
2772,
401,
29923,
1557,
10501,
11089,
1626,
29898,
1285,
8946,
1170,
4247,
29889,
2577,
1626,
3310,
13,
418,
286,
29918,
1285,
8946,
1170,
14510,
3629,
264,
2697,
353,
1565,
29936,
13,
1678,
500,
13,
1678,
24409,
4247,
4234,
3399,
4247,
353,
1121,
4247,
29889,
6730,
5938,
703,
20779,
3399,
1496,
13,
1678,
565,
11864,
13509,
3399,
4247,
29889,
3624,
7327,
3101,
13,
1678,
426,
13,
418,
286,
29918,
13509,
3399,
353,
319,
5652,
1057,
12177,
1057,
11089,
1057,
2772,
401,
29923,
1557,
10501,
11089,
1626,
29898,
13509,
3399,
4247,
29889,
2577,
1626,
3310,
13,
418,
286,
29918,
13509,
3399,
14510,
3629,
264,
2697,
353,
1565,
29936,
13,
1678,
500,
13,
1678,
24409,
4247,
4234,
1170,
4247,
353,
1121,
4247,
29889,
6730,
5938,
703,
20779,
1170,
1496,
13,
1678,
565,
11864,
13509,
1170,
4247,
29889,
3624,
7327,
3101,
13,
1678,
426,
13,
418,
286,
29918,
13509,
1170,
353,
319,
5652,
1057,
12177,
1057,
11089,
1057,
2772,
401,
29923,
1557,
10501,
11089,
1626,
29898,
13509,
1170,
4247,
29889,
2577,
1626,
3310,
13,
418,
286,
29918,
13509,
1170,
14510,
3629,
264,
2697,
353,
1565,
29936,
13,
1678,
500,
13,
1678,
24409,
4247,
1014,
4563,
2459,
3399,
4247,
353,
1121,
4247,
29889,
6730,
5938,
703,
4035,
4563,
2459,
3399,
1496,
13,
1678,
565,
11864,
1491,
4563,
2459,
3399,
4247,
29889,
3624,
7327,
3101,
13,
1678,
426,
13,
418,
286,
29918,
1491,
4563,
2459,
3399,
353,
319,
5652,
1057,
12177,
1057,
11089,
1057,
2772,
401,
29923,
1557,
10501,
11089,
1626,
29898,
1491,
4563,
2459,
3399,
4247,
29889,
2577,
1626,
3310,
13,
418,
286,
29918,
1491,
4563,
2459,
3399,
14510,
3629,
264,
2697,
353,
1565,
29936,
13,
1678,
500,
13,
1678,
24409,
4247,
1014,
4563,
2459,
1170,
4247,
353,
1121,
4247,
29889,
6730,
5938,
703,
4035,
4563,
2459,
1170,
1496,
13,
1678,
565,
11864,
1491,
4563,
2459,
1170,
4247,
29889,
3624,
7327,
3101,
13,
1678,
426,
13,
418,
286,
29918,
1491,
4563,
2459,
1170,
353,
319,
5652,
1057,
12177,
1057,
11089,
1057,
2772,
401,
29923,
1557,
10501,
11089,
1626,
29898,
1491,
4563,
2459,
1170,
4247,
29889,
2577,
1626,
3310,
13,
418,
286,
29918,
1491,
4563,
2459,
1170,
14510,
3629,
264,
2697,
353,
1565,
29936,
13,
1678,
500,
13,
29871,
500,
13,
13,
29871,
736,
334,
1366,
29936,
13,
29913,
13,
13,
5405,
1879,
29877,
6508,
10602,
1057,
2528,
1762,
4247,
29898,
11089,
4247,
29987,
3847,
4247,
29897,
1040,
13,
29912,
13,
29871,
319,
5652,
1057,
1231,
3835,
17971,
29936,
13,
29871,
565,
29898,
29885,
29918,
1285,
8946,
3399,
14510,
3629,
264,
2697,
29897,
13,
29871,
426,
13,
259,
24409,
4247,
25523,
3399,
4247,
353,
3847,
4247,
29889,
4391,
5938,
2642,
703,
1323,
8946,
3399,
1496,
13,
259,
25523,
3399,
4247,
29889,
2697,
1626,
29898,
29885,
29918,
1285,
8946,
3399,
416,
13,
29871,
500,
13,
13,
29871,
565,
29898,
29885,
29918,
1285,
8946,
1170,
14510,
3629,
264,
2697,
29897,
13,
29871,
426,
13,
259,
24409,
4247,
25523,
1170,
4247,
353,
3847,
4247,
29889,
4391,
5938,
2642,
703,
1323,
8946,
1170,
1496,
13,
259,
25523,
1170,
4247,
29889,
2697,
1626,
29898,
29885,
29918,
1285,
8946,
1170,
416,
13,
29871,
500,
13,
13,
29871,
565,
29898,
29885,
29918,
13509,
3399,
14510,
3629,
264,
2697,
29897,
13,
29871,
426,
13,
259,
24409,
4247,
4234,
3399,
4247,
353,
3847,
4247,
29889,
4391,
5938,
2642,
703,
20779,
3399,
1496,
13,
259,
4234,
3399,
4247,
29889,
2697,
1626,
29898,
29885,
29918,
13509,
3399,
416,
13,
29871,
500,
13,
13,
29871,
565,
29898,
29885,
29918,
13509,
1170,
14510,
3629,
264,
2697,
29897,
13,
29871,
426,
13,
259,
24409,
4247,
4234,
1170,
4247,
353,
3847,
4247,
29889,
4391,
5938,
2642,
703,
20779,
1170,
1496,
13,
259,
4234,
1170,
4247,
29889,
2697,
1626,
29898,
29885,
29918,
13509,
1170,
416,
13,
29871,
500,
13,
13,
29871,
565,
29898,
29885,
29918,
1491,
4563,
2459,
3399,
14510,
3629,
264,
2697,
29897,
13,
29871,
426,
13,
259,
24409,
4247,
1014,
4563,
2459,
3399,
4247,
353,
3847,
4247,
29889,
4391,
5938,
2642,
703,
4035,
4563,
2459,
3399,
1496,
13,
259,
1014,
4563,
2459,
3399,
4247,
29889,
2697,
1626,
29898,
29885,
29918,
1491,
4563,
2459,
3399,
416,
13,
29871,
500,
13,
13,
29871,
565,
29898,
29885,
29918,
1491,
4563,
2459,
1170,
14510,
3629,
264,
2697,
29897,
13,
29871,
426,
13,
259,
24409,
4247,
1014,
4563,
2459,
1170,
4247,
353,
3847,
4247,
29889,
4391,
5938,
2642,
703,
4035,
4563,
2459,
1170,
1496,
13,
259,
1014,
4563,
2459,
1170,
4247,
29889,
2697,
1626,
29898,
29885,
29918,
1491,
4563,
2459,
1170,
416,
13,
29871,
500,
13,
13,
29913,
13,
13,
29913,
849,
7397,
8125,
13,
29913,
849,
7397,
12034,
29945,
29941,
13,
29913,
849,
7397,
319,
5652,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
July 2, 2010 -- Seven weeks after a vicious sulfuric acid attack, Katie Piper readied for her release from the hospital. The 26-year-old former model and aspiring television presenter was burned beyond recognition when a stranger threw acid in her face on a London street in March 2008.
"The pain was so bad I thought this guy's thrown a match at me... I thought I must be a big orange fireball because it's so painful," she recalled. "I remember bits of my face were coming off and bits were coming away, and my clothes were all evaporating and I was panicking. I was banging on the windows of the shops and people were scared."
Security cameras captured the incident and police learned that Piper's boyfriend, Danny Lynch -- a 33-year-old martial arts enthusiast Piper had started dating just two weeks earlier, had hired a henchman to throw the acid at the stunning model.
"This is when my life changed completely, forever…" she said, "This is when I lost my beautiful face."
The acid melted all of the skin on her face, neck and hands and when she arrived at the hospital, she was missing an ear and parts of her nose, and was blind in one eye. Piper's doctors began a series of reconstructive surgeries, including a revolutionary skin graft to reconstruct her face.
Click here to see photos of Katie Piper before the attack and through her miraculous recovery
But even after a marathon of reconstructive surgeries, psychological hurdles remained. Piper, whose looks were the key to her aspiring career as a model, hadn't seen a mirror since the day she was assaulted.
"I remember I had no eyelids and it was just the actual eyeballs round -- all exposed, and...[I] had no nose," Piper said. "It was just...it was so difficult, so alien."
"She looked at [her face] and burst into tears," said her father, David Piper. "And she looked at me and said, 'It's not me. It's not the face I was born with.'"
In shock, Piper asked for a moment alone before the ride to her family's home in Andover, England.
"I was alone in the room. And I was praying and I was talking to God and I knew God had a plan for me, I knew he was taking me on a journey," she said. "And I decided how hard it was going to get, I was going to keep on that journey.
Click here for full coverage of Katie Piper's story
Piper's Road to Recovery
Piper's road to recovery was long and filled with many more trips to the hospital. At home, she was forced to wear a plastic mask 23 hours a day to help her wounds heal.
The attack had stolen the carefree woman's identity and crushed her spirit. "I've never been like this where there's no point in waking up," she said. "I thought I was invincible, lived for the moment and loved life."
Piper's mother, Diane, quit her job to focus on her daughter's care.
"I thought, 'Well, I'll have to give up work. Kate won't want to go anywhere. She won't want to be seen by anybody. She'll become a recluse. I will give up my life; I will stay at home with her,' And that was the future. An empty future," Diane Piper said.
But as Piper settled in at home, the fear did not wear off. She was terrified of anyone approaching the house. Even the doorbell was paralyzing.
"It was like having a child again, instead of having a woman," her father said. "If somebody dropped a tray, she would nearly come off the bed. ...She was so frightened of men, generally, and just anything that was scary. And she had terrible days of, you know, hallucinations."
Visions of Attackers Haunt Model
Beyond a forest of medical concerns, Piper also obsessively worried about the legal proceedings against Lynch, who authorities said had a history of violence and had paid Stefan Sylvestre to throw the acid at Piper.
"In the first few months at home, every night I'd have nightmares about my attackers," she said. "I would see them over me, I'd wake up screaming."
By day, a glance at her reflection in the mirror sparked a firestorm of anger.
"My appearance is a constant reminder of what he did to me. And almost like I belong to him, because it's not really my face -- it's the one he created through the attack," Piper said. "I think that's like the only thing I feel I belong to, is him. I always have, like, his marks all over my face, all over my body. I'll never be like the person I was born to be like -- the person I'm supposed to be."
"It was really hard," said Piper's younger sister Suzy. "One day ... you sort of thought, 'Oh, you know, maybe she's getting better.' And then it could be even just half an hour later ... she wouldn't speak or she would be really upset or she'd be angry. It was like a roller coaster."
For over a year, Piper only left her home for trips to the hospital. She dreaded going out in public, even shopping at the mall, because people stared.
Burned Model Celebrates Triumphant Journey
Slowly, Piper began rearranging her life. "She sort of reached this conscious decision ... when she said, 'I am not going to be a victim. I'm going to be a survivor,'" David Piper said.
Eighteen months after the incident, the former self-described "party girl" decided to throw a party for those who were a part of her terrible but triumphant journey.
"I'd accepted that this was me. This was my new, beautiful face," she said. "I'd had a lot of help from the people that really mattered. I wanted to thank them in a way that I could ... and I knew it would mean a lot to those people to see me enjoying myself and out. I think that was a reward to them and to me as well."
"I never dreamed that we'd see her like that again," said Suzy. "And so to look at her I just thought that it's Kate again. She's back, you know. And it was so nice."
Her next milestone was leaving the house alone. Piper took a short walk into town. It was an emotional moment for Piper and her mother.
"I think I've got a chance to build a life, and I don't know if it's going to be that easy, but I want to try. I don't want to be a scared little child. I want to blossom into a confident, able woman," she said. "The scars, the mask, everything encased me in this little shell, and I want to break free and be my own person ... I want to be rid of that and just be Katie."
Piper's Plans for the Future
Piper first told her story in a British television documentary, "My Beautiful Face," which gave her the platform to rebuild her life. She now wants to help other burn victims receive the same extensive rehab that she did.
"We actually talk about it now -- she wants to set up a clinic here in London so, you know, anyone who is burnt can go to this clinic for as much rehab as possible," said best friend Kay Little. "I think she's actually probably got a brighter future now than she had as a, you know, as a model and, and TV presenter."
Piper admits that before the incident, she was self-obsessed.
"I was the most important thing in my life. There was always something in my life that I was missing and I never knew what that hole was. And after my accident I found a faith and, and I learned to believe in God and I started to pray…And that void has been filled in my life," she said. "I feel enriched in that way through the accident. And I think it's taught me that I don't want to be a cliche ...it has taught me that, you know, looks aren't everything."
A jury found Stefan Sylvestre, the man who threw the acid, guilty of causing bodily harm. He received a life sentence, with a minimum of 12 years in prison. Piper's ex-boyfriend David Lynch, who orchestrated the attack, received two life sentences, and will serve at least 16 years in jail.
"I've got some terrible memories that will live with me forever," Piper said. "But slowly I'm replacing them with some fantastic memories that nobody can take away."
Click here for full coverage of Katie Piper's story
Katie Piper's Foundation: http://www.katiepiperfoundation.org.uk/ | [
1,
5468,
29871,
29906,
29892,
29871,
29906,
29900,
29896,
29900,
30527,
1192,
26647,
11405,
1156,
263,
325,
14803,
5394,
22613,
293,
22193,
5337,
29892,
476,
9474,
7362,
546,
1303,
1000,
363,
902,
6507,
515,
278,
13457,
29889,
450,
29871,
29906,
29953,
29899,
6360,
29899,
1025,
4642,
1904,
322,
7051,
8491,
11456,
2198,
261,
471,
12138,
287,
8724,
19679,
746,
263,
26507,
18318,
22193,
297,
902,
3700,
373,
263,
4517,
11952,
297,
4779,
29871,
29906,
29900,
29900,
29947,
29889,
13,
13,
29908,
1576,
6788,
471,
577,
4319,
306,
2714,
445,
1410,
29891,
29915,
29879,
12005,
263,
1993,
472,
592,
856,
306,
2714,
306,
1818,
367,
263,
4802,
24841,
3974,
2135,
1363,
372,
29915,
29879,
577,
6788,
1319,
1699,
1183,
337,
13998,
29889,
376,
29902,
6456,
9978,
310,
590,
3700,
892,
6421,
1283,
322,
9978,
892,
6421,
3448,
29892,
322,
590,
22095,
892,
599,
3415,
26191,
1218,
322,
306,
471,
7243,
860,
292,
29889,
306,
471,
289,
9776,
373,
278,
5417,
310,
278,
528,
3554,
322,
2305,
892,
885,
1965,
1213,
13,
13,
13228,
3949,
18464,
15468,
278,
15134,
322,
10974,
10972,
393,
7362,
546,
29915,
29879,
8023,
18326,
29892,
360,
14763,
18989,
305,
1192,
263,
29871,
29941,
29941,
29899,
6360,
29899,
1025,
14436,
616,
16930,
23644,
15736,
7362,
546,
750,
4687,
270,
1218,
925,
1023,
11405,
8859,
29892,
750,
298,
2859,
263,
19061,
305,
1171,
304,
3183,
278,
22193,
472,
278,
380,
27389,
1904,
29889,
13,
13,
29908,
4013,
338,
746,
590,
2834,
3939,
6446,
29892,
22296,
30098,
29908,
1183,
1497,
29892,
376,
4013,
338,
746,
306,
5714,
590,
9560,
3700,
1213,
13,
13,
1576,
22193,
286,
2152,
287,
599,
310,
278,
19309,
373,
902,
3700,
29892,
18873,
322,
6567,
322,
746,
1183,
11977,
472,
278,
13457,
29892,
1183,
471,
4567,
385,
2326,
322,
5633,
310,
902,
26414,
29892,
322,
471,
16842,
297,
697,
10977,
29889,
7362,
546,
29915,
29879,
437,
14359,
4689,
263,
3652,
310,
337,
11433,
573,
1190,
914,
583,
29892,
3704,
263,
19479,
653,
19309,
2646,
615,
304,
337,
11433,
902,
3700,
29889,
13,
13,
4164,
1244,
304,
1074,
20612,
310,
476,
9474,
7362,
546,
1434,
278,
5337,
322,
1549,
902,
3737,
945,
352,
681,
24205,
13,
13,
6246,
1584,
1156,
263,
1766,
25206,
310,
337,
11433,
573,
1190,
914,
583,
29892,
11643,
5996,
12166,
29881,
793,
9488,
29889,
7362,
546,
29892,
5069,
3430,
892,
278,
1820,
304,
902,
7051,
8491,
6413,
408,
263,
1904,
29892,
27222,
29915,
29873,
3595,
263,
19571,
1951,
278,
2462,
1183,
471,
29159,
287,
29889,
13,
13,
29908,
29902,
6456,
306,
750,
694,
321,
29891,
295,
4841,
322,
372,
471,
925,
278,
3935,
321,
29891,
774,
4293,
4513,
1192,
599,
19884,
29892,
322,
856,
29961,
29902,
29962,
750,
694,
26414,
1699,
7362,
546,
1497,
29889,
376,
3112,
471,
925,
856,
277,
471,
577,
5189,
29892,
577,
394,
819,
1213,
13,
13,
29908,
13468,
5148,
472,
518,
2276,
3700,
29962,
322,
20887,
964,
20190,
1699,
1497,
902,
4783,
29892,
4699,
7362,
546,
29889,
376,
2855,
1183,
5148,
472,
592,
322,
1497,
29892,
525,
3112,
29915,
29879,
451,
592,
29889,
739,
29915,
29879,
451,
278,
3700,
306,
471,
6345,
411,
6169,
29908,
13,
13,
797,
19253,
29892,
7362,
546,
4433,
363,
263,
3256,
7432,
1434,
278,
22203,
304,
902,
3942,
29915,
29879,
3271,
297,
1126,
957,
29892,
5408,
29889,
13,
13,
29908,
29902,
471,
7432,
297,
278,
5716,
29889,
1126,
306,
471,
12475,
292,
322,
306,
471,
9963,
304,
4177,
322,
306,
6363,
4177,
750,
263,
3814,
363,
592,
29892,
306,
6363,
540,
471,
5622,
592,
373,
263,
16342,
1699,
1183,
1497,
29889,
376,
2855,
306,
8459,
920,
2898,
372,
471,
2675,
304,
679,
29892,
306,
471,
2675,
304,
3013,
373,
393,
16342,
29889,
13,
13,
4164,
1244,
363,
2989,
23746,
310,
476,
9474,
7362,
546,
29915,
29879,
5828,
13,
13,
12197,
546,
29915,
29879,
9321,
304,
3599,
22205,
13,
13,
12197,
546,
29915,
29879,
6520,
304,
24205,
471,
1472,
322,
10423,
411,
1784,
901,
3367,
567,
304,
278,
13457,
29889,
2180,
3271,
29892,
1183,
471,
11826,
304,
19531,
263,
715,
6288,
11105,
29871,
29906,
29941,
6199,
263,
2462,
304,
1371,
902,
281,
3885,
540,
284,
29889,
13,
13,
1576,
5337,
750,
380,
18975,
278,
2562,
9021,
6114,
29915,
29879,
10110,
322,
2181,
15392,
902,
8548,
29889,
376,
29902,
29915,
345,
2360,
1063,
763,
445,
988,
727,
29915,
29879,
694,
1298,
297,
281,
5086,
701,
1699,
1183,
1497,
29889,
376,
29902,
2714,
306,
471,
2437,
2173,
569,
29892,
10600,
363,
278,
3256,
322,
18012,
2834,
1213,
13,
13,
12197,
546,
29915,
29879,
5637,
29892,
360,
16677,
29892,
23283,
902,
4982,
304,
8569,
373,
902,
8750,
29915,
29879,
2562,
29889,
13,
13,
29908,
29902,
2714,
29892,
525,
11284,
29892,
306,
29915,
645,
505,
304,
2367,
701,
664,
29889,
23738,
2113,
29915,
29873,
864,
304,
748,
12214,
29889,
2296,
2113,
29915,
29873,
864,
304,
367,
3595,
491,
16357,
29889,
2296,
29915,
645,
4953,
263,
337,
695,
1509,
29889,
306,
674,
2367,
701,
590,
2834,
29936,
306,
674,
7952,
472,
3271,
411,
902,
5501,
1126,
393,
471,
278,
5434,
29889,
530,
4069,
5434,
1699,
360,
16677,
7362,
546,
1497,
29889,
13,
13,
6246,
408,
7362,
546,
17141,
297,
472,
3271,
29892,
278,
8866,
1258,
451,
19531,
1283,
29889,
2296,
471,
1935,
29878,
2164,
310,
5019,
28702,
278,
3699,
29889,
7753,
278,
3050,
12562,
471,
610,
284,
12339,
292,
29889,
13,
13,
29908,
3112,
471,
763,
2534,
263,
2278,
1449,
29892,
2012,
310,
2534,
263,
6114,
1699,
902,
4783,
1497,
29889,
376,
3644,
18462,
13700,
263,
260,
764,
29892,
1183,
723,
8886,
2041,
1283,
278,
6592,
29889,
2023,
13468,
471,
577,
22739,
6419,
310,
1757,
29892,
6892,
29892,
322,
925,
3099,
393,
471,
885,
653,
29889,
1126,
1183,
750,
16403,
3841,
310,
29892,
366,
1073,
29892,
12713,
1682,
262,
800,
1213,
13,
13,
6116,
1080,
310,
6212,
547,
414,
5952,
1657,
8125,
13,
13,
29933,
1032,
898,
263,
13569,
310,
16083,
21838,
29892,
7362,
546,
884,
20881,
404,
3598,
6365,
1255,
1048,
278,
11706,
8469,
886,
2750,
18989,
305,
29892,
1058,
21142,
1497,
750,
263,
4955,
310,
21448,
322,
750,
12530,
21512,
19628,
10147,
276,
304,
3183,
278,
22193,
472,
7362,
546,
29889,
13,
13,
29908,
797,
278,
937,
2846,
7378,
472,
3271,
29892,
1432,
4646,
306,
29915,
29881,
505,
4646,
3034,
267,
1048,
590,
5337,
414,
1699,
1183,
1497,
29889,
376,
29902,
723,
1074,
963,
975,
592,
29892,
306,
29915,
29881,
281,
1296,
701,
885,
1633,
292,
1213,
13,
13,
2059,
2462,
29892,
263,
21798,
472,
902,
17842,
297,
278,
19571,
16267,
287,
263,
13734,
342,
555,
310,
27343,
29889,
13,
13,
29908,
3421,
10097,
338,
263,
4868,
1083,
4995,
310,
825,
540,
1258,
304,
592,
29889,
1126,
4359,
763,
306,
6852,
304,
1075,
29892,
1363,
372,
29915,
29879,
451,
2289,
590,
3700,
1192,
372,
29915,
29879,
278,
697,
540,
2825,
1549,
278,
5337,
1699,
7362,
546,
1497,
29889,
376,
29902,
1348,
393,
29915,
29879,
763,
278,
871,
2655,
306,
4459,
306,
6852,
304,
29892,
338,
1075,
29889,
306,
2337,
505,
29892,
763,
29892,
670,
17997,
599,
975,
590,
3700,
29892,
599,
975,
590,
3573,
29889,
306,
29915,
645,
2360,
367,
763,
278,
2022,
306,
471,
6345,
304,
367,
763,
1192,
278,
2022,
306,
29915,
29885,
7424,
304,
367,
1213,
13,
13,
29908,
3112,
471,
2289,
2898,
1699,
1497,
7362,
546,
29915,
29879,
20023,
9883,
2166,
1537,
29889,
376,
6716,
2462,
2023,
366,
2656,
310,
2714,
29892,
525,
9048,
29892,
366,
1073,
29892,
5505,
1183,
29915,
29879,
2805,
2253,
6169,
1126,
769,
372,
1033,
367,
1584,
925,
4203,
385,
7234,
2678,
2023,
1183,
7656,
29915,
29873,
7726,
470,
1183,
723,
367,
2289,
24081,
300,
470,
1183,
29915,
29881,
367,
26230,
29889,
739,
471,
763,
263,
9679,
261,
1302,
1901,
1213,
13,
13,
2831,
975,
263,
1629,
29892,
7362,
546,
871,
2175,
902,
3271,
363,
3367,
567,
304,
278,
13457,
29889,
2296,
21005,
287,
2675,
714,
297,
970,
29892,
1584,
17394,
3262,
472,
278,
286,
497,
29892,
1363,
2305,
380,
1965,
29889,
13,
13,
29933,
595,
287,
8125,
315,
6146,
1182,
1078,
8602,
19149,
424,
435,
473,
3801,
13,
13,
29903,
677,
368,
29892,
7362,
546,
4689,
337,
2749,
9776,
902,
2834,
29889,
376,
13468,
2656,
310,
7450,
445,
19861,
10608,
2023,
746,
1183,
1497,
29892,
525,
29902,
626,
451,
2675,
304,
367,
263,
28985,
29889,
306,
29915,
29885,
2675,
304,
367,
263,
10503,
440,
272,
5501,
29908,
4699,
7362,
546,
1497,
29889,
13,
13,
29923,
1141,
9404,
7378,
1156,
278,
15134,
29892,
278,
4642,
1583,
29899,
2783,
23059,
376,
22633,
7826,
29908,
8459,
304,
3183,
263,
6263,
363,
1906,
1058,
892,
263,
760,
310,
902,
16403,
541,
24124,
424,
16342,
29889,
13,
13,
29908,
29902,
29915,
29881,
9259,
393,
445,
471,
592,
29889,
910,
471,
590,
716,
29892,
9560,
3700,
1699,
1183,
1497,
29889,
376,
29902,
29915,
29881,
750,
263,
3287,
310,
1371,
515,
278,
2305,
393,
2289,
4383,
287,
29889,
306,
5131,
304,
6452,
963,
297,
263,
982,
393,
306,
1033,
2023,
322,
306,
6363,
372,
723,
2099,
263,
3287,
304,
1906,
2305,
304,
1074,
592,
11418,
5414,
6142,
322,
714,
29889,
306,
1348,
393,
471,
263,
20751,
304,
963,
322,
304,
592,
408,
1532,
1213,
13,
13,
29908,
29902,
2360,
12561,
287,
393,
591,
29915,
29881,
1074,
902,
763,
393,
1449,
1699,
1497,
2166,
1537,
29889,
376,
2855,
577,
304,
1106,
472,
902,
306,
925,
2714,
393,
372,
29915,
29879,
23738,
1449,
29889,
2296,
29915,
29879,
1250,
29892,
366,
1073,
29889,
1126,
372,
471,
577,
7575,
1213,
13,
13,
18650,
2446,
2316,
27744,
471,
10124,
278,
3699,
7432,
29889,
7362,
546,
3614,
263,
3273,
6686,
964,
4726,
29889,
739,
471,
385,
23023,
1848,
3256,
363,
7362,
546,
322,
902,
5637,
29889,
13,
13,
29908,
29902,
1348,
306,
29915,
345,
2355,
263,
8825,
304,
2048,
263,
2834,
29892,
322,
306,
1016,
29915,
29873,
1073,
565,
372,
29915,
29879,
2675,
304,
367,
393,
4780,
29892,
541,
306,
864,
304,
1018,
29889,
306,
1016,
29915,
29873,
864,
304,
367,
263,
885,
1965,
2217,
2278,
29889,
306,
864,
304,
1999,
2209,
290,
964,
263,
24332,
29892,
2221,
6114,
1699,
1183,
1497,
29889,
376,
1576,
885,
1503,
29892,
278,
11105,
29892,
4129,
2094,
1463,
592,
297,
445,
2217,
6473,
29892,
322,
306,
864,
304,
2867,
3889,
322,
367,
590,
1914,
2022,
2023,
306,
864,
304,
367,
8177,
310,
393,
322,
925,
367,
476,
9474,
1213,
13,
13,
12197,
546,
29915,
29879,
1858,
550,
363,
278,
16367,
13,
13,
12197,
546,
937,
5429,
902,
5828,
297,
263,
4908,
11456,
1842,
653,
29892,
376,
3421,
25685,
10635,
1699,
607,
4846,
902,
278,
7481,
304,
337,
4282,
902,
2834,
29889,
2296,
1286,
10753,
304,
1371,
916,
12138,
6879,
9893,
7150,
278,
1021,
20607,
337,
7308,
393,
1183,
1258,
29889,
13,
13,
29908,
4806,
2869,
5193,
1048,
372,
1286,
1192,
1183,
10753,
304,
731,
701,
263,
24899,
293,
1244,
297,
4517,
577,
29892,
366,
1073,
29892,
5019,
1058,
338,
6866,
593,
508,
748,
304,
445,
24899,
293,
363,
408,
1568,
337,
7308,
408,
1950,
1699,
1497,
1900,
5121,
28444,
11143,
29889,
376,
29902,
1348,
1183,
29915,
29879,
2869,
3117,
2355,
263,
1506,
14643,
5434,
1286,
1135,
1183,
750,
408,
263,
29892,
366,
1073,
29892,
408,
263,
1904,
322,
29892,
322,
5648,
2198,
261,
1213,
13,
13,
12197,
546,
7336,
1169,
393,
1434,
278,
15134,
29892,
1183,
471,
1583,
29899,
26290,
11517,
29889,
13,
13,
29908,
29902,
471,
278,
1556,
4100,
2655,
297,
590,
2834,
29889,
1670,
471,
2337,
1554,
297,
590,
2834,
393,
306,
471,
4567,
322,
306,
2360,
6363,
825,
393,
16188,
471,
29889,
1126,
1156,
590,
11423,
306,
1476,
263,
10847,
322,
29892,
322,
306,
10972,
304,
4658,
297,
4177,
322,
306,
4687,
304,
12475,
30098,
2855,
393,
1780,
756,
1063,
10423,
297,
590,
2834,
1699,
1183,
1497,
29889,
376,
29902,
4459,
427,
4018,
287,
297,
393,
982,
1549,
278,
11423,
29889,
1126,
306,
1348,
372,
29915,
29879,
16187,
592,
393,
306,
1016,
29915,
29873,
864,
304,
367,
263,
274,
4545,
2023,
277,
756,
16187,
592,
393,
29892,
366,
1073,
29892,
3430,
9455,
29915,
29873,
4129,
1213,
13,
13,
29909,
432,
2857,
1476,
21512,
19628,
10147,
276,
29892,
278,
767,
1058,
18318,
278,
22193,
29892,
27719,
310,
10805,
13004,
2354,
10311,
29889,
940,
4520,
263,
2834,
10541,
29892,
411,
263,
9212,
310,
29871,
29896,
29906,
2440,
297,
8475,
29889,
7362,
546,
29915,
29879,
429,
29899,
19415,
18326,
4699,
18989,
305,
29892,
1058,
22624,
16444,
630,
278,
5337,
29892,
4520,
1023,
2834,
25260,
29892,
322,
674,
9080,
472,
3203,
29871,
29896,
29953,
2440,
297,
432,
737,
29889,
13,
13,
29908,
29902,
29915,
345,
2355,
777,
16403,
2626,
3842,
393,
674,
5735,
411,
592,
22296,
1699,
7362,
546,
1497,
29889,
376,
6246,
14205,
306,
29915,
29885,
15270,
963,
411,
777,
13568,
6288,
2626,
3842,
393,
23196,
508,
2125,
3448,
1213,
13,
13,
4164,
1244,
363,
2989,
23746,
310,
476,
9474,
7362,
546,
29915,
29879,
5828,
13,
13,
29968,
9474,
7362,
546,
29915,
29879,
10606,
29901,
1732,
597,
1636,
29889,
29895,
9474,
1631,
546,
11940,
362,
29889,
990,
29889,
2679,
29914
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Cobra II
Cobra II: The Inside Story of the Invasion and Occupation of Iraq is a 2006 book written by Michael R. Gordon, chief military correspondent for The New York Times, and Bernard E. Trainor, a retired Marine Corps lieutenant general, which details the behind-the-scenes decision-making leading to the invasion of Iraq in 2003. It then follows, in depth, the invasion itself and the early months of the occupation through summer 2003.
The authors had access to a wide range of materials, including many classified documents, and access to the highest levels of the US and Iraqi government and military. They describe in detail the meetings, correspondence, and positions of the various actors, including not only the US and Iraq, but other countries across the world as they considered the implications of joining the "Coalition of the Willing".
A large part of the book is dedicated to describing the internal meetings and perspectives of Iraqi leadership. Predominant among the actors described are the US and Iraqi generals, Defense Secretary Donald Rumsfeld, and President George W. Bush and their closest staff members. The book reconstructs the principal battles from primary sources including many interviews with both military leadership and front-line soldiers. Also discussed are the failures of US intelligence and the paucity of planning concerning post-war operations.
Themes
Gordon and Trainor argue broadly that America's Iraq War difficulties came from five major failures: "the misreading of the foe", "the overreliance on technological advancement", "the failure to adapt to developments on the battlefield", "the dysfunction of American military structures", and "the Bush Administration's disdain for nation-building".
Notes
External links
New York Times Book Review article
Random House book description
Foreign Affairs review
Panel discussion on with Gordon and Trainor on Cobra II, March 16, 2006
Category:2006 books
Category:Books about the 2003 invasion of Iraq | [
1,
24991,
336,
1944,
13,
13,
29907,
711,
336,
1944,
29901,
450,
22804,
13740,
310,
278,
512,
4428,
291,
322,
16117,
786,
362,
310,
21375,
29939,
338,
263,
29871,
29906,
29900,
29900,
29953,
3143,
3971,
491,
5765,
390,
29889,
16965,
29892,
9087,
9121,
3928,
296,
363,
450,
1570,
3088,
10277,
29892,
322,
13337,
382,
29889,
28186,
272,
29892,
263,
16528,
15929,
16408,
25097,
2498,
29892,
607,
4902,
278,
5742,
29899,
1552,
29899,
1557,
25487,
10608,
29899,
28990,
8236,
304,
278,
28425,
310,
21375,
29939,
297,
29871,
29906,
29900,
29900,
29941,
29889,
739,
769,
4477,
29892,
297,
10809,
29892,
278,
28425,
3528,
322,
278,
4688,
7378,
310,
278,
26818,
1549,
11801,
29871,
29906,
29900,
29900,
29941,
29889,
13,
13,
1576,
15717,
750,
2130,
304,
263,
9377,
3464,
310,
17279,
29892,
3704,
1784,
770,
2164,
10701,
29892,
322,
2130,
304,
278,
9939,
11174,
310,
278,
3148,
322,
21375,
26461,
5874,
322,
9121,
29889,
2688,
8453,
297,
9493,
278,
5870,
886,
29892,
3928,
663,
29892,
322,
11909,
310,
278,
5164,
29701,
29892,
3704,
451,
871,
278,
3148,
322,
21375,
29939,
29892,
541,
916,
10916,
4822,
278,
3186,
408,
896,
5545,
278,
2411,
5795,
310,
22960,
278,
376,
7967,
284,
654,
310,
278,
2811,
292,
1642,
13,
13,
29909,
2919,
760,
310,
278,
3143,
338,
16955,
304,
20766,
278,
7463,
5870,
886,
322,
3736,
1103,
3145,
310,
21375,
26461,
26001,
29889,
29871,
21099,
5817,
424,
4249,
278,
29701,
5439,
526,
278,
3148,
322,
21375,
26461,
1176,
1338,
29892,
5282,
1947,
17719,
18935,
20852,
4668,
2495,
29892,
322,
7178,
5122,
399,
29889,
24715,
322,
1009,
21438,
13925,
5144,
29889,
450,
3143,
337,
11433,
29879,
278,
5882,
8957,
793,
515,
7601,
8974,
3704,
1784,
1006,
7406,
411,
1716,
9121,
26001,
322,
4565,
29899,
1220,
13936,
29889,
3115,
15648,
526,
278,
4418,
1973,
310,
3148,
21082,
322,
278,
24571,
12690,
310,
18987,
19813,
1400,
29899,
4495,
6931,
29889,
13,
13,
1349,
13826,
13,
29954,
14224,
322,
28186,
272,
27754,
7300,
368,
393,
6813,
29915,
29879,
21375,
29939,
3362,
23553,
2996,
515,
5320,
4655,
4418,
1973,
29901,
376,
1552,
3984,
19715,
310,
278,
1701,
29872,
613,
376,
1552,
975,
276,
13036,
373,
5722,
5996,
3061,
27967,
613,
376,
1552,
10672,
304,
7744,
304,
2693,
1860,
373,
278,
10555,
2671,
613,
376,
1552,
270,
952,
2220,
310,
3082,
9121,
12286,
613,
322,
376,
1552,
24715,
23303,
29915,
29879,
766,
29881,
475,
363,
5233,
29899,
25237,
1642,
13,
13,
3664,
267,
13,
13,
25865,
2988,
29871,
13,
1570,
3088,
10277,
6726,
13957,
4274,
13,
16968,
5619,
3143,
6139,
13,
27755,
26049,
9076,
13,
349,
3870,
10679,
373,
411,
16965,
322,
28186,
272,
373,
24991,
336,
1944,
29892,
4779,
29871,
29896,
29953,
29892,
29871,
29906,
29900,
29900,
29953,
13,
13,
10900,
29901,
29906,
29900,
29900,
29953,
8277,
13,
10900,
29901,
10967,
29879,
1048,
278,
29871,
29906,
29900,
29900,
29941,
28425,
310,
21375,
29939
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
The Six Positions 13 July 2017
Most syllabus Standard dancers are used to dancing in Closed Position and Promenade Positions, but all told there are six positions that you need to know to have a well rounded understanding of Standard. Two of these positions don't appear in the syllabus, but they are all fairly common in Open figures. This post will not only tell you what they are, but also how to get into them (how to get out will always depend on the following figure), and common figures where they are used.
In all the diagrams below, the blue and pink squares represent the Man and Lady's hips, respectively. These do not represent their shoulders, which should remain as parallel to each other as possible, regardless of the position of the hips.
Closed Position (Right to Right)
This is the most fundamental position, and the one you undoubtedly learnt first when starting to dance. The Man and Lady face each other, with the Lady on the Man's right side, and the hips are parallel to each other. It is also called Right to Right, because the Man's right side and the Lady's right side are in contact. This positioning of the hips encompasses another position - Outside Partner. In Outside Partner, the relation between the dancers' hips is exactly the same, the only difference being that the direction of movement is not forward or back, but diagonally forward to the left, or diagonally back to the right, allowing the legs to swing freely.
Close Position is used in most basic steps, including the Waltz Natural Turn, the Tango Reverse Turn, and every figure in traditional Viennese Waltz.
Outside Partner Position is used in the Foxtrot Feather Step, the Quickstep Forward Lock, and the Waltz Outside Spin.
Wing Position (Left to Left)
This position is very difficult for most dancers to learn, especially while maintaining a good frame and topline. Nevertheless, this position shows up in the Syllabus starting at Silver. The Man and the Lady face each other, but with the Lady on the Man's left side, while the hips stay parallel. It is also called Left to Left because the Man's left side and the Lady's left side are in contact. Steps in this position are generally taken in Outside Partner on the Left. To achieve this position, the Man will lead the Lady to slide her hips around the him until she reaches his left side.
Wing Position is used in the Wing and the Closed Wing in Waltz, and in Foxtrot the Hover Cross.
Promenade Position
This is probably the second position you learnt, after Closed Position. In this position, the Man and the Lady's hips are opened to form a V to the Man's Left (Lady's Right). Because of the opening and the offset, the Lady will be slightly behind the Man. To achieve this position, the Man will lead the Lady to roll her hips around his, or he may roll his own hips to the left, depending on the figure. This positioning of the hips encompasses another position - Fallaway Position. Fallaway is just Promenade that moves backward, but the positioning of the bodies is exactly the same.
Promenade Position is used in the Waltz Chasse from PP, the Tango Closed Promenade, and the Foxtrot Open Impetus.
Fallaway Position is used in the Waltz Fallaway Reverse Turn Slip Pivot, the Tango Fallaway Promenade, and the Foxtrot Bounce Fallaway with Weave Ending.
Counter Promenade Position
Of all the positions, this position is used the least, because it is difficult to execute and can easily distort the topline. In this position, the Man and the Lady's hips are opened to form a V to the Man's Right (Lady's Left). Because of the opening and the offset, the Lady will be slightly in front of the Man, and rolled into the crease of his left hip. This position would be exactly the same as Promenade Position if the Man and Lady were to switch roles. To achieve this position, the Man will lead the Lady to roll her hips away from him, or he may roll his own hips around her, depending on the figure. This positioning of the hips encompasses another position - Counter Fallaway Position. Counter Fallaway is just Counter Promenade that moves backward, but the positioning of the bodies is exactly the same.
Counter Promenade Position is not used in the Waltz Left Whisk.
Counter Fallaway Position is used briefly in the Foxtrot Three Fallaways.
Same Foot Lunge Position
This position is named after the popular figure that makes use of it, and it isn't found at all in the Syllabus. The Lady's hips are not parallel, but perpendicular to the Man's, with her facing the Man's left side. Her hips sit on the Man's right side, in the crease of his right hip. To achieve this position, the Man will slip his hips beyond the Lady's, while leading her to turn to her right.
This position is used in the Same Foot Lunge, and the Right Hinge.
Hinge Position
This position is also named after the popular figure that makes use of it, and it is also not found in the Syllabus. The Lady's hips are again perpendicular to the Man's, but with her facing the Man's right side. Her hips sit on the Man's left side, in the crease of his left hip. To achieve this position, the Man will lead the Lady to his left side and to turn to her left.
This position is used in the Hinge.
There are from time to time other extreme positions advanced dancers will use, but these six are the fundamentals. Practicing them can lead to better partner awareness and a more flowing lead and follow. | [
1,
450,
18372,
10321,
2187,
29871,
29896,
29941,
5468,
29871,
29906,
29900,
29896,
29955,
13,
13,
29924,
520,
9878,
645,
370,
375,
10117,
270,
4564,
414,
526,
1304,
304,
6025,
3277,
297,
2233,
2662,
20627,
322,
9705,
264,
1943,
10321,
2187,
29892,
541,
599,
5429,
727,
526,
4832,
11909,
393,
366,
817,
304,
1073,
304,
505,
263,
1532,
28240,
8004,
310,
10117,
29889,
7803,
310,
1438,
11909,
1016,
29915,
29873,
2615,
297,
278,
9878,
645,
370,
375,
29892,
541,
896,
526,
599,
12558,
3619,
297,
4673,
13994,
29889,
910,
1400,
674,
451,
871,
2649,
366,
825,
896,
526,
29892,
541,
884,
920,
304,
679,
964,
963,
313,
3525,
304,
679,
714,
674,
2337,
8839,
373,
278,
1494,
4377,
511,
322,
3619,
13994,
988,
896,
526,
1304,
29889,
13,
13,
797,
599,
278,
7936,
25402,
2400,
29892,
278,
7254,
322,
282,
682,
25256,
2755,
278,
2315,
322,
10040,
29915,
29879,
298,
4512,
29892,
8307,
29889,
4525,
437,
451,
2755,
1009,
26671,
29892,
607,
881,
3933,
408,
8943,
304,
1269,
916,
408,
1950,
29892,
17126,
310,
278,
2602,
310,
278,
298,
4512,
29889,
13,
13,
6821,
2662,
20627,
313,
7341,
304,
10428,
29897,
13,
13,
4013,
338,
278,
1556,
15281,
2602,
29892,
322,
278,
697,
366,
563,
283,
3116,
23244,
24298,
593,
937,
746,
6257,
304,
17948,
29889,
450,
2315,
322,
10040,
3700,
1269,
916,
29892,
411,
278,
10040,
373,
278,
2315,
29915,
29879,
1492,
2625,
29892,
322,
278,
298,
4512,
526,
8943,
304,
1269,
916,
29889,
739,
338,
884,
2000,
10428,
304,
10428,
29892,
1363,
278,
2315,
29915,
29879,
1492,
2625,
322,
278,
10040,
29915,
29879,
1492,
2625,
526,
297,
6958,
29889,
910,
2602,
292,
310,
278,
298,
4512,
427,
2388,
465,
267,
1790,
2602,
448,
4451,
2975,
3455,
1089,
29889,
512,
4451,
2975,
3455,
1089,
29892,
278,
8220,
1546,
278,
270,
4564,
414,
29915,
298,
4512,
338,
3721,
278,
1021,
29892,
278,
871,
4328,
1641,
393,
278,
5305,
310,
10298,
338,
451,
6375,
470,
1250,
29892,
541,
7936,
265,
635,
6375,
304,
278,
2175,
29892,
470,
7936,
265,
635,
1250,
304,
278,
1492,
29892,
14372,
278,
21152,
304,
24500,
28472,
29889,
13,
13,
11123,
20627,
338,
1304,
297,
1556,
6996,
6576,
29892,
3704,
278,
399,
1997,
29920,
18385,
9603,
29892,
278,
323,
4524,
830,
3901,
9603,
29892,
322,
1432,
4377,
297,
13807,
478,
17810,
968,
399,
1997,
29920,
29889,
13,
13,
3744,
2975,
3455,
1089,
20627,
338,
1304,
297,
278,
28532,
486,
5450,
5169,
1624,
16696,
29892,
278,
26141,
10568,
1152,
1328,
18199,
29892,
322,
278,
399,
1997,
29920,
4451,
2975,
1706,
262,
29889,
13,
13,
29956,
292,
20627,
313,
8091,
304,
19941,
29897,
13,
13,
4013,
2602,
338,
1407,
5189,
363,
1556,
270,
4564,
414,
304,
5110,
29892,
7148,
1550,
7344,
292,
263,
1781,
3515,
322,
304,
572,
457,
29889,
25678,
29892,
445,
2602,
3697,
701,
297,
278,
8713,
645,
370,
375,
6257,
472,
16466,
29889,
450,
2315,
322,
278,
10040,
3700,
1269,
916,
29892,
541,
411,
278,
10040,
373,
278,
2315,
29915,
29879,
2175,
2625,
29892,
1550,
278,
298,
4512,
7952,
8943,
29889,
739,
338,
884,
2000,
19941,
304,
19941,
1363,
278,
2315,
29915,
29879,
2175,
2625,
322,
278,
10040,
29915,
29879,
2175,
2625,
526,
297,
6958,
29889,
2443,
567,
297,
445,
2602,
526,
6892,
4586,
297,
4451,
2975,
3455,
1089,
373,
278,
19941,
29889,
1763,
6176,
445,
2602,
29892,
278,
2315,
674,
3275,
278,
10040,
304,
20343,
902,
298,
4512,
2820,
278,
1075,
2745,
1183,
22170,
670,
2175,
2625,
29889,
13,
13,
29956,
292,
20627,
338,
1304,
297,
278,
27792,
322,
278,
2233,
2662,
27792,
297,
399,
1997,
29920,
29892,
322,
297,
28532,
486,
5450,
278,
379,
957,
11189,
29889,
13,
13,
18571,
264,
1943,
20627,
13,
13,
4013,
338,
3117,
278,
1473,
2602,
366,
24298,
593,
29892,
1156,
2233,
2662,
20627,
29889,
512,
445,
2602,
29892,
278,
2315,
322,
278,
10040,
29915,
29879,
298,
4512,
526,
6496,
304,
883,
263,
478,
304,
278,
2315,
29915,
29879,
19941,
313,
29931,
3714,
29915,
29879,
10428,
467,
7311,
310,
278,
8718,
322,
278,
9210,
29892,
278,
10040,
674,
367,
10029,
5742,
278,
2315,
29889,
1763,
6176,
445,
2602,
29892,
278,
2315,
674,
3275,
278,
10040,
304,
9679,
902,
298,
4512,
2820,
670,
29892,
470,
540,
1122,
9679,
670,
1914,
298,
4512,
304,
278,
2175,
29892,
8679,
373,
278,
4377,
29889,
910,
2602,
292,
310,
278,
298,
4512,
427,
2388,
465,
267,
1790,
2602,
448,
383,
9864,
1582,
20627,
29889,
383,
9864,
1582,
338,
925,
9705,
264,
1943,
393,
16229,
1250,
1328,
29892,
541,
278,
2602,
292,
310,
278,
17873,
338,
3721,
278,
1021,
29889,
13,
13,
18571,
264,
1943,
20627,
338,
1304,
297,
278,
399,
1997,
29920,
678,
5793,
515,
349,
29925,
29892,
278,
323,
4524,
2233,
2662,
9705,
264,
1943,
29892,
322,
278,
28532,
486,
5450,
4673,
14305,
300,
375,
29889,
13,
13,
29943,
9864,
1582,
20627,
338,
1304,
297,
278,
399,
1997,
29920,
383,
9864,
1582,
830,
3901,
9603,
317,
3466,
349,
11002,
29892,
278,
323,
4524,
383,
9864,
1582,
9705,
264,
1943,
29892,
322,
278,
28532,
486,
5450,
350,
21543,
383,
9864,
1582,
411,
1334,
1351,
2796,
292,
29889,
13,
13,
17779,
9705,
264,
1943,
20627,
13,
13,
2776,
599,
278,
11909,
29892,
445,
2602,
338,
1304,
278,
3203,
29892,
1363,
372,
338,
5189,
304,
6222,
322,
508,
5948,
1320,
441,
278,
304,
572,
457,
29889,
512,
445,
2602,
29892,
278,
2315,
322,
278,
10040,
29915,
29879,
298,
4512,
526,
6496,
304,
883,
263,
478,
304,
278,
2315,
29915,
29879,
10428,
313,
29931,
3714,
29915,
29879,
19941,
467,
7311,
310,
278,
8718,
322,
278,
9210,
29892,
278,
10040,
674,
367,
10029,
297,
4565,
310,
278,
2315,
29892,
322,
29081,
964,
278,
907,
559,
310,
670,
2175,
21464,
29889,
910,
2602,
723,
367,
3721,
278,
1021,
408,
9705,
264,
1943,
20627,
565,
278,
2315,
322,
10040,
892,
304,
4607,
16178,
29889,
1763,
6176,
445,
2602,
29892,
278,
2315,
674,
3275,
278,
10040,
304,
9679,
902,
298,
4512,
3448,
515,
1075,
29892,
470,
540,
1122,
9679,
670,
1914,
298,
4512,
2820,
902,
29892,
8679,
373,
278,
4377,
29889,
910,
2602,
292,
310,
278,
298,
4512,
427,
2388,
465,
267,
1790,
2602,
448,
315,
5336,
383,
9864,
1582,
20627,
29889,
315,
5336,
383,
9864,
1582,
338,
925,
315,
5336,
9705,
264,
1943,
393,
16229,
1250,
1328,
29892,
541,
278,
2602,
292,
310,
278,
17873,
338,
3721,
278,
1021,
29889,
13,
13,
17779,
9705,
264,
1943,
20627,
338,
451,
1304,
297,
278,
399,
1997,
29920,
19941,
806,
3873,
29889,
13,
13,
17779,
383,
9864,
1582,
20627,
338,
1304,
23359,
297,
278,
28532,
486,
5450,
12753,
383,
9864,
1994,
29889,
13,
13,
29903,
420,
7527,
365,
19440,
20627,
13,
13,
4013,
2602,
338,
4257,
1156,
278,
5972,
4377,
393,
3732,
671,
310,
372,
29892,
322,
372,
3508,
29915,
29873,
1476,
472,
599,
297,
278,
8713,
645,
370,
375,
29889,
450,
10040,
29915,
29879,
298,
4512,
526,
451,
8943,
29892,
541,
639,
14081,
16311,
304,
278,
2315,
29915,
29879,
29892,
411,
902,
14870,
278,
2315,
29915,
29879,
2175,
2625,
29889,
2439,
298,
4512,
7845,
373,
278,
2315,
29915,
29879,
1492,
2625,
29892,
297,
278,
907,
559,
310,
670,
1492,
21464,
29889,
1763,
6176,
445,
2602,
29892,
278,
2315,
674,
269,
3466,
670,
298,
4512,
8724,
278,
10040,
29915,
29879,
29892,
1550,
8236,
902,
304,
2507,
304,
902,
1492,
29889,
13,
13,
4013,
2602,
338,
1304,
297,
278,
19491,
7527,
365,
19440,
29892,
322,
278,
10428,
379,
19144,
29889,
13,
13,
29950,
19144,
20627,
13,
13,
4013,
2602,
338,
884,
4257,
1156,
278,
5972,
4377,
393,
3732,
671,
310,
372,
29892,
322,
372,
338,
884,
451,
1476,
297,
278,
8713,
645,
370,
375,
29889,
450,
10040,
29915,
29879,
298,
4512,
526,
1449,
639,
14081,
16311,
304,
278,
2315,
29915,
29879,
29892,
541,
411,
902,
14870,
278,
2315,
29915,
29879,
1492,
2625,
29889,
2439,
298,
4512,
7845,
373,
278,
2315,
29915,
29879,
2175,
2625,
29892,
297,
278,
907,
559,
310,
670,
2175,
21464,
29889,
1763,
6176,
445,
2602,
29892,
278,
2315,
674,
3275,
278,
10040,
304,
670,
2175,
2625,
322,
304,
2507,
304,
902,
2175,
29889,
13,
13,
4013,
2602,
338,
1304,
297,
278,
379,
19144,
29889,
13,
13,
8439,
526,
515,
931,
304,
931,
916,
18677,
11909,
12862,
270,
4564,
414,
674,
671,
29892,
541,
1438,
4832,
526,
278,
5220,
1166,
1338,
29889,
29124,
18499,
963,
508,
3275,
304,
2253,
18096,
3773,
8326,
404,
322,
263,
901,
4972,
292,
3275,
322,
1101,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
The SME space is changing, and emerging leaders are utilising affordable, flexible and scalable big data and analytics tools. SMEs are confident about their ability to innovate, but much less certain about their ability to use big data and advanced analytics to do so...
For businesses large and small, relying on a cloud-based collaboration and productivity suite such as Microsoft Office 365 is becoming the norm. Enhancing productivity in your organisation is vital to get ahead in 2017 - and using Office 365 can help, if it's used right...
FireEye SVP believes healthcare sector in particular is more aware of threats to connected systems
Developed nations are likely to have created and covertly deployed malware in industrial control systems (ICS) used in other countries in case it ever needs to be used in a conflict.
Anthony Kolish, a senior vice president at FireEye, is convinced that this has happened but said that evidence of such actions may never come to light.
“I think the thing that makes this hard to peg is that, once you do it, it’s hard to turn back. So malware may be lurking in infrastructure that can be used in a conflict if it escalates to a point that it needs to be used," he told V3.
“But when you use it, that tips your hand and it’s then out there, so the stakes are very high. It’s a geopolitical issue and you just never know.”
Security experts have often talked of the threat to ICS environments. A major attack on an ICS in Ukraine last year left power stations offline in an incident that many believe was coordinated, or at least backed, by the Russian government.
“There are literally thousands of ICS vulnerabilities and the pace of discovery is increasing all the time. FireEye found one last year that had Stuxnet-like capabilities that was capable of feeding fake user interface information to the people that were monitoring systems to mask what was going on,” he said.
This increase has alerted more industries to the threat posed by industrial system hackers, and the healthcare sector is particularly concerned, according to Kolish.
“It first emerged after the Anthem breach of 2014 and in the last six months we’re seeing more healthcare providers saying they are getting concerned about the potential for medical devices and systems to be hacked," he said.
“With these types of incident we’re not just looking at loss of money or intellectual property but injury or loss of life, so the sense of rush is much higher.” | [
1,
450,
317,
2303,
2913,
338,
6480,
29892,
322,
11176,
3460,
20251,
526,
3667,
5921,
21750,
519,
29892,
25706,
322,
8716,
519,
4802,
848,
322,
16114,
1199,
8492,
29889,
317,
2303,
29879,
526,
24332,
1048,
1009,
11509,
304,
24233,
403,
29892,
541,
1568,
3109,
3058,
1048,
1009,
11509,
304,
671,
4802,
848,
322,
12862,
16114,
1199,
304,
437,
577,
856,
13,
13,
2831,
5381,
267,
2919,
322,
2319,
29892,
337,
5890,
373,
263,
9570,
29899,
6707,
24771,
322,
3234,
2068,
9460,
1316,
408,
7783,
11367,
29871,
29941,
29953,
29945,
338,
14171,
278,
6056,
29889,
1174,
5403,
3277,
3234,
2068,
297,
596,
24788,
338,
27131,
304,
679,
14432,
297,
29871,
29906,
29900,
29896,
29955,
448,
322,
773,
11367,
29871,
29941,
29953,
29945,
508,
1371,
29892,
565,
372,
29915,
29879,
1304,
1492,
856,
13,
13,
18654,
29923,
4099,
13955,
29925,
1339,
17180,
9045,
18020,
17535,
297,
3153,
338,
901,
9543,
310,
12455,
1446,
304,
6631,
6757,
13,
13,
21956,
287,
19079,
526,
5517,
304,
505,
2825,
322,
4612,
29873,
368,
21168,
4439,
2519,
297,
18408,
2761,
6757,
313,
2965,
29903,
29897,
1304,
297,
916,
10916,
297,
1206,
372,
3926,
4225,
304,
367,
1304,
297,
263,
14529,
29889,
13,
13,
2744,
386,
2592,
10451,
728,
29892,
263,
16336,
11289,
6673,
472,
6438,
29923,
4099,
29892,
338,
25617,
393,
445,
756,
9559,
541,
1497,
393,
10757,
310,
1316,
8820,
1122,
2360,
2041,
304,
3578,
29889,
13,
13,
30015,
29902,
1348,
278,
2655,
393,
3732,
445,
2898,
304,
282,
387,
338,
393,
29892,
2748,
366,
437,
372,
29892,
372,
30010,
29879,
2898,
304,
2507,
1250,
29889,
1105,
4439,
2519,
1122,
367,
301,
332,
9292,
297,
22035,
12425,
393,
508,
367,
1304,
297,
263,
14529,
565,
372,
831,
1052,
1078,
304,
263,
1298,
393,
372,
4225,
304,
367,
1304,
1699,
540,
5429,
478,
29941,
29889,
13,
13,
30015,
6246,
746,
366,
671,
372,
29892,
393,
25562,
596,
1361,
322,
372,
30010,
29879,
769,
714,
727,
29892,
577,
278,
380,
6926,
526,
1407,
1880,
29889,
739,
30010,
29879,
263,
1737,
13242,
277,
936,
2228,
322,
366,
925,
2360,
1073,
3178,
13,
13,
13228,
2902,
1372,
505,
4049,
24867,
310,
278,
28469,
304,
306,
9295,
23136,
29889,
319,
4655,
5337,
373,
385,
306,
9295,
297,
23961,
1833,
1629,
2175,
3081,
16355,
1283,
1220,
297,
385,
15134,
393,
1784,
4658,
471,
6615,
630,
29892,
470,
472,
3203,
1250,
287,
29892,
491,
278,
10637,
5874,
29889,
13,
13,
30015,
8439,
526,
22830,
17202,
310,
306,
9295,
23180,
11614,
322,
278,
27725,
310,
20699,
338,
10231,
599,
278,
931,
29889,
6438,
29923,
4099,
1476,
697,
1833,
1629,
393,
750,
624,
1314,
1212,
29899,
4561,
27108,
393,
471,
15390,
310,
8343,
292,
25713,
1404,
5067,
2472,
304,
278,
2305,
393,
892,
29652,
6757,
304,
11105,
825,
471,
2675,
373,
3995,
540,
1497,
29889,
13,
13,
4013,
7910,
756,
6655,
287,
901,
6397,
2722,
304,
278,
28469,
926,
287,
491,
18408,
1788,
15833,
414,
29892,
322,
278,
9045,
18020,
17535,
338,
10734,
15041,
29892,
5034,
304,
10451,
728,
29889,
13,
13,
30015,
3112,
937,
11176,
3192,
1156,
278,
10926,
331,
2078,
496,
310,
29871,
29906,
29900,
29896,
29946,
322,
297,
278,
1833,
4832,
7378,
591,
30010,
276,
8790,
901,
9045,
18020,
1326,
11376,
5934,
896,
526,
2805,
15041,
1048,
278,
7037,
363,
16083,
9224,
322,
6757,
304,
367,
15833,
287,
1699,
540,
1497,
29889,
13,
13,
30015,
3047,
1438,
4072,
310,
15134,
591,
30010,
276,
451,
925,
3063,
472,
6410,
310,
6909,
470,
29762,
2875,
541,
24092,
470,
6410,
310,
2834,
29892,
577,
278,
4060,
310,
364,
1878,
338,
1568,
6133,
3178
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Ultra-deep next generation mitochondrial genome sequencing reveals widespread heteroplasmy in Chinese hamster ovary cells.
Recent sequencing of the Chinese hamster ovary (CHO) cell and Chinese hamster genomes has dramatically advanced our ability to understand the biology of these mammalian cell factories. In this study, we focus on the powerhouse of the CHO cell, the mitochondrion. Utilizing a high-resolution next generation sequencing approach we sequenced the Chinese hamster mitochondrial genome for the first time and surveyed the mutational landscape of CHO cell mitochondrial DNA (mtDNA). Depths of coverage ranging from ~3,319X to 8,056X enabled accurate identification of low frequency mutations (>1%), revealing that mtDNA heteroplasmy is widespread in CHO cells. A total of 197 variants at 130 individual nucleotide positions were identified across a panel of 22 cell lines with 81% of variants occurring at an allele frequency of between 1% and 99%. 89% of the heteroplasmic mutations identified were cell line specific with the majority of shared heteroplasmic SNPs and INDELs detected in clones from 2 cell line development projects originating from the same host cell line. The frequency of common predicted loss of function mutations varied significantly amongst the clones indicating that heteroplasmic mtDNA variation could lead to a continuous range of phenotypes and play a role in cell to cell, production run to production run and indeed clone to clone variation in CHO cell metabolism. Experiments that integrate mtDNA sequencing with metabolic flux analysis and metabolomics have the potential to improve cell line selection and enhance CHO cell metabolic phenotypes for biopharmaceutical manufacturing through rational mitochondrial genome engineering. | [
1,
18514,
336,
29899,
24535,
2446,
12623,
1380,
2878,
898,
9315,
2531,
608,
8617,
16750,
10320,
1338,
281,
2247,
29886,
949,
25745,
459,
3333,
1357,
297,
10013,
16366,
2475,
15397,
653,
9101,
29889,
13,
4789,
296,
8617,
16750,
310,
278,
10013,
16366,
2475,
15397,
653,
313,
3210,
29949,
29897,
3038,
322,
10013,
16366,
2475,
20853,
267,
756,
8541,
19574,
12862,
1749,
11509,
304,
2274,
278,
4768,
3002,
310,
1438,
286,
4850,
284,
713,
3038,
2114,
3842,
29889,
512,
445,
6559,
29892,
591,
8569,
373,
278,
3081,
8697,
310,
278,
5868,
29949,
3038,
29892,
278,
1380,
2878,
898,
29878,
291,
29889,
22310,
5281,
263,
1880,
29899,
9778,
918,
2446,
12623,
8617,
16750,
2948,
591,
8617,
9223,
278,
10013,
16366,
2475,
1380,
2878,
898,
9315,
2531,
608,
363,
278,
937,
931,
322,
18994,
287,
278,
5478,
1288,
24400,
310,
5868,
29949,
3038,
1380,
2878,
898,
9315,
25348,
313,
4378,
29928,
3521,
467,
10034,
386,
29879,
310,
23746,
364,
9776,
515,
3695,
29941,
29892,
29941,
29896,
29929,
29990,
304,
29871,
29947,
29892,
29900,
29945,
29953,
29990,
9615,
16232,
29769,
310,
4482,
10868,
5478,
800,
313,
29958,
29896,
29995,
511,
10320,
12818,
393,
286,
29873,
29928,
3521,
25745,
459,
3333,
1357,
338,
281,
2247,
29886,
949,
297,
5868,
29949,
9101,
29889,
319,
3001,
310,
29871,
29896,
29929,
29955,
29161,
472,
29871,
29896,
29941,
29900,
5375,
22699,
327,
680,
11909,
892,
15659,
4822,
263,
9451,
310,
29871,
29906,
29906,
3038,
3454,
411,
29871,
29947,
29896,
29995,
310,
29161,
13920,
292,
472,
385,
4788,
280,
10868,
310,
1546,
29871,
29896,
29995,
322,
29871,
29929,
29929,
15543,
29871,
29947,
29929,
29995,
310,
278,
25745,
459,
3333,
13076,
5478,
800,
15659,
892,
3038,
1196,
2702,
411,
278,
13638,
310,
7258,
25745,
459,
3333,
13076,
21989,
29925,
29879,
322,
2672,
2287,
29931,
29879,
17809,
297,
1067,
2873,
515,
29871,
29906,
3038,
1196,
5849,
9279,
3978,
1218,
515,
278,
1021,
3495,
3038,
1196,
29889,
450,
10868,
310,
3619,
25383,
6410,
310,
740,
5478,
800,
23821,
16951,
22611,
278,
1067,
2873,
23941,
393,
25745,
459,
3333,
13076,
286,
29873,
29928,
3521,
19262,
1033,
3275,
304,
263,
9126,
3464,
310,
17292,
327,
7384,
322,
1708,
263,
6297,
297,
3038,
304,
3038,
29892,
5802,
1065,
304,
5802,
1065,
322,
6200,
17432,
304,
17432,
19262,
297,
5868,
29949,
3038,
1539,
19388,
1608,
29889,
28224,
7862,
393,
22782,
286,
29873,
29928,
3521,
8617,
16750,
411,
1539,
19388,
293,
19389,
7418,
322,
1539,
19388,
290,
1199,
505,
278,
7037,
304,
11157,
3038,
1196,
9262,
322,
26371,
749,
5868,
29949,
3038,
1539,
19388,
293,
17292,
327,
7384,
363,
4768,
3021,
22824,
346,
329,
936,
12012,
3864,
1549,
17903,
1380,
2878,
898,
9315,
2531,
608,
21639,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Celebrity skin, celebrity makeup and 'breakthrough beauty secrets' are very popular topics in America today, and yet most people don’t realize that the ‘Top Anti-Aging Products’ are both very effective and very affordable to anyone!
How To Get Perfect Skin Without Breaking The Bank – FREE TRIAL OFFER!
If you’re like many of us, you’re probably wondering how to get perfect skin. Beautiful skin speaks of good and vitality, and taking excellent care of it will help to keep you healthy and looking great.
If you want to know how to get perfect skin, there are some things that you should be doing, and definitely things that you shouldn’t be doing. The first thing that you need to do to have perfect skin is to learn about the way your skin behaves. Perfect skin is well cared for skin. It is nourished and hydrated, and it is clean – but not so clean it loses its essential nutrients. It is radiant and balanced.
A few are lucky enough to be born with naturally great skin (The Top 5 Celebrities With The Best Celeb Skin), but most women struggle with it. They might have a blotchy skin tone, large pores, oily patches, or wrinkles and age spots. These are all signs of aging, but they can begin to appear as young as your twenties.
How To Get Perfect Skin – Follow These Perfect Skin Basics At Any Age
When you’re figuring out how to get perfect skin, there are a few basics that you should follow no matter how young or old you are. In fact, it’s a good idea to start taking excellent care of your skin at an early age, so you can offset potential problems later on.
Start with a gentle cleanser, but not necessarily twice a day. Before you use any type of product, you need to make sure you start with a fresh, clean canvas. However, many cleansers use heavy duty detergents and that can dry and irritate your skin. Even if you have oily skin, you should gently cleanse it. Choose the right cleanser for your skin, but work with natural ingredients instead of harsh abrasives.
Then, consider cleansing only once a day. When your skin gets too dry it will overproduce oil, which can clog the pores. Instead, if you cleanse well at night, and haven’t done anything in the morning, simply splash with cool water to start your day.
Gently exfoliate at least twice a week – but not too often. Exfoliation gets mixed reviews, but many experts agree that a gentle exfoliator helps to shed dead skin cells and clear the pores. Your face will shed dead skin cells every day. If you’re not getting them off of your new skin, they break down and wind up in your pores. That’s how we wind up with blackheads and large pores.
A gentle exfoliator can help to keep your pores small, your skin clean and fresh and your complexion clear and radiant. In fact, gently exfoliating around fine lines can help to stimulate collagen production and reduce the look of some of those beginning signs of aging.
Moisturize your skin. Even if you have oily skin on your face, you still need to add a moisturizer to your daily routine. You can choose the right kind for your skin type, and not all face lotions are heavy. Some lightweight moisturizers offer excellent benefits, but others might prefer a heavier type of cream. If you’re paying attention to your skin and how your face feels, you will likely be able to tell which moisturizer is the best choice for you.
Take note of whether your skin feels tight, and if you notice irritation, redness or flakiness. These can be signs of sensitivity or not enough moisture.
Start early with the sunscreen and use it liberally. There is some debate about sunscreens, using them and their safety, but when it comes to how to get perfect skin sunscreen is the best way to prevent signs of premature aging such as fine lines, wrinkles and dark spots – also called hyperpigmentation.
You should use sunscreen every single day, and if you’re going to be out for extended periods of time, will be perspiring or will be in the water, be sure to reapply periodically.
How To Get Perfect Skin – Use The Right Skin Care Products
Once you know how to get perfect skin through the basics, it’s time to start incorporating some highly effective products that target your problems and prevent future ones from popping up. Look for products that contain special ingredients to help with your specific needs.
Antioxidants – Sun exposure, the elements, pollutants and the way we eat and drink all release toxins, called free radicals, onto our skin and into our bodies. These free radicals wreak havoc on our systems because they damage our cells on the molecular level. This means that the molecules of the skin cells that keep us looking young and healthy are being broken down by free radicals.
The most powerful antioxidants are Vitamin E and Vitamin C. These two vitamins work to neutralize free radicals so they can no longer damage the skin.
Healthy moisture – Your skin needs to have healthy moisture, so no matter what type of product you use, it needs to add moisture.
Consider getting a RISK-FREE TRIAL of our #1 Recommended Celebrity Skin Care Product – Wrinkle Rewind – to help kick start your efforts in turning back the hands of time. Called a “Hollywood Beauty Secret” by those who have tried it, this product sinks deep beneath the skin’s layers to deliver the potent anti-aging results you need and want.
While you’re at it, add Oxy Genius to your skincare routine to boost the natural vitality of your skin and reduce the appearance of fine lines and wrinkles. Both of these products have the nutrients that you need to boost your ‘cellular turnover’ and naturally increase your body’s Collagen production to reduce wrinkles and fine lines and help your skin look younger and smoother.
It’s never too late to learn how to get perfect skin, and you can start making beautiful skin changes today. Look younger, feel better about yourself and enjoy all the compliments that you’ll get! | [
1,
315,
6146,
1182,
537,
19309,
29892,
10894,
537,
1207,
786,
322,
525,
8690,
20678,
15409,
22183,
1372,
29915,
526,
1407,
5972,
23820,
297,
6813,
9826,
29892,
322,
3447,
1556,
2305,
1016,
30010,
29873,
16289,
393,
278,
5129,
7031,
18473,
29899,
29909,
3460,
10969,
29879,
30010,
526,
1716,
1407,
11828,
322,
1407,
21750,
519,
304,
5019,
29991,
13,
13,
5328,
1763,
3617,
2431,
3647,
4971,
262,
13932,
5826,
5086,
450,
10253,
785,
383,
21661,
323,
3960,
1964,
438,
28483,
29991,
13,
13,
3644,
366,
30010,
276,
763,
1784,
310,
502,
29892,
366,
30010,
276,
3117,
9873,
920,
304,
679,
4922,
19309,
29889,
25685,
19309,
7726,
29879,
310,
1781,
322,
27131,
537,
29892,
322,
5622,
15129,
2562,
310,
372,
674,
1371,
304,
3013,
366,
9045,
29891,
322,
3063,
2107,
29889,
13,
13,
3644,
366,
864,
304,
1073,
920,
304,
679,
4922,
19309,
29892,
727,
526,
777,
2712,
393,
366,
881,
367,
2599,
29892,
322,
11630,
2712,
393,
366,
9273,
30010,
29873,
367,
2599,
29889,
450,
937,
2655,
393,
366,
817,
304,
437,
304,
505,
4922,
19309,
338,
304,
5110,
1048,
278,
982,
596,
19309,
4010,
267,
29889,
2431,
3647,
19309,
338,
1532,
274,
1965,
363,
19309,
29889,
739,
338,
302,
473,
3276,
322,
27246,
29878,
630,
29892,
322,
372,
338,
5941,
785,
541,
451,
577,
5941,
372,
1232,
267,
967,
18853,
18254,
374,
1237,
29889,
739,
338,
17937,
424,
322,
6411,
8362,
29889,
13,
13,
29909,
2846,
526,
9885,
29891,
3307,
304,
367,
6345,
411,
18180,
2107,
19309,
313,
1576,
7488,
29871,
29945,
315,
6146,
26549,
583,
2973,
450,
6407,
315,
6146,
29890,
4971,
262,
511,
541,
1556,
5866,
21117,
411,
372,
29889,
2688,
1795,
505,
263,
1999,
327,
23766,
19309,
16225,
29892,
2919,
1277,
267,
29892,
288,
2354,
13261,
267,
29892,
470,
2358,
682,
793,
322,
5046,
805,
1862,
29889,
4525,
526,
599,
18906,
310,
946,
292,
29892,
541,
896,
508,
3380,
304,
2615,
408,
4123,
408,
596,
3252,
296,
583,
29889,
13,
13,
5328,
1763,
3617,
2431,
3647,
4971,
262,
785,
10306,
4525,
2431,
3647,
4971,
262,
4886,
1199,
2180,
3139,
16767,
13,
13,
10401,
366,
30010,
276,
2537,
3864,
714,
920,
304,
679,
4922,
19309,
29892,
727,
526,
263,
2846,
2362,
1199,
393,
366,
881,
1101,
694,
4383,
920,
4123,
470,
2030,
366,
526,
29889,
512,
2114,
29892,
372,
30010,
29879,
263,
1781,
2969,
304,
1369,
5622,
15129,
2562,
310,
596,
19309,
472,
385,
4688,
5046,
29892,
577,
366,
508,
9210,
7037,
4828,
2678,
373,
29889,
13,
13,
4763,
411,
263,
9914,
4531,
550,
261,
29892,
541,
451,
12695,
8951,
263,
2462,
29889,
10949,
366,
671,
738,
1134,
310,
3234,
29892,
366,
817,
304,
1207,
1854,
366,
1369,
411,
263,
10849,
29892,
5941,
10508,
29889,
2398,
29892,
1784,
4531,
550,
414,
671,
9416,
13360,
270,
1308,
29887,
1237,
322,
393,
508,
15589,
322,
3805,
768,
403,
596,
19309,
29889,
7753,
565,
366,
505,
288,
2354,
19309,
29892,
366,
881,
330,
2705,
5941,
344,
372,
29889,
14542,
852,
278,
1492,
4531,
550,
261,
363,
596,
19309,
29892,
541,
664,
411,
5613,
2348,
1127,
10070,
2012,
310,
4023,
845,
633,
3417,
3145,
29889,
13,
13,
11760,
29892,
2050,
4531,
550,
292,
871,
2748,
263,
2462,
29889,
1932,
596,
19309,
4947,
2086,
15589,
372,
674,
975,
5498,
346,
17182,
29892,
607,
508,
274,
1188,
278,
1277,
267,
29889,
8669,
29892,
565,
366,
5941,
344,
1532,
472,
4646,
29892,
322,
7359,
30010,
29873,
2309,
3099,
297,
278,
7250,
29892,
3763,
8536,
1161,
411,
12528,
4094,
304,
1369,
596,
2462,
29889,
13,
13,
29954,
2705,
429,
4542,
29347,
472,
3203,
8951,
263,
4723,
785,
541,
451,
2086,
4049,
29889,
1222,
4542,
11685,
4947,
12849,
21804,
29892,
541,
1784,
2902,
1372,
8661,
393,
263,
9914,
429,
4542,
29875,
1061,
6911,
304,
28453,
7123,
19309,
9101,
322,
2821,
278,
1277,
267,
29889,
3575,
3700,
674,
28453,
7123,
19309,
9101,
1432,
2462,
29889,
960,
366,
30010,
276,
451,
2805,
963,
1283,
310,
596,
716,
19309,
29892,
896,
2867,
1623,
322,
8805,
701,
297,
596,
1277,
267,
29889,
2193,
30010,
29879,
920,
591,
8805,
701,
411,
4628,
2813,
29879,
322,
2919,
1277,
267,
29889,
13,
13,
29909,
9914,
429,
4542,
29875,
1061,
508,
1371,
304,
3013,
596,
1277,
267,
2319,
29892,
596,
19309,
5941,
322,
10849,
322,
596,
4280,
291,
2821,
322,
17937,
424,
29889,
512,
2114,
29892,
330,
2705,
429,
4542,
29875,
1218,
2820,
2691,
3454,
508,
1371,
304,
20436,
5987,
784,
11541,
5802,
322,
10032,
278,
1106,
310,
777,
310,
1906,
6763,
18906,
310,
946,
292,
29889,
13,
13,
22638,
391,
332,
675,
596,
19309,
29889,
7753,
565,
366,
505,
288,
2354,
19309,
373,
596,
3700,
29892,
366,
1603,
817,
304,
788,
263,
2730,
391,
332,
3950,
304,
596,
14218,
26529,
29889,
887,
508,
6755,
278,
1492,
2924,
363,
596,
19309,
1134,
29892,
322,
451,
599,
3700,
3287,
1080,
526,
9416,
29889,
3834,
3578,
7915,
2730,
391,
332,
19427,
5957,
15129,
23633,
29892,
541,
4045,
1795,
5821,
263,
14200,
631,
1134,
310,
907,
314,
29889,
960,
366,
30010,
276,
5146,
292,
8570,
304,
596,
19309,
322,
920,
596,
3700,
23880,
29892,
366,
674,
5517,
367,
2221,
304,
2649,
607,
2730,
391,
332,
3950,
338,
278,
1900,
7348,
363,
366,
29889,
13,
13,
26772,
4443,
310,
3692,
596,
19309,
23880,
19932,
29892,
322,
565,
366,
8369,
3805,
768,
362,
29892,
2654,
2264,
470,
17422,
29895,
3335,
29889,
4525,
508,
367,
18906,
310,
4771,
24858,
470,
451,
3307,
2730,
391,
545,
29889,
13,
13,
4763,
4688,
411,
278,
6575,
10525,
322,
671,
372,
7866,
635,
29889,
1670,
338,
777,
27836,
1048,
6575,
29879,
24546,
29892,
773,
963,
322,
1009,
15332,
29892,
541,
746,
372,
5304,
304,
920,
304,
679,
4922,
19309,
6575,
10525,
338,
278,
1900,
982,
304,
5557,
18906,
310,
5188,
1535,
946,
292,
1316,
408,
2691,
3454,
29892,
2358,
682,
793,
322,
6501,
805,
1862,
785,
884,
2000,
11266,
29886,
335,
358,
362,
29889,
13,
13,
3492,
881,
671,
6575,
10525,
1432,
2323,
2462,
29892,
322,
565,
366,
30010,
276,
2675,
304,
367,
714,
363,
10410,
23704,
310,
931,
29892,
674,
367,
3736,
29886,
8491,
470,
674,
367,
297,
278,
4094,
29892,
367,
1854,
304,
337,
7302,
3785,
1711,
29889,
13,
13,
5328,
1763,
3617,
2431,
3647,
4971,
262,
785,
4803,
450,
10428,
4971,
262,
10057,
10969,
29879,
13,
13,
26222,
366,
1073,
920,
304,
679,
4922,
19309,
1549,
278,
2362,
1199,
29892,
372,
30010,
29879,
931,
304,
1369,
11039,
1218,
777,
10712,
11828,
9316,
393,
3646,
596,
4828,
322,
5557,
5434,
6743,
515,
772,
3262,
701,
29889,
7419,
363,
9316,
393,
1712,
4266,
2348,
1127,
10070,
304,
1371,
411,
596,
2702,
4225,
29889,
13,
13,
13448,
601,
29916,
333,
1934,
785,
8991,
14060,
545,
29892,
278,
3161,
29892,
21180,
329,
1934,
322,
278,
982,
591,
17545,
322,
13748,
599,
6507,
304,
29916,
1144,
29892,
2000,
3889,
24818,
29879,
29892,
11480,
1749,
19309,
322,
964,
1749,
17873,
29889,
4525,
3889,
24818,
29879,
281,
276,
557,
20771,
542,
373,
1749,
6757,
1363,
896,
18658,
1749,
9101,
373,
278,
13206,
16637,
3233,
29889,
910,
2794,
393,
278,
13206,
21337,
310,
278,
19309,
9101,
393,
3013,
502,
3063,
4123,
322,
9045,
29891,
526,
1641,
9391,
1623,
491,
3889,
24818,
29879,
29889,
13,
13,
1576,
1556,
13988,
3677,
601,
29916,
333,
1934,
526,
22491,
9103,
382,
322,
22491,
9103,
315,
29889,
4525,
1023,
13901,
314,
1144,
664,
304,
21104,
675,
3889,
24818,
29879,
577,
896,
508,
694,
5520,
18658,
278,
19309,
29889,
13,
13,
3868,
4298,
29891,
2730,
391,
545,
785,
3575,
19309,
4225,
304,
505,
9045,
29891,
2730,
391,
545,
29892,
577,
694,
4383,
825,
1134,
310,
3234,
366,
671,
29892,
372,
4225,
304,
788,
2730,
391,
545,
29889,
13,
13,
13696,
1241,
2805,
263,
390,
3235,
29968,
29899,
29943,
21661,
323,
3960,
1964,
310,
1749,
396,
29896,
830,
2055,
2760,
315,
6146,
1182,
537,
4971,
262,
10057,
10969,
785,
399,
29878,
682,
280,
390,
809,
513,
785,
304,
1371,
24817,
1369,
596,
14231,
297,
14712,
1250,
278,
6567,
310,
931,
29889,
3037,
839,
263,
1346,
19984,
16239,
19618,
29891,
10213,
30024,
491,
1906,
1058,
505,
1898,
372,
29892,
445,
3234,
269,
19363,
6483,
19540,
278,
19309,
30010,
29879,
15359,
304,
12021,
278,
3104,
296,
9418,
29899,
6751,
2582,
366,
817,
322,
864,
29889,
13,
13,
8809,
488,
366,
30010,
276,
472,
372,
29892,
788,
438,
3594,
5739,
2482,
304,
596,
2071,
3742,
598,
26529,
304,
14505,
278,
5613,
27131,
537,
310,
596,
19309,
322,
10032,
278,
10097,
310,
2691,
3454,
322,
2358,
682,
793,
29889,
9134,
310,
1438,
9316,
505,
278,
18254,
374,
1237,
393,
366,
817,
304,
14505,
596,
5129,
3729,
1070,
2507,
957,
30010,
322,
18180,
7910,
596,
3573,
30010,
29879,
1530,
11541,
5802,
304,
10032,
2358,
682,
793,
322,
2691,
3454,
322,
1371,
596,
19309,
1106,
20023,
322,
1560,
29877,
1228,
29889,
13,
13,
3112,
30010,
29879,
2360,
2086,
5683,
304,
5110,
920,
304,
679,
4922,
19309,
29892,
322,
366,
508,
1369,
3907,
9560,
19309,
3620,
9826,
29889,
7419,
20023,
29892,
4459,
2253,
1048,
7535,
322,
13389,
599,
278,
13162,
7862,
393,
366,
30010,
645,
679,
29991
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
I would love to run a Deep Q-Learning algorithm or some type of Multi Agent Reinforcement Learning algorithm. I tried a deep q-learning approach locally, but it looks like my laptop will take months before I can even see any sort of results .
I'm trying to apply policy gradient approach from various reinforcement learning papers. My naive 3 layer neural network is currently on my laptop and can only run once a day (training over-night). Would greatly appreciate a voucher to speeding things up on GCP using their GPUs
Just found Halite, but figured I would respond while these are still available. I'd like to look at TD/q-learning and policy gradient on top of hand-engineered actions/strategies. I'd also like to try using imitation learning for initial policies.
The voucher would be really helpful for the deep RL and inverse RL strategies I'm trying to implement based on various publications I've been looking at. It seems like any agents I try to train locally will not produce any results within a reasonable amount of time. Thanks!
I want to create better navigation to make the ships move better in fleet formations and tactical combat. I see many bots moving out in little waves and feel this should be more like a dog-fight than it currently is.
A large part of the strategy is navigation and predicting opponents moves which will be computationally expensive. Google credits will help me with that.
Edit: An update to my strategy: I want to take in a wider amount of models and be able to train them. Training rounds are being bogged down by memory restrictions on my home machine. We can worry about dogfights later...
I want to use a reinforcement learning algorithm, much like the Atari Deep Q learning algorithm, but using game specific knowledge to make high level decisions. To do this, I can start by looking at replays. But the important aspect will be training by playing my bot against older versions of itself.
Running this in the cloud will allow me to really parallelize this game playing, making the training time more reasonable.
I would like to use the voucher to better implement my machine learning algorithms to enhance my current bot and keep them running on the GPU. It's also a great learning experience for me (relatively new in ML/DL).
If they are still available, I would like to have a voucher to do some long term ML training. My dataset is getting quite huge, and my laptop's CPU is good enough for the actual playing, but for training, it's not cutting it anymore, and I would like to train it on some faster CPU (or GPU if available).
If anyone is interested, I'm using a variation on DQN and the Starcraft II shared knowledge/multi agent scaling whitepaper. Essentially, there is a ConvNet that represents some kind of general strategy/decision maker, and a NN that takes the ConvNet's output, and a ship's current state, and output a specific action for this ship. The goal is for the ConvNet and the NN to learn to talk to each other, so that effectively, there is a general higher-level strategy (the ConvNet), and a lower level/micromanagement with the Neural Network. There will be some shared experience with all of the ship's results/output feeding back into the ConvNet's thus hopeuflly accelerating the learning of the ConvNet talking to the NN, but so far, it has not been very successful. It has learned to (mostly) avoid other ship, but it has not learned about docking yet, and spends most of its time doing nothing.
My bottlenecks right now is time (Fulltime job + kids + laptop's CPU), and with the voucher, I feel that it would fix the CPU part of it : Faster CPU means generating data faster, and faster (hopefully way faster) training.
I have been doing a lot of reading about RL agents that use deep learning, but I haven't yet had the time/application/resources in combination to work on actually building a bot using anything beyond simple Q learning with hand-coded features. I hope to change that this holiday break with Halite and (hopefully) credits on GCE.
I would like to use RL and evolutionary strategies in selecting targets/planets and in choosing the appropriate amount of ships to use in capturing a planet. Having a large number of processors to run the various options would be very helpful. | [
1,
306,
723,
5360,
304,
1065,
263,
21784,
660,
29899,
29931,
799,
1076,
5687,
470,
777,
1134,
310,
14974,
28330,
18334,
1454,
13561,
29257,
5687,
29889,
306,
1898,
263,
6483,
3855,
29899,
21891,
2948,
12430,
29892,
541,
372,
3430,
763,
590,
19022,
674,
2125,
7378,
1434,
306,
508,
1584,
1074,
738,
2656,
310,
2582,
869,
13,
13,
29902,
29915,
29885,
1811,
304,
3394,
8898,
16030,
2948,
515,
5164,
15561,
1454,
13561,
6509,
15055,
29889,
1619,
1055,
573,
29871,
29941,
7546,
19677,
3564,
338,
5279,
373,
590,
19022,
322,
508,
871,
1065,
2748,
263,
2462,
313,
26495,
975,
29899,
11147,
467,
10878,
11180,
11188,
263,
325,
3222,
261,
304,
6210,
292,
2712,
701,
373,
402,
6271,
773,
1009,
22796,
29879,
13,
13,
14084,
1476,
8142,
568,
29892,
541,
14788,
306,
723,
10049,
1550,
1438,
526,
1603,
3625,
29889,
306,
29915,
29881,
763,
304,
1106,
472,
323,
29928,
29914,
29939,
29899,
21891,
322,
8898,
16030,
373,
2246,
310,
1361,
29899,
10599,
14561,
8820,
29914,
710,
1845,
583,
29889,
306,
29915,
29881,
884,
763,
304,
1018,
773,
527,
7018,
6509,
363,
2847,
24833,
29889,
13,
13,
1576,
325,
3222,
261,
723,
367,
2289,
8444,
363,
278,
6483,
390,
29931,
322,
16402,
390,
29931,
16650,
583,
306,
29915,
29885,
1811,
304,
2334,
2729,
373,
5164,
25964,
306,
29915,
345,
1063,
3063,
472,
29889,
739,
2444,
763,
738,
19518,
306,
1018,
304,
7945,
12430,
674,
451,
7738,
738,
2582,
2629,
263,
15590,
5253,
310,
931,
29889,
1834,
29991,
13,
13,
29902,
864,
304,
1653,
2253,
11322,
304,
1207,
278,
13968,
4337,
2253,
297,
22338,
883,
800,
322,
28476,
936,
15499,
29889,
306,
1074,
1784,
289,
1862,
8401,
714,
297,
2217,
20037,
322,
4459,
445,
881,
367,
901,
763,
263,
11203,
29899,
29888,
523,
1135,
372,
5279,
338,
29889,
13,
13,
29909,
2919,
760,
310,
278,
13705,
338,
11322,
322,
8500,
292,
23995,
1237,
16229,
607,
674,
367,
16287,
635,
19390,
29889,
5087,
6625,
1169,
674,
1371,
592,
411,
393,
29889,
13,
13,
6103,
29901,
530,
2767,
304,
590,
13705,
29901,
306,
864,
304,
2125,
297,
263,
25734,
5253,
310,
4733,
322,
367,
2221,
304,
7945,
963,
29889,
26101,
364,
3885,
526,
1641,
26652,
3192,
1623,
491,
3370,
25091,
373,
590,
3271,
4933,
29889,
1334,
508,
15982,
1048,
11203,
29888,
5861,
2678,
856,
13,
13,
29902,
864,
304,
671,
263,
15561,
1454,
13561,
6509,
5687,
29892,
1568,
763,
278,
2180,
1306,
21784,
660,
6509,
5687,
29892,
541,
773,
3748,
2702,
7134,
304,
1207,
1880,
3233,
1602,
12112,
29889,
1763,
437,
445,
29892,
306,
508,
1369,
491,
3063,
472,
337,
12922,
29889,
1205,
278,
4100,
9565,
674,
367,
6694,
491,
8743,
590,
9225,
2750,
9642,
6910,
310,
3528,
29889,
13,
13,
27795,
445,
297,
278,
9570,
674,
2758,
592,
304,
2289,
8943,
675,
445,
3748,
8743,
29892,
3907,
278,
6694,
931,
901,
15590,
29889,
13,
13,
29902,
723,
763,
304,
671,
278,
325,
3222,
261,
304,
2253,
2334,
590,
4933,
6509,
14009,
304,
26371,
749,
590,
1857,
9225,
322,
3013,
963,
2734,
373,
278,
22796,
29889,
739,
29915,
29879,
884,
263,
2107,
6509,
7271,
363,
592,
313,
2674,
6703,
716,
297,
23158,
29914,
19558,
467,
13,
13,
3644,
896,
526,
1603,
3625,
29892,
306,
723,
763,
304,
505,
263,
325,
3222,
261,
304,
437,
777,
1472,
1840,
23158,
6694,
29889,
1619,
8783,
338,
2805,
3755,
12176,
29892,
322,
590,
19022,
29915,
29879,
10808,
338,
1781,
3307,
363,
278,
3935,
8743,
29892,
541,
363,
6694,
29892,
372,
29915,
29879,
451,
28967,
372,
15128,
29892,
322,
306,
723,
763,
304,
7945,
372,
373,
777,
8473,
10808,
313,
272,
22796,
565,
3625,
467,
13,
13,
3644,
5019,
338,
8852,
29892,
306,
29915,
29885,
773,
263,
19262,
373,
360,
29984,
29940,
322,
278,
624,
5666,
4154,
1944,
7258,
7134,
29914,
9910,
10823,
21640,
4796,
19773,
29889,
11044,
9247,
29892,
727,
338,
263,
1281,
29894,
6779,
393,
11524,
777,
2924,
310,
2498,
13705,
29914,
7099,
2459,
2136,
261,
29892,
322,
263,
405,
29940,
393,
4893,
278,
1281,
29894,
6779,
29915,
29879,
1962,
29892,
322,
263,
7751,
29915,
29879,
1857,
2106,
29892,
322,
1962,
263,
2702,
3158,
363,
445,
7751,
29889,
450,
7306,
338,
363,
278,
1281,
29894,
6779,
322,
278,
405,
29940,
304,
5110,
304,
5193,
304,
1269,
916,
29892,
577,
393,
17583,
29892,
727,
338,
263,
2498,
6133,
29899,
5563,
13705,
313,
1552,
1281,
29894,
6779,
511,
322,
263,
5224,
3233,
29914,
13076,
456,
273,
5049,
411,
278,
2448,
3631,
8527,
29889,
1670,
674,
367,
777,
7258,
7271,
411,
599,
310,
278,
7751,
29915,
29879,
2582,
29914,
4905,
8343,
292,
1250,
964,
278,
1281,
29894,
6779,
29915,
29879,
4550,
4966,
1137,
29880,
368,
15592,
1218,
278,
6509,
310,
278,
1281,
29894,
6779,
9963,
304,
278,
405,
29940,
29892,
541,
577,
2215,
29892,
372,
756,
451,
1063,
1407,
9150,
29889,
739,
756,
10972,
304,
313,
3242,
368,
29897,
4772,
916,
7751,
29892,
541,
372,
756,
451,
10972,
1048,
23630,
292,
3447,
29892,
322,
805,
1975,
1556,
310,
967,
931,
2599,
3078,
29889,
13,
13,
3421,
18046,
29880,
1600,
4684,
1492,
1286,
338,
931,
313,
13658,
2230,
4982,
718,
413,
4841,
718,
19022,
29915,
29879,
10808,
511,
322,
411,
278,
325,
3222,
261,
29892,
306,
4459,
393,
372,
723,
2329,
278,
10808,
760,
310,
372,
584,
383,
1901,
10808,
2794,
14655,
848,
8473,
29892,
322,
8473,
313,
1251,
412,
3730,
982,
8473,
29897,
6694,
29889,
13,
13,
29902,
505,
1063,
2599,
263,
3287,
310,
5183,
1048,
390,
29931,
19518,
393,
671,
6483,
6509,
29892,
541,
306,
7359,
29915,
29873,
3447,
750,
278,
931,
29914,
6214,
29914,
13237,
297,
10296,
304,
664,
373,
2869,
5214,
263,
9225,
773,
3099,
8724,
2560,
660,
6509,
411,
1361,
29899,
29659,
5680,
29889,
306,
4966,
304,
1735,
393,
445,
8753,
22394,
2867,
411,
8142,
568,
322,
313,
1251,
412,
3730,
29897,
6625,
1169,
373,
402,
4741,
29889,
13,
13,
29902,
723,
763,
304,
671,
390,
29931,
322,
14675,
653,
16650,
583,
297,
18851,
22525,
29914,
9018,
1691,
322,
297,
23906,
278,
8210,
5253,
310,
13968,
304,
671,
297,
4332,
3864,
263,
15754,
29889,
15950,
263,
2919,
1353,
310,
1889,
943,
304,
1065,
278,
5164,
3987,
723,
367,
1407,
8444,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Sixers sign second-round pick Shake Milton to two-way contract
Sixers sign second-round pick Shake Milton to two-way contract
There was obvious interest in former SMU guard Shake Milton from the Philadelphia 76ers during the NBA pre-draft process. After being brought in for a workout, he seemed like a prime second-round target for the team.
The Sixers wound up dealing away quite a few of their second-round selections, though, but late in the round, their final trade was one that brought Milton to Philly.
After sending the No. 56 and 60 selections to the Dallas Mavericks to move up to No. 54, the Sixers landed the talented guard. And on Thursday, the team revealed they have signed Milton to a two-way contract.
Although Milton was unable to participate in the 2018 NBA Summer League due to a back injury, Brett Brown and company are obviously confident in his abilities.
With the two-way contract, Milton is able to spend up to 45 days with the Sixers, and the rest of the time will be with their G-League, the Delaware Blue Coats.
During his collegiate career, Milton progressively improved his game over three seasons. His final year featured him posting averages of 18.0 points, 4.7 rebounds, and 4.4 assists. He was also named Second-Team All-AAC in both 2017 and 2018. | [
1,
18372,
414,
1804,
1473,
29899,
14486,
5839,
1383,
1296,
3833,
880,
304,
1023,
29899,
1582,
8078,
13,
13,
29903,
861,
414,
1804,
1473,
29899,
14486,
5839,
1383,
1296,
3833,
880,
304,
1023,
29899,
1582,
8078,
13,
13,
8439,
471,
6924,
4066,
297,
4642,
13766,
29965,
8372,
1383,
1296,
3833,
880,
515,
278,
18292,
29871,
29955,
29953,
414,
2645,
278,
21517,
758,
29899,
29881,
4154,
1889,
29889,
2860,
1641,
6296,
297,
363,
263,
664,
449,
29892,
540,
6140,
763,
263,
6019,
1473,
29899,
14486,
3646,
363,
278,
3815,
29889,
13,
13,
1576,
18372,
414,
281,
618,
701,
16743,
3448,
3755,
263,
2846,
310,
1009,
1473,
29899,
14486,
409,
5942,
29892,
2466,
29892,
541,
5683,
297,
278,
4513,
29892,
1009,
2186,
11302,
471,
697,
393,
6296,
3833,
880,
304,
5241,
368,
29889,
13,
13,
13555,
9348,
278,
1939,
29889,
29871,
29945,
29953,
322,
29871,
29953,
29900,
409,
5942,
304,
278,
27043,
3219,
369,
7358,
304,
4337,
701,
304,
1939,
29889,
29871,
29945,
29946,
29892,
278,
18372,
414,
2982,
287,
278,
5969,
14927,
8372,
29889,
1126,
373,
498,
1295,
3250,
29892,
278,
3815,
17845,
896,
505,
8794,
3833,
880,
304,
263,
1023,
29899,
1582,
8078,
29889,
13,
13,
2499,
3592,
3833,
880,
471,
9368,
304,
5221,
403,
297,
278,
29871,
29906,
29900,
29896,
29947,
21517,
13329,
5165,
2861,
304,
263,
1250,
24092,
29892,
5826,
698,
9817,
322,
5001,
526,
12879,
24332,
297,
670,
633,
9770,
29889,
13,
13,
3047,
278,
1023,
29899,
1582,
8078,
29892,
3833,
880,
338,
2221,
304,
18864,
701,
304,
29871,
29946,
29945,
3841,
411,
278,
18372,
414,
29892,
322,
278,
1791,
310,
278,
931,
674,
367,
411,
1009,
402,
29899,
3226,
3437,
29892,
278,
5556,
28327,
10924,
3189,
1446,
29889,
13,
13,
29928,
3864,
670,
18400,
29347,
6413,
29892,
3833,
880,
6728,
3598,
16710,
670,
3748,
975,
2211,
20084,
29889,
3600,
2186,
1629,
15000,
1075,
16742,
4759,
1179,
310,
29871,
29896,
29947,
29889,
29900,
3291,
29892,
29871,
29946,
29889,
29955,
15121,
3885,
29892,
322,
29871,
29946,
29889,
29946,
1223,
2879,
29889,
940,
471,
884,
4257,
6440,
29899,
19409,
2178,
29899,
29909,
2477,
297,
1716,
29871,
29906,
29900,
29896,
29955,
322,
29871,
29906,
29900,
29896,
29947,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
/**********************************************************************
*
* Copyright (c) 2004 Olaf Willuhn
* All rights reserved.
*
* This software is copyrighted work licensed under the terms of the
* Jameica License. Please consult the file "LICENSE" for details.
*
**********************************************************************/
package de.willuhn.jameica.hbci.gui.controller;
import java.rmi.RemoteException;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang.StringUtils;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.kapott.hbci.manager.HBCIUtils;
import de.jost_net.OBanToo.SEPA.IBAN;
import de.jost_net.OBanToo.SEPA.BankenDaten.Bank;
import de.jost_net.OBanToo.SEPA.BankenDaten.Banken;
import de.jost_net.OBanToo.SEPA.Land.SEPALand;
import de.willuhn.datasource.pseudo.PseudoIterator;
import de.willuhn.datasource.rmi.DBIterator;
import de.willuhn.datasource.rmi.ResultSetExtractor;
import de.willuhn.jameica.gui.AbstractControl;
import de.willuhn.jameica.gui.AbstractView;
import de.willuhn.jameica.gui.Part;
import de.willuhn.jameica.gui.input.Input;
import de.willuhn.jameica.gui.input.SelectInput;
import de.willuhn.jameica.gui.input.TextAreaInput;
import de.willuhn.jameica.gui.input.TextInput;
import de.willuhn.jameica.hbci.HBCI;
import de.willuhn.jameica.hbci.HBCIProperties;
import de.willuhn.jameica.hbci.Settings;
import de.willuhn.jameica.hbci.gui.action.EmpfaengerNew;
import de.willuhn.jameica.hbci.gui.action.SepaSammelLastBuchungNew;
import de.willuhn.jameica.hbci.gui.action.SepaSammelUeberweisungBuchungNew;
import de.willuhn.jameica.hbci.gui.action.UmsatzDetail;
import de.willuhn.jameica.hbci.gui.input.BICInput;
import de.willuhn.jameica.hbci.gui.input.BLZInput;
import de.willuhn.jameica.hbci.gui.input.IBANInput;
import de.willuhn.jameica.hbci.gui.parts.SepaSammelTransferBuchungList;
import de.willuhn.jameica.hbci.gui.parts.UmsatzList;
import de.willuhn.jameica.hbci.rmi.Address;
import de.willuhn.jameica.hbci.rmi.HibiscusAddress;
import de.willuhn.jameica.hbci.rmi.SepaSammelLastBuchung;
import de.willuhn.jameica.hbci.rmi.SepaSammelUeberweisungBuchung;
import de.willuhn.jameica.hbci.server.UmsatzUtil;
import de.willuhn.jameica.messaging.StatusBarMessage;
import de.willuhn.jameica.system.Application;
import de.willuhn.logging.Logger;
import de.willuhn.util.ApplicationException;
import de.willuhn.util.I18N;
/**
* Controller fuer die Empfaenger-Adressen.
*/
public class EmpfaengerControl extends AbstractControl
{
private final static I18N i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();
// Fach-Objekte
private Address address = null;
// Eingabe-Felder
private TextInput kontonummer = null;
private TextInput blz = null;
private Input name = null;
private TextInput bic = null;
private TextInput iban = null;
private TextInput bank = null;
private SelectInput kategorie = null;
private Input kommentar = null;
private Part list = null;
private Part sammelList = null;
private Part sammelList2 = null;
private Part umsatzList = null;
private IbanListener ibanListener = new IbanListener();
/**
* @param view
*/
public EmpfaengerControl(AbstractView view)
{
super(view);
}
/**
* Liefert die Adresse.
* Existiert er nicht, wird ein neuer erzeugt.
* @return die Adresse.
* @throws RemoteException
*/
public Address getAddress() throws RemoteException
{
if (address != null)
return address;
address = (Address) getCurrentObject();
if (address != null)
return address;
address = (HibiscusAddress) Settings.getDBService().createObject(HibiscusAddress.class,null);
return address;
}
/**
* Prueft, ob es sich bei der Adresse um eine Hibiscus-Adresse handelt und diese aenderbar ist.
* @return true, wenn es eine Hibiscus-Adresse ist.
* @throws RemoteException
*/
public boolean isHibiscusAdresse() throws RemoteException
{
Address a = getAddress();
return (a instanceof HibiscusAddress);
}
/**
* Liefert eine Tabelle mit allen vorhandenen Empfaengern.
* @return Tabelle.
* @throws RemoteException
*/
public Part getEmpfaengerListe() throws RemoteException
{
if (list != null)
return list;
list = new de.willuhn.jameica.hbci.gui.parts.EmpfaengerList(new EmpfaengerNew());
return list;
}
// BUGZILLA 56 http://www.willuhn.de/bugzilla/show_bug.cgi?id=56
/**
* Liefert eine Liste von allen Umsaetzen an/von diese/dieser Adresse.
* @return Tabelle.
* @throws RemoteException
*/
public Part getUmsatzListe() throws RemoteException
{
if (this.umsatzList != null)
return this.umsatzList;
Address a = this.getAddress();
DBIterator list = UmsatzUtil.getUmsaetzeBackwards();
// BUGZILLA 1328 https://www.willuhn.de/bugzilla/show_bug.cgi?id=1328
// wenn wir eine IBAN haben, muessen wir auch nach der suchen.
// BUGZILLA 1395 wenn der Adressbuch-Eintrag nur IBAN hat und keine Kontonummer/BLZ, dann nur nach IBAN suchen
String iban = a.getIban();
String konto = a.getKontonummer();
if (StringUtils.isNotEmpty(iban)) // haben wir eine IBAN?
{
if (StringUtils.isNotEmpty(konto)) // haben wir ausserdem Konto/BLZ?
list.addFilter("((empfaenger_konto like ? and empfaenger_blz = ?) or lower(empfaenger_konto) = ?)","%" + konto, a.getBlz(), iban.toLowerCase());
else // nur IBAN // BUGZILLA 1395
list.addFilter("lower(empfaenger_konto) = ?",iban.toLowerCase());
}
else
{
list.addFilter("empfaenger_konto like ?","%" + konto);
list.addFilter("empfaenger_blz = ?",a.getBlz());
}
this.umsatzList = new UmsatzList(list,new UmsatzDetail());
return this.umsatzList;
}
// BUGZILLA 107 http://www.willuhn.de/bugzilla/show_bug.cgi?id=107
/**
* Liefert eine Liste von allen Sammel-Lastschrift-Buchungen, die von dieser
* Adresse eingezogen wurden.
* @return Tabelle.
* @throws RemoteException
*/
public Part getSammelLastListe() throws RemoteException
{
if (this.sammelList != null)
return this.sammelList;
DBIterator list = Settings.getDBService().createList(SepaSammelLastBuchung.class);
list.addFilter("empfaenger_konto = ?", getAddress().getIban());
list.setOrder(" ORDER BY id DESC");
this.sammelList = new SepaSammelTransferBuchungList(PseudoIterator.asList(list),new SepaSammelLastBuchungNew());
return this.sammelList;
}
/**
* Liefert eine Liste von allen Sammel-Ueberweisung-Buchungen, die an diese
* Adresse ueberwiesen wurden.
* @return Tabelle.
* @throws RemoteException
*/
public Part getSammelUeberweisungListe() throws RemoteException
{
if (this.sammelList2 != null)
return this.sammelList2;
DBIterator list = Settings.getDBService().createList(SepaSammelUeberweisungBuchung.class);
list.addFilter("empfaenger_konto = ?", getAddress().getIban());
list.setOrder(" ORDER BY id DESC");
this.sammelList2 = new SepaSammelTransferBuchungList(PseudoIterator.asList(list),new SepaSammelUeberweisungBuchungNew());
return this.sammelList2;
}
/**
* Liefert das Eingabe-Feld fuer die Kontonummer.
* @return Eingabe-Feld.
* @throws RemoteException
*/
public Input getKontonummer() throws RemoteException
{
if (kontonummer != null)
return kontonummer;
kontonummer = new TextInput(getAddress().getKontonummer(),HBCIProperties.HBCI_KTO_MAXLENGTH_SOFT);
// BUGZILLA 280
kontonummer.setValidChars(HBCIProperties.HBCI_KTO_VALIDCHARS);
boolean b = this.isHibiscusAdresse();
kontonummer.setEnabled(b);
if (b)
kontonummer.addListener(this.ibanListener);
return kontonummer;
}
/**
* Liefert ein Eingabe-Feld fuer einen Kommentar.
* @return Kommentar.
* @throws RemoteException
*/
public Input getKommentar() throws RemoteException
{
if (this.kommentar != null)
return this.kommentar;
this.kommentar = new TextAreaInput(getAddress().getKommentar());
this.kommentar.setEnabled(isHibiscusAdresse());
return this.kommentar;
}
/**
* Liefert ein editierbares Auswahlfeld mit der Kategorie.
* @return Auswahlfeld.
* @throws RemoteException
*/
public SelectInput getKategorie() throws RemoteException
{
if (this.kategorie != null)
return this.kategorie;
List<String> list = (List<String>) Settings.getDBService().execute("select kategorie from empfaenger where kategorie is not null and kategorie != '' group by kategorie order by LOWER(kategorie)",null,new ResultSetExtractor()
{
/**
* @see de.willuhn.datasource.rmi.ResultSetExtractor#extract(java.sql.ResultSet)
*/
public Object extract(ResultSet rs) throws RemoteException, SQLException
{
List<String> list = new ArrayList<String>();
list.add(""); // <Keine Kategorie>
while (rs.next())
list.add(rs.getString(1));
return list;
}
});
this.kategorie = new SelectInput(list,this.getAddress().getKategorie());
this.kategorie.setName(i18n.tr("Gruppe"));
this.kategorie.setEditable(true);
this.kategorie.setEnabled(isHibiscusAdresse());
return this.kategorie;
}
/**
* Liefert das Eingabe-Feld fuer die BLZ.
* @return Eingabe-Feld.
* @throws RemoteException
*/
public Input getBlz() throws RemoteException
{
if (blz != null)
return blz;
blz = new BLZInput(getAddress().getBlz());
boolean b = this.isHibiscusAdresse();
blz.setEnabled(b);
if (b)
blz.addListener(this.ibanListener);
return blz;
}
/**
* Liefert das Eingabe-Feld fuer die IBAN.
* @return Eingabe-Feld.
* @throws RemoteException
*/
public Input getIban() throws RemoteException
{
if (this.iban != null)
return this.iban;
boolean enabled = this.isHibiscusAdresse();
this.iban = new IBANInput(getAddress().getIban(),this.getBic());
this.iban.setEnabled(enabled);
if (enabled)
{
this.iban.addListener(new Listener() {
public void handleEvent(Event event)
{
// BUGZILLA 1605 Wenn wir eine IBAN haben aber noch keine
// Kontonummer/BLZ, dann vervollstaendigen wir diese
try
{
String iban = (String) getIban().getValue();
boolean haveIban = StringUtils.trimToNull(iban) != null;
boolean haveKto = StringUtils.trimToNull((String) getKontonummer().getValue()) != null;
boolean haveBlz = StringUtils.trimToNull((String) getBlz().getValue()) != null;
if (haveIban && (!haveKto || !haveBlz))
{
IBAN i = new IBAN(iban);
SEPALand land = i.getLand();
if (land.getBankIdentifierLength() == null)
{
Logger.info("length of bank identifier unknown for this country");
return;
}
// Kontonummer vervollstaendigen
if (!haveKto)
getKontonummer().setValue(i.getKonto());
// BLZ vervollstaendigen
if (!haveBlz)
getBlz().setValue(i.getBLZ());
}
}
catch (Exception e)
{
Logger.error("unable to auto-complete account number",e);
}
}
});
}
return this.iban;
}
/**
* Liefert das Eingabe-Feld fuer die BIC.
* @return Eingabe-Feld.
* @throws RemoteException
*/
public Input getBic() throws RemoteException
{
if (this.bic != null)
return this.bic;
boolean enabled = this.isHibiscusAdresse();
this.bic = new BICInput(getAddress().getBic());
this.bic.setEnabled(enabled);
if (enabled)
{
this.bic.addListener(new Listener() {
public void handleEvent(Event event)
{
// BUGZILLA 1605 Wenn wir eine BIC haben aber noch keine
// BLZ, dann vervollstaendigen wir diese
try
{
String bic = (String) getBic().getValue();
String blz = (String) getBlz().getValue();
if (StringUtils.trimToNull(bic) != null && StringUtils.trimToNull(blz) == null)
{
Bank bank = Banken.getBankByBIC(bic);
if (bank == null)
{
Logger.info("blz unknown for bic " + bic);
return;
}
getBlz().setValue(bank.getBLZ());
}
}
catch (Exception e)
{
Logger.error("unable to auto-complete BLZ",e);
}
}
});
}
return this.bic;
}
/**
* Liefert das Eingabe-Feld fuer den Namen der Bank.
* @return Eingabe-Feld.
* @throws RemoteException
*/
public Input getBank() throws RemoteException
{
if (this.bank == null)
{
String s = null;
Address a = getAddress();
if (a instanceof HibiscusAddress)
s = ((HibiscusAddress)a).getBank();
this.bank = new TextInput(s, HBCIProperties.HBCI_SEPATRANSFER_USAGE_MAXLENGTH);
this.bank.setEnabled(isHibiscusAdresse());
}
return this.bank;
}
/**
* Liefert das Eingabe-Feld fuer den Namen.
* @return Eingabe-Feld.
* @throws RemoteException
*/
public Input getName() throws RemoteException
{
if (name != null)
return name;
name = new TextInput(getAddress().getName(),HBCIProperties.HBCI_TRANSFER_NAME_MAXLENGTH);
name.setEnabled(isHibiscusAdresse());
name.setMandatory(true);
return name;
}
/**
* Vervollstaendigt IBAN/BIC.
*/
private class IbanListener implements Listener
{
/**
* @see org.eclipse.swt.widgets.Listener#handleEvent(org.eclipse.swt.widgets.Event)
*/
public void handleEvent(Event event)
{
try
{
String blz = StringUtils.trimToNull((String) getBlz().getValue());
String bic = StringUtils.trimToNull((String) getBic().getValue());
String kto = StringUtils.trimToNull((String) getKontonummer().getValue());
String iban = StringUtils.trimToNull((String) getIban().getValue());
if (blz != null && blz.length() == HBCIProperties.HBCI_BLZ_LENGTH)
{
String newBic = null;
if (HBCI.COMPLETE_IBAN && kto != null && iban == null)
{
IBAN newIban = HBCIProperties.getIBAN(blz,kto);
newBic = newIban.getBIC();
getIban().setValue(newIban.getIBAN());
}
if (bic == null)
{
if (newBic == null) // nur wenn sie nicht schon von obantoo ermittelt wurde
newBic = HBCIUtils.getBICForBLZ(blz);
getBic().setValue(newBic);
}
}
}
catch (ApplicationException ae)
{
Logger.warn("unable to complete IBAN/BIC: " + ae.getMessage());
}
catch (Exception e)
{
Logger.error("unable to auto-complete IBAN/BIC",e);
}
}
}
/**
* Speichert den Empfaenger.
*/
public synchronized void handleStore()
{
try {
if (isHibiscusAdresse())
{
HibiscusAddress a = (HibiscusAddress) getAddress();
a.setKontonummer((String)getKontonummer().getValue());
a.setBlz((String)getBlz().getValue());
a.setName((String)getName().getValue());
a.setKommentar((String)getKommentar().getValue());
a.setKategorie((String)getKategorie().getValue());
a.setBank((String)getBank().getValue());
a.setIban((String)getIban().getValue());
a.setBic((String)getBic().getValue());
a.store();
Application.getMessagingFactory().sendMessage(new StatusBarMessage(i18n.tr("Adresse gespeichert"),StatusBarMessage.TYPE_SUCCESS));
}
}
catch (ApplicationException e2)
{
Application.getMessagingFactory().sendMessage(new StatusBarMessage(e2.getMessage(),StatusBarMessage.TYPE_ERROR));
}
catch (RemoteException e)
{
Logger.error("error while storing address",e);
Application.getMessagingFactory().sendMessage(new StatusBarMessage(i18n.tr("Fehler beim Speichern der Adresse: {0}",e.getMessage()),StatusBarMessage.TYPE_ERROR));
}
}
}
| [
1,
847,
7775,
7775,
7775,
7775,
2328,
1068,
13,
334,
13,
334,
14187,
1266,
313,
29883,
29897,
29871,
29906,
29900,
29900,
29946,
438,
433,
29888,
2811,
29884,
3123,
13,
334,
2178,
10462,
21676,
29889,
13,
334,
29871,
13,
334,
910,
7047,
338,
3509,
1266,
287,
664,
7794,
21144,
1090,
278,
4958,
310,
278,
13,
334,
435,
420,
983,
19245,
29889,
29871,
3529,
8799,
278,
934,
376,
27888,
1430,
1660,
29908,
363,
4902,
29889,
29871,
13,
334,
13,
334,
7775,
7775,
7775,
7775,
2328,
3877,
13,
5113,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
8299,
29936,
13,
13,
5215,
2115,
29889,
1758,
29875,
29889,
20224,
2451,
29936,
13,
5215,
2115,
29889,
2850,
29889,
3591,
2697,
29936,
13,
5215,
2115,
29889,
2850,
29889,
4176,
2451,
29936,
13,
5215,
2115,
29889,
4422,
29889,
20165,
29936,
13,
5215,
2115,
29889,
4422,
29889,
1293,
29936,
13,
13,
5215,
1638,
29889,
4288,
29889,
22382,
29889,
3893,
29889,
1231,
12177,
29936,
13,
5215,
1638,
29889,
13660,
29889,
2774,
29873,
29889,
8030,
29879,
29889,
2624,
29936,
13,
5215,
1638,
29889,
13660,
29889,
2774,
29873,
29889,
8030,
29879,
29889,
3962,
29936,
13,
5215,
1638,
29889,
21474,
1501,
29889,
29882,
29890,
455,
29889,
12847,
29889,
29950,
5371,
29902,
12177,
29936,
13,
13,
5215,
316,
29889,
29926,
520,
29918,
1212,
29889,
14824,
273,
1762,
29877,
29889,
1660,
7228,
29889,
8979,
2190,
29936,
13,
5215,
316,
29889,
29926,
520,
29918,
1212,
29889,
14824,
273,
1762,
29877,
29889,
1660,
7228,
29889,
29933,
804,
264,
29928,
2579,
29889,
29933,
804,
29936,
13,
5215,
316,
29889,
29926,
520,
29918,
1212,
29889,
14824,
273,
1762,
29877,
29889,
1660,
7228,
29889,
29933,
804,
264,
29928,
2579,
29889,
29933,
804,
264,
29936,
13,
5215,
316,
29889,
29926,
520,
29918,
1212,
29889,
14824,
273,
1762,
29877,
29889,
1660,
7228,
29889,
22677,
29889,
1660,
29925,
1964,
392,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
14538,
1167,
29889,
27358,
5333,
29889,
29925,
344,
5333,
20277,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
14538,
1167,
29889,
1758,
29875,
29889,
4051,
20277,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
14538,
1167,
29889,
1758,
29875,
29889,
3591,
2697,
5647,
28891,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
23569,
29889,
9118,
4809,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
23569,
29889,
9118,
1043,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
23569,
29889,
7439,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
23569,
29889,
2080,
29889,
4290,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
23569,
29889,
2080,
29889,
3549,
4290,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
23569,
29889,
2080,
29889,
1626,
13799,
4290,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
23569,
29889,
2080,
29889,
1626,
4290,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
29950,
5371,
29902,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
29950,
5371,
29902,
11857,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
9585,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
2467,
29889,
10495,
5444,
15109,
4373,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
2467,
29889,
29903,
1022,
29874,
29903,
4850,
295,
8897,
29933,
987,
686,
4373,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
2467,
29889,
29903,
1022,
29874,
29903,
4850,
295,
29965,
29872,
495,
13046,
686,
29933,
987,
686,
4373,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
2467,
29889,
29965,
1516,
4101,
16570,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
2080,
29889,
29933,
2965,
4290,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
2080,
29889,
13367,
29999,
4290,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
2080,
29889,
8979,
2190,
4290,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
20895,
29889,
29903,
1022,
29874,
29903,
4850,
295,
4300,
571,
29933,
987,
686,
1293,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
20895,
29889,
29965,
1516,
4101,
1293,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
1758,
29875,
29889,
7061,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
1758,
29875,
29889,
29950,
747,
275,
8668,
7061,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
1758,
29875,
29889,
29903,
1022,
29874,
29903,
4850,
295,
8897,
29933,
987,
686,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
1758,
29875,
29889,
29903,
1022,
29874,
29903,
4850,
295,
29965,
29872,
495,
13046,
686,
29933,
987,
686,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
2974,
29889,
29965,
1516,
4101,
7270,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
12062,
6751,
29889,
5709,
4297,
3728,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
5205,
29889,
4873,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
21027,
29889,
16363,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
4422,
29889,
4873,
2451,
29936,
13,
5215,
316,
29889,
14043,
29884,
3123,
29889,
4422,
29889,
29902,
29896,
29947,
29940,
29936,
13,
13,
7918,
13,
334,
15830,
8470,
762,
7361,
5444,
15109,
29899,
3253,
1253,
264,
29889,
13,
3776,
13,
3597,
770,
7361,
5444,
15109,
4809,
4988,
25513,
4809,
13,
29912,
13,
29871,
2024,
2186,
2294,
306,
29896,
29947,
29940,
474,
29896,
29947,
29876,
353,
8427,
29889,
657,
16288,
10036,
2141,
657,
16288,
29898,
29950,
5371,
29902,
29889,
1990,
467,
657,
13770,
2141,
657,
29902,
29896,
29947,
29940,
890,
13,
13,
29871,
849,
21378,
29899,
6039,
29390,
13,
12,
9053,
16428,
3211,
308,
353,
1870,
29936,
13,
12,
458,
29776,
4302,
29899,
29943,
295,
672,
13,
12,
9053,
3992,
4290,
13156,
265,
398,
1050,
259,
353,
1870,
29936,
13,
12,
9053,
3992,
4290,
1999,
29920,
12,
12,
12,
12,
12,
29871,
353,
1870,
29936,
13,
12,
9053,
10567,
1024,
12,
12,
12,
12,
418,
353,
1870,
29936,
13,
13,
12,
9053,
3992,
4290,
289,
293,
965,
353,
1870,
29936,
13,
12,
9053,
3992,
4290,
474,
2571,
3986,
353,
1870,
29936,
13,
29871,
2024,
3992,
4290,
9124,
3986,
353,
1870,
29936,
13,
13,
29871,
2024,
7605,
4290,
413,
1845,
7661,
259,
353,
1870,
29936,
13,
259,
13,
12,
9053,
10567,
4677,
358,
279,
308,
353,
1870,
29936,
13,
13,
29871,
2024,
3455,
1051,
1669,
353,
1870,
29936,
13,
29871,
2024,
3455,
3514,
12873,
1293,
308,
353,
1870,
29936,
13,
29871,
2024,
3455,
3514,
12873,
1293,
29906,
4706,
353,
1870,
29936,
13,
29871,
2024,
3455,
318,
1516,
4101,
1293,
308,
353,
1870,
29936,
13,
259,
13,
29871,
2024,
306,
2571,
3962,
474,
2571,
3962,
353,
716,
306,
2571,
3962,
890,
13,
259,
13,
29871,
7762,
13,
259,
334,
732,
3207,
1776,
13,
259,
3776,
13,
29871,
970,
7361,
5444,
15109,
4809,
29898,
9118,
1043,
1776,
29897,
13,
29871,
426,
13,
1678,
2428,
29898,
1493,
416,
13,
29871,
500,
13,
13,
12,
7918,
13,
12,
334,
7326,
19175,
762,
2087,
23458,
29889,
13,
12,
334,
1222,
391,
3722,
604,
3072,
29892,
4296,
1011,
452,
2853,
604,
13289,
29873,
29889,
13,
259,
334,
732,
2457,
762,
2087,
23458,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
16428,
679,
7061,
580,
8026,
5240,
866,
2451,
13,
12,
29912,
13,
12,
12,
361,
313,
7328,
2804,
1870,
29897,
13,
12,
12,
12,
2457,
3211,
29936,
13,
12,
12,
13,
1678,
3211,
353,
313,
7061,
29897,
679,
7583,
2061,
890,
13,
12,
12,
361,
313,
7328,
2804,
1870,
29897,
13,
12,
12,
12,
2457,
3211,
29936,
13,
13,
1678,
3211,
353,
313,
29950,
747,
275,
8668,
7061,
29897,
19215,
29889,
657,
4051,
3170,
2141,
3258,
2061,
29898,
29950,
747,
275,
8668,
7061,
29889,
1990,
29892,
4304,
416,
13,
12,
12,
2457,
3211,
29936,
13,
12,
29913,
13,
259,
13,
29871,
7762,
13,
259,
334,
1588,
434,
615,
29892,
704,
831,
2160,
2862,
589,
2087,
23458,
1922,
2128,
379,
747,
275,
8668,
29899,
3253,
23458,
1361,
2152,
563,
10009,
263,
1581,
1646,
1752,
29889,
13,
259,
334,
732,
2457,
1565,
29892,
13588,
831,
2128,
379,
747,
275,
8668,
29899,
3253,
23458,
1752,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
7223,
338,
29950,
747,
275,
8668,
3253,
23458,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
16428,
263,
353,
679,
7061,
890,
13,
1678,
736,
313,
29874,
28919,
379,
747,
275,
8668,
7061,
416,
13,
29871,
500,
13,
13,
12,
7918,
13,
12,
334,
7326,
19175,
2128,
323,
1107,
280,
1380,
15832,
3764,
3179,
6537,
7361,
5444,
996,
824,
29889,
13,
259,
334,
732,
2457,
323,
1107,
280,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
3455,
679,
10495,
5444,
15109,
29931,
2488,
580,
8026,
5240,
866,
2451,
13,
12,
29912,
13,
1678,
565,
313,
1761,
2804,
1870,
29897,
13,
418,
736,
1051,
29936,
13,
1678,
1051,
353,
716,
316,
29889,
14043,
29884,
3123,
29889,
29926,
420,
983,
29889,
29882,
29890,
455,
29889,
23569,
29889,
20895,
29889,
10495,
5444,
15109,
1293,
29898,
1482,
7361,
5444,
15109,
4373,
3310,
13,
1678,
736,
1051,
29936,
13,
12,
29913,
13,
13,
29871,
849,
350,
23338,
29999,
24071,
29909,
29871,
29945,
29953,
1732,
597,
1636,
29889,
14043,
29884,
3123,
29889,
311,
29914,
6152,
29920,
2911,
29914,
4294,
29918,
6152,
29889,
20006,
29973,
333,
29922,
29945,
29953,
13,
29871,
7762,
13,
259,
334,
7326,
19175,
2128,
7637,
1005,
15832,
501,
1516,
29874,
300,
2256,
385,
29914,
23696,
10009,
29914,
29881,
583,
261,
2087,
23458,
29889,
13,
259,
334,
732,
2457,
323,
1107,
280,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
3455,
679,
29965,
1516,
4101,
29931,
2488,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
565,
313,
1366,
29889,
6762,
4101,
1293,
2804,
1870,
29897,
13,
418,
736,
445,
29889,
6762,
4101,
1293,
29936,
13,
13,
1678,
16428,
263,
353,
445,
29889,
657,
7061,
890,
13,
1678,
6535,
20277,
1051,
353,
501,
1516,
4101,
7270,
29889,
657,
29965,
1516,
29874,
300,
911,
5841,
2935,
890,
13,
1678,
849,
350,
23338,
29999,
24071,
29909,
29871,
29896,
29941,
29906,
29947,
2045,
597,
1636,
29889,
14043,
29884,
3123,
29889,
311,
29914,
6152,
29920,
2911,
29914,
4294,
29918,
6152,
29889,
20006,
29973,
333,
29922,
29896,
29941,
29906,
29947,
13,
1678,
849,
13588,
14259,
2128,
15731,
2190,
10290,
29892,
3887,
9957,
14259,
2907,
2644,
589,
1316,
264,
29889,
13,
1678,
849,
350,
23338,
29999,
24071,
29909,
29871,
29896,
29941,
29929,
29945,
13588,
589,
2087,
1253,
8458,
29899,
29923,
27075,
5595,
15731,
2190,
3056,
563,
13945,
11587,
265,
398,
1050,
29914,
13367,
29999,
29892,
7885,
5595,
2644,
15731,
2190,
1316,
264,
13,
1678,
1714,
474,
2571,
353,
263,
29889,
657,
29902,
2571,
890,
13,
1678,
1714,
4139,
517,
353,
263,
29889,
657,
29968,
609,
265,
398,
1050,
890,
13,
268,
13,
1678,
565,
313,
1231,
12177,
29889,
275,
3664,
8915,
29898,
747,
273,
876,
849,
10290,
14259,
2128,
15731,
2190,
29973,
13,
1678,
426,
13,
418,
565,
313,
1231,
12177,
29889,
275,
3664,
8915,
29898,
8077,
517,
876,
849,
10290,
14259,
1770,
643,
2310,
5250,
517,
29914,
13367,
29999,
29973,
13,
4706,
1051,
29889,
1202,
5072,
703,
3552,
3451,
5444,
15109,
29918,
8077,
517,
763,
1577,
322,
3710,
5444,
15109,
29918,
2204,
29920,
353,
1577,
29897,
470,
5224,
29898,
3451,
5444,
15109,
29918,
8077,
517,
29897,
353,
1577,
29897,
3284,
23577,
718,
4139,
517,
29892,
263,
29889,
657,
10358,
29920,
3285,
474,
2571,
29889,
517,
19357,
8259,
3310,
13,
418,
1683,
849,
5595,
15731,
2190,
849,
350,
23338,
29999,
24071,
29909,
29871,
29896,
29941,
29929,
29945,
13,
4706,
1051,
29889,
1202,
5072,
703,
13609,
29898,
3451,
5444,
15109,
29918,
8077,
517,
29897,
353,
1577,
613,
747,
273,
29889,
517,
19357,
8259,
3310,
13,
1678,
500,
13,
1678,
1683,
13,
1678,
426,
13,
418,
1051,
29889,
1202,
5072,
703,
3451,
5444,
15109,
29918,
8077,
517,
763,
1577,
3284,
23577,
718,
4139,
517,
416,
13,
418,
1051,
29889,
1202,
5072,
703,
3451,
5444,
15109,
29918,
2204,
29920,
353,
1577,
613,
29874,
29889,
657,
10358,
29920,
3310,
13,
1678,
500,
13,
13,
1678,
445,
29889,
6762,
4101,
1293,
353,
716,
501,
1516,
4101,
1293,
29898,
1761,
29892,
1482,
501,
1516,
4101,
16570,
3310,
13,
1678,
736,
445,
29889,
6762,
4101,
1293,
29936,
13,
29871,
500,
13,
13,
29871,
849,
350,
23338,
29999,
24071,
29909,
29871,
29896,
29900,
29955,
1732,
597,
1636,
29889,
14043,
29884,
3123,
29889,
311,
29914,
6152,
29920,
2911,
29914,
4294,
29918,
6152,
29889,
20006,
29973,
333,
29922,
29896,
29900,
29955,
13,
29871,
7762,
13,
259,
334,
7326,
19175,
2128,
7637,
1005,
15832,
3685,
12873,
29899,
8897,
13827,
29899,
29933,
987,
2469,
29892,
762,
1005,
8039,
13,
259,
334,
2087,
23458,
6867,
6096,
6352,
5448,
29889,
13,
259,
334,
732,
2457,
323,
1107,
280,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
3455,
679,
29903,
4850,
295,
8897,
29931,
2488,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
565,
313,
1366,
29889,
29879,
4850,
295,
1293,
2804,
1870,
29897,
13,
418,
736,
445,
29889,
29879,
4850,
295,
1293,
29936,
13,
13,
1678,
6535,
20277,
1051,
353,
19215,
29889,
657,
4051,
3170,
2141,
3258,
1293,
29898,
29903,
1022,
29874,
29903,
4850,
295,
8897,
29933,
987,
686,
29889,
1990,
416,
13,
1678,
1051,
29889,
1202,
5072,
703,
3451,
5444,
15109,
29918,
8077,
517,
353,
1577,
613,
679,
7061,
2141,
657,
29902,
2571,
3310,
13,
1678,
1051,
29889,
842,
7514,
703,
15606,
6770,
1178,
23050,
1496,
13,
13,
1678,
445,
29889,
29879,
4850,
295,
1293,
353,
716,
922,
3274,
29903,
4850,
295,
4300,
571,
29933,
987,
686,
1293,
29898,
29925,
344,
5333,
20277,
29889,
294,
1293,
29898,
1761,
511,
1482,
922,
3274,
29903,
4850,
295,
8897,
29933,
987,
686,
4373,
3310,
13,
1678,
736,
445,
29889,
29879,
4850,
295,
1293,
29936,
13,
29871,
500,
13,
13,
29871,
7762,
13,
259,
334,
7326,
19175,
2128,
7637,
1005,
15832,
3685,
12873,
29899,
29965,
29872,
495,
13046,
686,
29899,
29933,
987,
2469,
29892,
762,
385,
10009,
13,
259,
334,
2087,
23458,
318,
29872,
495,
29893,
19522,
5448,
29889,
13,
259,
334,
732,
2457,
323,
1107,
280,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
3455,
679,
29903,
4850,
295,
29965,
29872,
495,
13046,
686,
29931,
2488,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
565,
313,
1366,
29889,
29879,
4850,
295,
1293,
29906,
2804,
1870,
29897,
13,
418,
736,
445,
29889,
29879,
4850,
295,
1293,
29906,
29936,
13,
13,
1678,
6535,
20277,
1051,
353,
19215,
29889,
657,
4051,
3170,
2141,
3258,
1293,
29898,
29903,
1022,
29874,
29903,
4850,
295,
29965,
29872,
495,
13046,
686,
29933,
987,
686,
29889,
1990,
416,
13,
1678,
1051,
29889,
1202,
5072,
703,
3451,
5444,
15109,
29918,
8077,
517,
353,
1577,
613,
679,
7061,
2141,
657,
29902,
2571,
3310,
13,
1678,
1051,
29889,
842,
7514,
703,
15606,
6770,
1178,
23050,
1496,
13,
13,
1678,
445,
29889,
29879,
4850,
295,
1293,
29906,
353,
716,
922,
3274,
29903,
4850,
295,
4300,
571,
29933,
987,
686,
1293,
29898,
29925,
344,
5333,
20277,
29889,
294,
1293,
29898,
1761,
511,
1482,
922,
3274,
29903,
4850,
295,
29965,
29872,
495,
13046,
686,
29933,
987,
686,
4373,
3310,
13,
1678,
736,
445,
29889,
29879,
4850,
295,
1293,
29906,
29936,
13,
29871,
500,
13,
13,
29871,
7762,
13,
12,
334,
7326,
19175,
1697,
29776,
4302,
29899,
29943,
2495,
8470,
762,
11587,
265,
398,
1050,
29889,
13,
259,
334,
732,
2457,
29776,
4302,
29899,
29943,
2495,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
10567,
679,
29968,
609,
265,
398,
1050,
580,
8026,
5240,
866,
2451,
13,
12,
29912,
13,
12,
12,
361,
313,
29895,
609,
265,
398,
1050,
2804,
1870,
29897,
13,
12,
12,
12,
2457,
13156,
265,
398,
1050,
29936,
13,
12,
12,
29895,
609,
265,
398,
1050,
353,
716,
3992,
4290,
29898,
657,
7061,
2141,
657,
29968,
609,
265,
398,
1050,
3285,
29950,
5371,
29902,
11857,
29889,
29950,
5371,
29902,
29918,
29968,
4986,
29918,
12648,
19433,
29918,
6156,
7818,
416,
13,
1678,
849,
350,
23338,
29999,
24071,
29909,
29871,
29906,
29947,
29900,
13,
1678,
13156,
265,
398,
1050,
29889,
842,
7211,
1451,
1503,
29898,
29950,
5371,
29902,
11857,
29889,
29950,
5371,
29902,
29918,
29968,
4986,
29918,
26707,
11282,
29903,
416,
13,
268,
13,
1678,
7223,
289,
353,
445,
29889,
275,
29950,
747,
275,
8668,
3253,
23458,
890,
13,
1678,
13156,
265,
398,
1050,
29889,
842,
10861,
29898,
29890,
416,
13,
1678,
565,
313,
29890,
29897,
13,
418,
13156,
265,
398,
1050,
29889,
1202,
3962,
29898,
1366,
29889,
747,
273,
3962,
416,
13,
268,
13,
1678,
736,
13156,
265,
398,
1050,
29936,
13,
12,
29913,
13,
13,
29871,
7762,
13,
259,
334,
7326,
19175,
1011,
29776,
4302,
29899,
29943,
2495,
8470,
4596,
7107,
358,
279,
29889,
13,
259,
334,
732,
2457,
7107,
358,
279,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
10567,
679,
29968,
290,
358,
279,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
565,
313,
1366,
29889,
7218,
358,
279,
2804,
1870,
29897,
13,
418,
736,
445,
29889,
7218,
358,
279,
29936,
13,
1678,
445,
29889,
7218,
358,
279,
353,
716,
3992,
13799,
4290,
29898,
657,
7061,
2141,
657,
29968,
290,
358,
279,
3310,
13,
1678,
445,
29889,
7218,
358,
279,
29889,
842,
10861,
29898,
275,
29950,
747,
275,
8668,
3253,
23458,
3310,
13,
1678,
736,
445,
29889,
7218,
358,
279,
29936,
13,
29871,
500,
13,
259,
13,
29871,
7762,
13,
259,
334,
7326,
19175,
1011,
3863,
631,
1646,
267,
4028,
14967,
10612,
1380,
589,
476,
1845,
7661,
29889,
13,
259,
334,
732,
2457,
4028,
14967,
10612,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
7605,
4290,
679,
29968,
1845,
7661,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
565,
313,
1366,
29889,
29895,
1845,
7661,
2804,
1870,
29897,
13,
418,
736,
445,
29889,
29895,
1845,
7661,
29936,
13,
268,
13,
1678,
2391,
29966,
1231,
29958,
1051,
353,
313,
1293,
29966,
1231,
12948,
19215,
29889,
657,
4051,
3170,
2141,
7978,
703,
2622,
413,
1845,
7661,
515,
3710,
5444,
15109,
988,
413,
1845,
7661,
338,
451,
1870,
322,
413,
1845,
7661,
2804,
6629,
2318,
491,
413,
1845,
7661,
1797,
491,
365,
9806,
1001,
29898,
29895,
1845,
7661,
19123,
4304,
29892,
1482,
7867,
2697,
5647,
28891,
580,
13,
1678,
426,
13,
418,
7762,
13,
539,
334,
732,
4149,
316,
29889,
14043,
29884,
3123,
29889,
14538,
1167,
29889,
1758,
29875,
29889,
3591,
2697,
5647,
28891,
29937,
21111,
29898,
1645,
29889,
2850,
29889,
3591,
2697,
29897,
13,
539,
3776,
13,
418,
970,
4669,
6597,
29898,
3591,
2697,
20371,
29897,
8026,
5240,
866,
2451,
29892,
3758,
2451,
13,
418,
426,
13,
4706,
2391,
29966,
1231,
29958,
1051,
353,
716,
9791,
29966,
1231,
8295,
13,
4706,
1051,
29889,
1202,
703,
1496,
849,
529,
9598,
457,
476,
1845,
7661,
29958,
13,
4706,
1550,
313,
2288,
29889,
4622,
3101,
13,
3986,
1051,
29889,
1202,
29898,
2288,
29889,
13719,
29898,
29896,
2483,
13,
4706,
736,
1051,
29936,
13,
418,
500,
13,
1678,
2604,
13,
13,
1678,
445,
29889,
29895,
1845,
7661,
353,
716,
7605,
4290,
29898,
1761,
29892,
1366,
29889,
657,
7061,
2141,
657,
29968,
1845,
7661,
3310,
13,
1678,
445,
29889,
29895,
1845,
7661,
29889,
842,
1170,
29898,
29875,
29896,
29947,
29876,
29889,
509,
703,
29954,
582,
4798,
8983,
13,
1678,
445,
29889,
29895,
1845,
7661,
29889,
842,
6103,
519,
29898,
3009,
416,
13,
1678,
445,
29889,
29895,
1845,
7661,
29889,
842,
10861,
29898,
275,
29950,
747,
275,
8668,
3253,
23458,
3310,
13,
1678,
736,
445,
29889,
29895,
1845,
7661,
29936,
13,
29871,
500,
13,
259,
13,
12,
7918,
13,
12,
334,
7326,
19175,
1697,
29776,
4302,
29899,
29943,
2495,
8470,
762,
350,
29931,
29999,
29889,
13,
12,
334,
732,
2457,
29776,
4302,
29899,
29943,
2495,
29889,
13,
12,
334,
732,
386,
5727,
5240,
866,
2451,
13,
12,
3776,
13,
12,
3597,
10567,
679,
10358,
29920,
580,
8026,
5240,
866,
2451,
13,
12,
29912,
13,
12,
12,
361,
313,
2204,
29920,
2804,
1870,
29897,
13,
12,
12,
12,
2457,
1999,
29920,
29936,
13,
12,
12,
2204,
29920,
353,
716,
350,
29931,
29999,
4290,
29898,
657,
7061,
2141,
657,
10358,
29920,
3310,
13,
268,
13,
1678,
7223,
289,
353,
445,
29889,
275,
29950,
747,
275,
8668,
3253,
23458,
890,
13,
1678,
1999,
29920,
29889,
842,
10861,
29898,
29890,
416,
13,
1678,
565,
313,
29890,
29897,
13,
418,
1999,
29920,
29889,
1202,
3962,
29898,
1366,
29889,
747,
273,
3962,
416,
13,
268,
13,
12,
12,
2457,
1999,
29920,
29936,
13,
12,
29913,
13,
12,
13,
29871,
7762,
13,
259,
334,
7326,
19175,
1697,
29776,
4302,
29899,
29943,
2495,
8470,
762,
15731,
2190,
29889,
13,
259,
334,
732,
2457,
29776,
4302,
29899,
29943,
2495,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
10567,
679,
29902,
2571,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
565,
313,
1366,
29889,
747,
273,
2804,
1870,
29897,
13,
418,
736,
445,
29889,
747,
273,
29936,
13,
268,
13,
1678,
7223,
9615,
353,
445,
29889,
275,
29950,
747,
275,
8668,
3253,
23458,
890,
13,
1678,
445,
29889,
747,
273,
353,
716,
15731,
2190,
4290,
29898,
657,
7061,
2141,
657,
29902,
2571,
3285,
1366,
29889,
657,
29933,
293,
3310,
13,
1678,
445,
29889,
747,
273,
29889,
842,
10861,
29898,
17590,
416,
13,
1678,
565,
313,
17590,
29897,
13,
1678,
426,
13,
418,
445,
29889,
747,
273,
29889,
1202,
3962,
29898,
1482,
2391,
759,
580,
426,
13,
4706,
970,
1780,
4386,
2624,
29898,
2624,
1741,
29897,
13,
4706,
426,
13,
3986,
849,
350,
23338,
29999,
24071,
29909,
29871,
29896,
29953,
29900,
29945,
399,
2108,
14259,
2128,
15731,
2190,
10290,
6126,
5440,
13945,
13,
3986,
849,
11587,
265,
398,
1050,
29914,
13367,
29999,
29892,
7885,
1147,
1555,
29880,
5173,
355,
2101,
14259,
10009,
13,
3986,
1018,
13,
3986,
426,
13,
9651,
1714,
474,
2571,
418,
353,
313,
1231,
29897,
679,
29902,
2571,
2141,
23433,
890,
13,
9651,
7223,
505,
29902,
2571,
353,
1714,
12177,
29889,
15450,
1762,
7327,
29898,
747,
273,
29897,
2804,
1870,
29936,
13,
9651,
7223,
505,
29968,
517,
29871,
353,
1714,
12177,
29889,
15450,
1762,
7327,
3552,
1231,
29897,
679,
29968,
609,
265,
398,
1050,
2141,
23433,
3101,
2804,
1870,
29936,
13,
9651,
7223,
505,
10358,
29920,
29871,
353,
1714,
12177,
29889,
15450,
1762,
7327,
3552,
1231,
29897,
679,
10358,
29920,
2141,
23433,
3101,
2804,
1870,
29936,
13,
632,
13,
9651,
565,
313,
17532,
29902,
2571,
2607,
5384,
17532,
29968,
517,
3830,
1738,
17532,
10358,
29920,
876,
13,
9651,
426,
13,
795,
15731,
2190,
474,
353,
716,
15731,
2190,
29898,
747,
273,
416,
13,
795,
3725,
29925,
1964,
392,
2982,
353,
474,
29889,
657,
22677,
890,
13,
795,
565,
313,
1049,
29889,
657,
29933,
804,
12889,
6513,
580,
1275,
1870,
29897,
13,
795,
426,
13,
18884,
28468,
29889,
3888,
703,
2848,
310,
9124,
15882,
9815,
363,
445,
4234,
1496,
13,
18884,
736,
29936,
13,
795,
500,
13,
1669,
13,
795,
849,
11587,
265,
398,
1050,
1147,
1555,
29880,
5173,
355,
2101,
13,
795,
565,
5384,
17532,
29968,
517,
29897,
13,
18884,
679,
29968,
609,
265,
398,
1050,
2141,
842,
1917,
29898,
29875,
29889,
657,
29968,
10268,
3310,
13,
1669,
13,
795,
849,
350,
29931,
29999,
1147,
1555,
29880,
5173,
355,
2101,
13,
795,
565,
5384,
17532,
10358,
29920,
29897,
13,
18884,
679,
10358,
29920,
2141,
842,
1917,
29898,
29875,
29889,
657,
13367,
29999,
3310,
13,
9651,
500,
13,
3986,
500,
13,
3986,
4380,
313,
2451,
321,
29897,
13,
3986,
426,
13,
9651,
28468,
29889,
2704,
703,
348,
519,
304,
4469,
29899,
8835,
3633,
1353,
613,
29872,
416,
13,
3986,
500,
13,
4706,
500,
13,
418,
2604,
539,
13,
1678,
500,
13,
268,
13,
1678,
736,
445,
29889,
747,
273,
29936,
13,
29871,
500,
13,
13,
29871,
7762,
13,
259,
334,
7326,
19175,
1697,
29776,
4302,
29899,
29943,
2495,
8470,
762,
350,
2965,
29889,
13,
259,
334,
732,
2457,
29776,
4302,
29899,
29943,
2495,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
10567,
679,
29933,
293,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
565,
313,
1366,
29889,
29890,
293,
2804,
1870,
29897,
13,
418,
736,
445,
29889,
29890,
293,
29936,
13,
268,
13,
1678,
7223,
9615,
353,
445,
29889,
275,
29950,
747,
275,
8668,
3253,
23458,
890,
13,
1678,
445,
29889,
29890,
293,
353,
716,
350,
2965,
4290,
29898,
657,
7061,
2141,
657,
29933,
293,
3310,
13,
1678,
445,
29889,
29890,
293,
29889,
842,
10861,
29898,
17590,
416,
13,
1678,
565,
313,
17590,
29897,
13,
1678,
426,
13,
418,
445,
29889,
29890,
293,
29889,
1202,
3962,
29898,
1482,
2391,
759,
580,
426,
13,
4706,
970,
1780,
4386,
2624,
29898,
2624,
1741,
29897,
13,
4706,
426,
13,
3986,
849,
350,
23338,
29999,
24071,
29909,
29871,
29896,
29953,
29900,
29945,
399,
2108,
14259,
2128,
350,
2965,
10290,
6126,
5440,
13945,
13,
3986,
849,
350,
29931,
29999,
29892,
7885,
1147,
1555,
29880,
5173,
355,
2101,
14259,
10009,
13,
3986,
1018,
13,
3986,
426,
13,
9651,
1714,
289,
293,
353,
313,
1231,
29897,
679,
29933,
293,
2141,
23433,
890,
13,
9651,
1714,
1999,
29920,
353,
313,
1231,
29897,
679,
10358,
29920,
2141,
23433,
890,
13,
632,
13,
9651,
565,
313,
1231,
12177,
29889,
15450,
1762,
7327,
29898,
29890,
293,
29897,
2804,
1870,
2607,
1714,
12177,
29889,
15450,
1762,
7327,
29898,
2204,
29920,
29897,
1275,
1870,
29897,
13,
9651,
426,
13,
795,
10253,
9124,
353,
10253,
264,
29889,
657,
29933,
804,
2059,
29933,
2965,
29898,
29890,
293,
416,
13,
795,
565,
313,
9157,
1275,
1870,
29897,
13,
795,
426,
13,
18884,
28468,
29889,
3888,
703,
2204,
29920,
9815,
363,
289,
293,
376,
718,
289,
293,
416,
13,
18884,
736,
29936,
13,
795,
500,
13,
795,
679,
10358,
29920,
2141,
842,
1917,
29898,
9157,
29889,
657,
13367,
29999,
3310,
13,
9651,
500,
13,
3986,
500,
13,
3986,
4380,
313,
2451,
321,
29897,
13,
3986,
426,
13,
9651,
28468,
29889,
2704,
703,
348,
519,
304,
4469,
29899,
8835,
350,
29931,
29999,
613,
29872,
416,
13,
3986,
500,
13,
4706,
500,
13,
418,
2604,
13,
1678,
500,
13,
268,
13,
1678,
736,
445,
29889,
29890,
293,
29936,
13,
29871,
500,
13,
13,
29871,
7762,
13,
259,
334,
7326,
19175,
1697,
29776,
4302,
29899,
29943,
2495,
8470,
972,
14635,
589,
10253,
29889,
13,
259,
334,
732,
2457,
29776,
4302,
29899,
29943,
2495,
29889,
13,
259,
334,
732,
386,
5727,
5240,
866,
2451,
13,
259,
3776,
13,
29871,
970,
10567,
679,
29933,
804,
580,
8026,
5240,
866,
2451,
13,
29871,
426,
13,
1678,
565,
313,
1366,
29889,
9157,
1275,
1870,
29897,
13,
1678,
426,
13,
418,
1714,
269,
353,
1870,
29936,
13,
418,
16428,
263,
353,
679,
7061,
890,
13,
418,
565,
313,
29874,
28919,
379,
747,
275,
8668,
7061,
29897,
13,
4706,
269,
353,
5135,
29950,
747,
275,
8668,
7061,
29897,
29874,
467,
657,
29933,
804,
890,
13,
418,
445,
29889,
9157,
353,
716,
3992,
4290,
29898,
29879,
29892,
379,
5371,
29902,
11857,
29889,
29950,
5371,
29902,
29918,
1660,
29925,
1299,
29934,
2190,
20322,
1001,
29918,
3308,
10461,
29918,
12648,
19433,
416,
13,
418,
445,
29889,
9157,
29889,
842,
10861,
29898,
275,
29950,
747,
275,
8668,
3253,
23458,
3310,
13,
1678,
500,
13,
1678,
736,
445,
29889,
9157,
29936,
13,
29871,
500,
13,
13,
12,
7918,
13,
12,
334,
7326,
19175,
1697,
29776,
4302,
29899,
29943,
2495,
8470,
972,
14635,
29889,
13,
12,
334,
732,
2457,
29776,
4302,
29899,
29943,
2495,
29889,
13,
12,
334,
732,
386,
5727,
5240,
866,
2451,
13,
12,
3776,
13,
12,
3597,
10567,
679,
1170,
580,
8026,
5240,
866,
2451,
13,
12,
29912,
13,
12,
12,
361,
313,
978,
2804,
1870,
29897,
13,
12,
12,
12,
2457,
1024,
29936,
13,
12,
12,
978,
353,
716,
3992,
4290,
29898,
657,
7061,
2141,
19629,
3285,
29950,
5371,
29902,
11857,
29889,
29950,
5371,
29902,
29918,
26813,
20322,
1001,
29918,
5813,
29918,
12648,
19433,
416,
13,
1678,
1024,
29889,
842,
10861,
29898,
275,
29950,
747,
275,
8668,
3253,
23458,
3310,
13,
1678,
1024,
29889,
842,
29924,
392,
7606,
29898,
3009,
416,
13,
12,
12,
2457,
1024,
29936,
13,
12,
29913,
13,
12,
13,
12,
7918,
13,
12,
334,
1798,
1555,
29880,
5173,
355,
5523,
15731,
2190,
29914,
29933,
2965,
29889,
13,
12,
3776,
13,
12,
9053,
770,
306,
2571,
3962,
10703,
2391,
759,
13,
12,
29912,
13,
12,
29871,
7762,
13,
12,
259,
334,
732,
4149,
1638,
29889,
13660,
29889,
2774,
29873,
29889,
8030,
29879,
29889,
3962,
29937,
8411,
2624,
29898,
990,
29889,
13660,
29889,
2774,
29873,
29889,
8030,
29879,
29889,
2624,
29897,
13,
12,
259,
3776,
13,
12,
29871,
970,
1780,
4386,
2624,
29898,
2624,
1741,
29897,
13,
12,
29871,
426,
13,
12,
1678,
1018,
13,
12,
1678,
426,
13,
4706,
1714,
1999,
29920,
29871,
353,
1714,
12177,
29889,
15450,
1762,
7327,
3552,
1231,
29897,
679,
10358,
29920,
2141,
23433,
3310,
13,
4706,
1714,
289,
293,
29871,
353,
1714,
12177,
29889,
15450,
1762,
7327,
3552,
1231,
29897,
679,
29933,
293,
2141,
23433,
3310,
13,
308,
13,
4706,
1714,
413,
517,
29871,
353,
1714,
12177,
29889,
15450,
1762,
7327,
3552,
1231,
29897,
679,
29968,
609,
265,
398,
1050,
2141,
23433,
3310,
13,
4706,
1714,
474,
2571,
353,
1714,
12177,
29889,
15450,
1762,
7327,
3552,
1231,
29897,
679,
29902,
2571,
2141,
23433,
3310,
13,
13,
12,
418,
565,
313,
2204,
29920,
2804,
1870,
2607,
1999,
29920,
29889,
2848,
580,
1275,
379,
5371,
29902,
11857,
29889,
29950,
5371,
29902,
29918,
13367,
29999,
29918,
19433,
29897,
13,
12,
418,
426,
13,
12,
4706,
1714,
716,
29933,
293,
353,
1870,
29936,
13,
12,
308,
13,
12,
4706,
565,
313,
29950,
5371,
29902,
29889,
21514,
18476,
29918,
8979,
2190,
2607,
413,
517,
2804,
1870,
2607,
474,
2571,
1275,
1870,
29897,
13,
12,
4706,
426,
13,
12,
3986,
15731,
2190,
716,
29902,
2571,
353,
379,
5371,
29902,
11857,
29889,
657,
8979,
2190,
29898,
2204,
29920,
29892,
29895,
517,
416,
13,
12,
3986,
716,
29933,
293,
353,
716,
29902,
2571,
29889,
657,
29933,
2965,
890,
13,
9651,
679,
29902,
2571,
2141,
842,
1917,
29898,
1482,
29902,
2571,
29889,
657,
8979,
2190,
3310,
13,
12,
4706,
500,
13,
12,
308,
13,
3986,
565,
313,
29890,
293,
1275,
1870,
29897,
13,
3986,
426,
13,
9651,
565,
313,
1482,
29933,
293,
1275,
1870,
29897,
849,
5595,
13588,
2686,
3072,
15002,
1005,
704,
424,
3634,
604,
18344,
2152,
1931,
13,
795,
716,
29933,
293,
353,
379,
5371,
29902,
12177,
29889,
657,
29933,
2965,
2831,
13367,
29999,
29898,
2204,
29920,
416,
13,
9651,
679,
29933,
293,
2141,
842,
1917,
29898,
1482,
29933,
293,
416,
13,
3986,
500,
13,
12,
418,
500,
13,
12,
1678,
500,
13,
12,
1678,
4380,
313,
4873,
2451,
263,
29872,
29897,
13,
12,
1678,
426,
13,
12,
418,
28468,
29889,
25442,
703,
348,
519,
304,
4866,
15731,
2190,
29914,
29933,
2965,
29901,
376,
718,
263,
29872,
29889,
28983,
3310,
13,
12,
1678,
500,
13,
12,
1678,
4380,
313,
2451,
321,
29897,
13,
12,
1678,
426,
13,
12,
418,
28468,
29889,
2704,
703,
348,
519,
304,
4469,
29899,
8835,
15731,
2190,
29914,
29933,
2965,
613,
29872,
416,
13,
12,
1678,
500,
13,
12,
29871,
500,
13,
12,
29913,
13,
13,
29871,
7762,
13,
259,
334,
5013,
436,
814,
972,
7361,
5444,
15109,
29889,
13,
259,
3776,
13,
29871,
970,
12231,
1891,
1780,
4386,
9044,
580,
13,
29871,
426,
13,
1678,
1018,
426,
13,
13,
418,
565,
313,
275,
29950,
747,
275,
8668,
3253,
23458,
3101,
13,
418,
426,
13,
4706,
379,
747,
275,
8668,
7061,
263,
353,
313,
29950,
747,
275,
8668,
7061,
29897,
679,
7061,
890,
13,
4706,
263,
29889,
842,
29968,
609,
265,
398,
1050,
3552,
1231,
29897,
657,
29968,
609,
265,
398,
1050,
2141,
23433,
3310,
13,
4706,
263,
29889,
842,
10358,
29920,
3552,
1231,
29897,
657,
10358,
29920,
2141,
23433,
3310,
13,
4706,
263,
29889,
842,
1170,
3552,
1231,
29897,
19629,
2141,
23433,
3310,
13,
4706,
263,
29889,
842,
29968,
290,
358,
279,
3552,
1231,
29897,
657,
29968,
290,
358,
279,
2141,
23433,
3310,
13,
4706,
263,
29889,
842,
29968,
1845,
7661,
3552,
1231,
29897,
657,
29968,
1845,
7661,
2141,
23433,
3310,
13,
13,
4706,
263,
29889,
842,
29933,
804,
3552,
1231,
29897,
657,
29933,
804,
2141,
23433,
3310,
13,
4706,
263,
29889,
842,
29902,
2571,
3552,
1231,
29897,
657,
29902,
2571,
2141,
23433,
3310,
13,
4706,
263,
29889,
842,
29933,
293,
3552,
1231,
29897,
657,
29933,
293,
2141,
23433,
3310,
13,
308,
13,
4706,
263,
29889,
8899,
890,
13,
4706,
8427,
29889,
657,
19058,
6751,
5126,
2141,
6717,
3728,
29898,
1482,
16034,
4297,
3728,
29898,
29875,
29896,
29947,
29876,
29889,
509,
703,
3253,
23458,
6300,
412,
436,
814,
4968,
5709,
4297,
3728,
29889,
11116,
29918,
14605,
26925,
2483,
13,
418,
500,
13,
1678,
500,
13,
1678,
4380,
313,
4873,
2451,
321,
29906,
29897,
13,
1678,
426,
13,
418,
8427,
29889,
657,
19058,
6751,
5126,
2141,
6717,
3728,
29898,
1482,
16034,
4297,
3728,
29898,
29872,
29906,
29889,
28983,
3285,
5709,
4297,
3728,
29889,
11116,
29918,
11432,
2483,
13,
1678,
500,
13,
1678,
4380,
313,
20224,
2451,
321,
29897,
13,
1678,
426,
13,
418,
28468,
29889,
2704,
703,
2704,
1550,
15446,
3211,
613,
29872,
416,
13,
418,
8427,
29889,
657,
19058,
6751,
5126,
2141,
6717,
3728,
29898,
1482,
16034,
4297,
3728,
29898,
29875,
29896,
29947,
29876,
29889,
509,
703,
8263,
29882,
1358,
10005,
5013,
436,
824,
589,
2087,
23458,
29901,
426,
29900,
17671,
29872,
29889,
28983,
25739,
5709,
4297,
3728,
29889,
11116,
29918,
11432,
2483,
13,
1678,
500,
13,
29871,
500,
13,
29913,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
// -*- c-basic-offset: 4 -*-
#ifndef CLICK_FULLNOTEQUEUE_HH
#define CLICK_FULLNOTEQUEUE_HH
#include "notifierqueue.hh"
CLICK_DECLS
/*
=c
Queue
Queue(CAPACITY)
=s storage
stores packets in a FIFO queue
=d
Stores incoming packets in a first-in-first-out queue.
Drops incoming packets if the queue already holds CAPACITY packets.
The default for CAPACITY is 1000.
Queue notifies interested parties when it becomes empty and when a
formerly-empty queue receives a packet. The empty notification takes place
some time after the queue goes empty, to prevent thrashing for queues that
hover around 1 or 2 packets long. This behavior is the same as that of
NotifierQueue. (See QuickNoteQueue for an alternative.) Queue additionally
notifies interested parties that it is non-full, and when a formerly-full
queue gains some free space. In all respects but notification, Queue behaves
exactly like SimpleQueue.
You may also use the old element name "FullNoteQueue".
B<Multithreaded Click note:> Queue is designed to be used in an environment
with at most one concurrent pusher and at most one concurrent puller. Thus,
at most one thread pushes to the Queue at a time and at most one thread pulls
from the Queue at a time. Different threads can push to and pull from the
Queue concurrently, however. See ThreadSafeQueue for a queue that can support
multiple concurrent pushers and pullers.
=h length read-only
Returns the current number of packets in the queue.
=h highwater_length read-only
Returns the maximum number of packets that have ever been in the queue at once.
=h capacity read/write
Returns or sets the queue's capacity.
=h drops read-only
Returns the number of packets dropped by the queue so far.
=h reset_counts write-only
When written, resets the C<drops> and C<highwater_length> counters.
=h reset write-only
When written, drops all packets in the queue.
=a ThreadSafeQueue, QuickNoteQueue, SimpleQueue, NotifierQueue, MixedQueue,
FrontDropQueue */
class FullNoteQueue : public NotifierQueue { public:
FullNoteQueue() CLICK_COLD;
const char *class_name() const { return "Queue"; }
void *cast(const char *);
int configure(Vector<String> &conf, ErrorHandler *) CLICK_COLD;
int live_reconfigure(Vector<String> &conf, ErrorHandler *errh);
#if CLICK_DEBUG_SCHEDULING
void add_handlers() CLICK_COLD;
#endif
void push(int port, Packet *p);
Packet *pull(int port);
protected:
ActiveNotifier _full_note;
inline void push_success(Storage::index_type h, Storage::index_type t,
Storage::index_type nt, Packet *p);
inline void push_failure(Packet *p);
inline Packet *pull_success(Storage::index_type h,
Storage::index_type nh);
inline Packet *pull_failure();
#if CLICK_DEBUG_SCHEDULING
static String read_handler(Element *e, void *user_data) CLICK_COLD;
#endif
};
inline void
FullNoteQueue::push_success(Storage::index_type h, Storage::index_type t,
Storage::index_type nt, Packet *p)
{
_q[t] = p;
set_tail(nt);
int s = size(h, nt);
if (s > _highwater_length)
_highwater_length = s;
_empty_note.wake();
if (s == capacity()) {
_full_note.sleep();
#if HAVE_MULTITHREAD
// Work around race condition between push() and pull().
// We might have just undone pull()'s Notifier::wake() call.
// Easiest lock-free solution: check whether we should wake again!
if (size() < capacity())
_full_note.wake();
#endif
}
}
inline void
FullNoteQueue::push_failure(Packet *p)
{
if (_drops == 0 && _capacity > 0)
click_chatter("%p{element}: overflow", this);
_drops++;
checked_output_push(1, p);
}
inline Packet *
FullNoteQueue::pull_success(Storage::index_type h,
Storage::index_type nh)
{
Packet *p = _q[h];
set_head(nh);
_sleepiness = 0;
_full_note.wake();
return p;
}
inline Packet *
FullNoteQueue::pull_failure()
{
if (_sleepiness >= SLEEPINESS_TRIGGER) {
_empty_note.sleep();
#if HAVE_MULTITHREAD
// Work around race condition between push() and pull().
// We might have just undone push()'s Notifier::wake() call.
// Easiest lock-free solution: check whether we should wake again!
if (size())
_empty_note.wake();
#endif
} else
++_sleepiness;
return 0;
}
CLICK_ENDDECLS
#endif
| [
1,
849,
448,
29930,
29899,
274,
29899,
16121,
29899,
10289,
29901,
29871,
29946,
448,
29930,
29899,
13,
29937,
361,
299,
1389,
17332,
2965,
29968,
29918,
29943,
3299,
12256,
29923,
11144,
4462,
29918,
27590,
13,
29937,
7922,
17332,
2965,
29968,
29918,
29943,
3299,
12256,
29923,
11144,
4462,
29918,
27590,
13,
29937,
2856,
376,
1333,
3709,
9990,
29889,
25446,
29908,
13,
6154,
2965,
29968,
29918,
2287,
6154,
29903,
13,
13,
5515,
13,
29922,
29883,
13,
13,
10620,
13,
10620,
29898,
29907,
3301,
2477,
11937,
29897,
13,
13,
29922,
29879,
8635,
13,
13,
303,
2361,
23912,
297,
263,
9338,
5800,
9521,
13,
13,
29922,
29881,
13,
13,
855,
2361,
23235,
23912,
297,
263,
937,
29899,
262,
29899,
4102,
29899,
449,
9521,
29889,
13,
29928,
307,
567,
23235,
23912,
565,
278,
9521,
2307,
8640,
315,
3301,
2477,
11937,
23912,
29889,
13,
1576,
2322,
363,
315,
3301,
2477,
11937,
338,
29871,
29896,
29900,
29900,
29900,
29889,
13,
13,
10620,
451,
11057,
8852,
13973,
746,
372,
7415,
4069,
322,
746,
263,
13,
24784,
368,
29899,
6310,
9521,
20586,
263,
18203,
29889,
29871,
450,
4069,
12519,
4893,
2058,
13,
5372,
931,
1156,
278,
9521,
5771,
4069,
29892,
304,
5557,
1468,
1161,
292,
363,
712,
1041,
393,
13,
13194,
2820,
29871,
29896,
470,
29871,
29906,
23912,
1472,
29889,
29871,
910,
6030,
338,
278,
1021,
408,
393,
310,
13,
3664,
3709,
10620,
29889,
29871,
313,
13393,
26141,
9842,
10620,
363,
385,
8671,
1846,
29871,
5462,
434,
6124,
635,
13,
1333,
11057,
8852,
13973,
393,
372,
338,
1661,
29899,
8159,
29892,
322,
746,
263,
21510,
29899,
8159,
13,
9990,
330,
2708,
777,
3889,
2913,
29889,
29871,
512,
599,
3390,
29879,
541,
12519,
29892,
5462,
434,
4010,
267,
13,
735,
23617,
763,
12545,
10620,
29889,
13,
13,
3492,
1122,
884,
671,
278,
2030,
1543,
1024,
376,
13658,
9842,
10620,
1642,
13,
13,
29933,
29966,
6857,
389,
949,
287,
16297,
4443,
29901,
29958,
5462,
434,
338,
8688,
304,
367,
1304,
297,
385,
5177,
13,
2541,
472,
1556,
697,
21984,
5503,
261,
322,
472,
1556,
697,
21984,
8206,
261,
29889,
29871,
6549,
29892,
13,
271,
1556,
697,
3244,
5503,
267,
304,
278,
5462,
434,
472,
263,
931,
322,
472,
1556,
697,
3244,
8206,
29879,
13,
3166,
278,
5462,
434,
472,
263,
931,
29889,
29871,
360,
15622,
9717,
508,
5503,
304,
322,
8206,
515,
278,
13,
10620,
21984,
368,
29892,
3138,
29889,
29871,
2823,
10480,
17618,
1725,
10620,
363,
263,
9521,
393,
508,
2304,
13,
20787,
21984,
5503,
414,
322,
8206,
414,
29889,
13,
13,
29922,
29882,
3309,
1303,
29899,
6194,
13,
13,
11609,
29879,
278,
1857,
1353,
310,
23912,
297,
278,
9521,
29889,
13,
13,
29922,
29882,
1880,
13405,
29918,
2848,
1303,
29899,
6194,
13,
13,
11609,
29879,
278,
7472,
1353,
310,
23912,
393,
505,
3926,
1063,
297,
278,
9521,
472,
2748,
29889,
13,
13,
29922,
29882,
13284,
1303,
29914,
3539,
13,
13,
11609,
29879,
470,
6166,
278,
9521,
29915,
29879,
13284,
29889,
13,
13,
29922,
29882,
4441,
567,
1303,
29899,
6194,
13,
13,
11609,
29879,
278,
1353,
310,
23912,
13700,
491,
278,
9521,
577,
2215,
29889,
13,
13,
29922,
29882,
10092,
29918,
2798,
29879,
2436,
29899,
6194,
13,
13,
10401,
3971,
29892,
620,
1691,
278,
315,
29966,
26419,
567,
29958,
322,
315,
29966,
9812,
13405,
29918,
2848,
29958,
2613,
2153,
29889,
13,
13,
29922,
29882,
10092,
2436,
29899,
6194,
13,
13,
10401,
3971,
29892,
4441,
567,
599,
23912,
297,
278,
9521,
29889,
13,
13,
29922,
29874,
10480,
17618,
1725,
10620,
29892,
26141,
9842,
10620,
29892,
12545,
10620,
29892,
2216,
3709,
10620,
29892,
341,
11925,
10620,
29892,
13,
29348,
15063,
10620,
3776,
13,
13,
1990,
14846,
9842,
10620,
584,
970,
2216,
3709,
10620,
426,
970,
29901,
13,
13,
1678,
14846,
9842,
10620,
580,
17332,
2965,
29968,
29918,
3217,
10249,
29936,
13,
13,
1678,
1040,
1373,
334,
1990,
29918,
978,
580,
1040,
12,
12,
29912,
736,
376,
10620,
1769,
500,
13,
1678,
1780,
334,
4384,
29898,
3075,
1373,
334,
416,
13,
13,
1678,
938,
10822,
29898,
12877,
29966,
1231,
29958,
669,
5527,
29892,
4829,
4598,
4748,
17332,
2965,
29968,
29918,
3217,
10249,
29936,
13,
1678,
938,
5735,
29918,
276,
17591,
29898,
12877,
29966,
1231,
29958,
669,
5527,
29892,
4829,
4598,
334,
3127,
29882,
416,
13,
29937,
361,
17332,
2965,
29968,
29918,
18525,
29918,
29903,
3210,
3352,
13309,
4214,
13,
1678,
1780,
788,
29918,
3179,
9306,
580,
17332,
2965,
29968,
29918,
3217,
10249,
29936,
13,
29937,
15224,
13,
13,
1678,
1780,
5503,
29898,
524,
2011,
29892,
18744,
300,
334,
29886,
416,
13,
1678,
18744,
300,
334,
26746,
29898,
524,
2011,
416,
13,
13,
29871,
6364,
29901,
13,
13,
1678,
10731,
3664,
3709,
903,
8159,
29918,
6812,
29936,
13,
13,
1678,
10583,
1780,
5503,
29918,
8698,
29898,
10486,
1057,
2248,
29918,
1853,
298,
29892,
26162,
1057,
2248,
29918,
1853,
260,
29892,
13,
12,
12,
12,
268,
26162,
1057,
2248,
29918,
1853,
302,
29873,
29892,
18744,
300,
334,
29886,
416,
13,
1678,
10583,
1780,
5503,
29918,
14057,
545,
29898,
16638,
300,
334,
29886,
416,
13,
1678,
10583,
18744,
300,
334,
26746,
29918,
8698,
29898,
10486,
1057,
2248,
29918,
1853,
298,
29892,
13,
12,
12,
12,
12,
10486,
1057,
2248,
29918,
1853,
302,
29882,
416,
13,
1678,
10583,
18744,
300,
334,
26746,
29918,
14057,
545,
890,
13,
13,
29937,
361,
17332,
2965,
29968,
29918,
18525,
29918,
29903,
3210,
3352,
13309,
4214,
13,
1678,
2294,
1714,
1303,
29918,
13789,
29898,
2642,
334,
29872,
29892,
1780,
334,
1792,
29918,
1272,
29897,
17332,
2965,
29968,
29918,
3217,
10249,
29936,
13,
29937,
15224,
13,
13,
3400,
13,
13,
14764,
1780,
13,
13658,
9842,
10620,
1057,
5910,
29918,
8698,
29898,
10486,
1057,
2248,
29918,
1853,
298,
29892,
26162,
1057,
2248,
29918,
1853,
260,
29892,
13,
12,
12,
12,
1678,
26162,
1057,
2248,
29918,
1853,
302,
29873,
29892,
18744,
300,
334,
29886,
29897,
13,
29912,
13,
1678,
903,
29939,
29961,
29873,
29962,
353,
282,
29936,
13,
1678,
731,
29918,
18237,
29898,
593,
416,
13,
13,
1678,
938,
269,
353,
2159,
29898,
29882,
29892,
302,
29873,
416,
13,
1678,
565,
313,
29879,
1405,
903,
9812,
13405,
29918,
2848,
29897,
13,
12,
29918,
9812,
13405,
29918,
2848,
353,
269,
29936,
13,
13,
1678,
903,
6310,
29918,
6812,
29889,
29893,
1296,
890,
13,
13,
1678,
565,
313,
29879,
1275,
13284,
3101,
426,
13,
12,
29918,
8159,
29918,
6812,
29889,
17059,
890,
13,
29937,
361,
379,
7520,
29923,
29918,
29924,
8647,
13054,
16310,
13,
12,
458,
5244,
2820,
8175,
4195,
1546,
5503,
580,
322,
8206,
2141,
13,
12,
458,
1334,
1795,
505,
925,
563,
650,
8206,
580,
29915,
29879,
2216,
3709,
1057,
29893,
1296,
580,
1246,
29889,
13,
12,
458,
382,
6840,
342,
7714,
29899,
9021,
1650,
29901,
1423,
3692,
591,
881,
281,
1296,
1449,
29991,
13,
12,
361,
313,
2311,
580,
529,
13284,
3101,
13,
12,
1678,
903,
8159,
29918,
6812,
29889,
29893,
1296,
890,
13,
29937,
15224,
13,
1678,
500,
13,
29913,
13,
13,
14764,
1780,
13,
13658,
9842,
10620,
1057,
5910,
29918,
14057,
545,
29898,
16638,
300,
334,
29886,
29897,
13,
29912,
13,
1678,
565,
9423,
26419,
567,
1275,
29871,
29900,
2607,
903,
5030,
5946,
1405,
29871,
29900,
29897,
13,
12,
3808,
29918,
305,
2620,
11702,
29886,
29912,
5029,
6177,
11969,
613,
445,
416,
13,
1678,
903,
26419,
567,
9107,
13,
1678,
7120,
29918,
4905,
29918,
5910,
29898,
29896,
29892,
282,
416,
13,
29913,
13,
13,
14764,
18744,
300,
334,
13,
13658,
9842,
10620,
1057,
26746,
29918,
8698,
29898,
10486,
1057,
2248,
29918,
1853,
298,
29892,
13,
12,
12,
12,
1678,
26162,
1057,
2248,
29918,
1853,
302,
29882,
29897,
13,
29912,
13,
1678,
18744,
300,
334,
29886,
353,
903,
29939,
29961,
29882,
1385,
13,
1678,
731,
29918,
2813,
29898,
29876,
29882,
416,
13,
13,
1678,
903,
17059,
3335,
353,
29871,
29900,
29936,
13,
1678,
903,
8159,
29918,
6812,
29889,
29893,
1296,
890,
13,
1678,
736,
282,
29936,
13,
29913,
13,
13,
14764,
18744,
300,
334,
13,
13658,
9842,
10620,
1057,
26746,
29918,
14057,
545,
580,
13,
29912,
13,
1678,
565,
9423,
17059,
3335,
6736,
317,
1307,
15488,
8895,
1799,
29918,
29911,
22789,
17070,
29897,
426,
13,
4706,
903,
6310,
29918,
6812,
29889,
17059,
890,
13,
29937,
361,
379,
7520,
29923,
29918,
29924,
8647,
13054,
16310,
13,
12,
458,
5244,
2820,
8175,
4195,
1546,
5503,
580,
322,
8206,
2141,
13,
12,
458,
1334,
1795,
505,
925,
563,
650,
5503,
580,
29915,
29879,
2216,
3709,
1057,
29893,
1296,
580,
1246,
29889,
13,
12,
458,
382,
6840,
342,
7714,
29899,
9021,
1650,
29901,
1423,
3692,
591,
881,
281,
1296,
1449,
29991,
13,
12,
361,
313,
2311,
3101,
13,
12,
1678,
903,
6310,
29918,
6812,
29889,
29893,
1296,
890,
13,
29937,
15224,
13,
1678,
500,
1683,
13,
12,
1817,
29918,
17059,
3335,
29936,
13,
1678,
736,
29871,
29900,
29936,
13,
29913,
13,
13,
6154,
2965,
29968,
29918,
11794,
2287,
6154,
29903,
13,
29937,
15224,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
import uuid
from nose.tools import eq_
from kazoo.testing import KazooTestCase
class KazooPartyTests(KazooTestCase):
def setUp(self):
super(KazooPartyTests, self).setUp()
self.path = "/" + uuid.uuid4().hex
def test_party(self):
parties = [self.client.Party(self.path, "p%s" % i)
for i in range(5)]
one_party = parties[0]
eq_(list(one_party), [])
eq_(len(one_party), 0)
participants = set()
for party in parties:
party.join()
participants.add(party.data.decode('utf-8'))
eq_(set(party), participants)
eq_(len(party), len(participants))
for party in parties:
party.leave()
participants.remove(party.data.decode('utf-8'))
eq_(set(party), participants)
eq_(len(party), len(participants))
def test_party_reuse_node(self):
party = self.client.Party(self.path, "p1")
self.client.ensure_path(self.path)
self.client.create(party.create_path)
party.join()
self.assertTrue(party.participating)
party.leave()
self.assertFalse(party.participating)
self.assertEqual(len(party), 0)
def test_party_vanishing_node(self):
party = self.client.Party(self.path, "p1")
party.join()
self.assertTrue(party.participating)
self.client.delete(party.create_path)
party.leave()
self.assertFalse(party.participating)
self.assertEqual(len(party), 0)
class KazooShallowPartyTests(KazooTestCase):
def setUp(self):
super(KazooShallowPartyTests, self).setUp()
self.path = "/" + uuid.uuid4().hex
def test_party(self):
parties = [self.client.ShallowParty(self.path, "p%s" % i)
for i in range(5)]
one_party = parties[0]
eq_(list(one_party), [])
eq_(len(one_party), 0)
participants = set()
for party in parties:
party.join()
participants.add(party.data.decode('utf-8'))
eq_(set(party), participants)
eq_(len(party), len(participants))
for party in parties:
party.leave()
participants.remove(party.data.decode('utf-8'))
eq_(set(party), participants)
eq_(len(party), len(participants))
| [
1,
1053,
318,
5416,
13,
13,
3166,
26414,
29889,
8504,
1053,
11594,
29918,
13,
13,
3166,
413,
834,
3634,
29889,
13424,
1053,
15198,
3634,
3057,
8259,
13,
13,
13,
1990,
15198,
3634,
7439,
29891,
24376,
29898,
29968,
834,
3634,
3057,
8259,
1125,
13,
1678,
822,
731,
3373,
29898,
1311,
1125,
13,
4706,
2428,
29898,
29968,
834,
3634,
7439,
29891,
24376,
29892,
1583,
467,
842,
3373,
580,
13,
4706,
1583,
29889,
2084,
353,
5591,
29908,
718,
318,
5416,
29889,
25118,
29946,
2141,
20970,
13,
13,
1678,
822,
1243,
29918,
22633,
29898,
1311,
1125,
13,
4706,
13973,
353,
518,
1311,
29889,
4645,
29889,
7439,
29891,
29898,
1311,
29889,
2084,
29892,
376,
29886,
29995,
29879,
29908,
1273,
474,
29897,
13,
462,
259,
363,
474,
297,
3464,
29898,
29945,
4638,
13,
13,
4706,
697,
29918,
22633,
353,
13973,
29961,
29900,
29962,
13,
13,
4706,
11594,
23538,
1761,
29898,
650,
29918,
22633,
511,
518,
2314,
13,
4706,
11594,
23538,
2435,
29898,
650,
29918,
22633,
511,
29871,
29900,
29897,
13,
13,
4706,
27138,
353,
731,
580,
13,
4706,
363,
6263,
297,
13973,
29901,
13,
9651,
6263,
29889,
7122,
580,
13,
9651,
27138,
29889,
1202,
29898,
22633,
29889,
1272,
29889,
13808,
877,
9420,
29899,
29947,
8785,
13,
13,
9651,
11594,
23538,
842,
29898,
22633,
511,
27138,
29897,
13,
9651,
11594,
23538,
2435,
29898,
22633,
511,
7431,
29898,
1595,
12654,
1934,
876,
13,
13,
4706,
363,
6263,
297,
13973,
29901,
13,
9651,
6263,
29889,
280,
1351,
580,
13,
9651,
27138,
29889,
5992,
29898,
22633,
29889,
1272,
29889,
13808,
877,
9420,
29899,
29947,
8785,
13,
13,
9651,
11594,
23538,
842,
29898,
22633,
511,
27138,
29897,
13,
9651,
11594,
23538,
2435,
29898,
22633,
511,
7431,
29898,
1595,
12654,
1934,
876,
13,
13,
1678,
822,
1243,
29918,
22633,
29918,
276,
1509,
29918,
3177,
29898,
1311,
1125,
13,
4706,
6263,
353,
1583,
29889,
4645,
29889,
7439,
29891,
29898,
1311,
29889,
2084,
29892,
376,
29886,
29896,
1159,
13,
4706,
1583,
29889,
4645,
29889,
7469,
29918,
2084,
29898,
1311,
29889,
2084,
29897,
13,
4706,
1583,
29889,
4645,
29889,
3258,
29898,
22633,
29889,
3258,
29918,
2084,
29897,
13,
4706,
6263,
29889,
7122,
580,
13,
4706,
1583,
29889,
9294,
5574,
29898,
22633,
29889,
1595,
12654,
1218,
29897,
13,
4706,
6263,
29889,
280,
1351,
580,
13,
4706,
1583,
29889,
9294,
8824,
29898,
22633,
29889,
1595,
12654,
1218,
29897,
13,
4706,
1583,
29889,
9294,
9843,
29898,
2435,
29898,
22633,
511,
29871,
29900,
29897,
13,
13,
1678,
822,
1243,
29918,
22633,
29918,
3703,
14424,
29918,
3177,
29898,
1311,
1125,
13,
4706,
6263,
353,
1583,
29889,
4645,
29889,
7439,
29891,
29898,
1311,
29889,
2084,
29892,
376,
29886,
29896,
1159,
13,
4706,
6263,
29889,
7122,
580,
13,
4706,
1583,
29889,
9294,
5574,
29898,
22633,
29889,
1595,
12654,
1218,
29897,
13,
4706,
1583,
29889,
4645,
29889,
8143,
29898,
22633,
29889,
3258,
29918,
2084,
29897,
13,
4706,
6263,
29889,
280,
1351,
580,
13,
4706,
1583,
29889,
9294,
8824,
29898,
22633,
29889,
1595,
12654,
1218,
29897,
13,
4706,
1583,
29889,
9294,
9843,
29898,
2435,
29898,
22633,
511,
29871,
29900,
29897,
13,
13,
13,
1990,
15198,
3634,
2713,
9536,
7439,
29891,
24376,
29898,
29968,
834,
3634,
3057,
8259,
1125,
13,
1678,
822,
731,
3373,
29898,
1311,
1125,
13,
4706,
2428,
29898,
29968,
834,
3634,
2713,
9536,
7439,
29891,
24376,
29892,
1583,
467,
842,
3373,
580,
13,
4706,
1583,
29889,
2084,
353,
5591,
29908,
718,
318,
5416,
29889,
25118,
29946,
2141,
20970,
13,
13,
1678,
822,
1243,
29918,
22633,
29898,
1311,
1125,
13,
4706,
13973,
353,
518,
1311,
29889,
4645,
29889,
2713,
9536,
7439,
29891,
29898,
1311,
29889,
2084,
29892,
376,
29886,
29995,
29879,
29908,
1273,
474,
29897,
13,
462,
259,
363,
474,
297,
3464,
29898,
29945,
4638,
13,
13,
4706,
697,
29918,
22633,
353,
13973,
29961,
29900,
29962,
13,
13,
4706,
11594,
23538,
1761,
29898,
650,
29918,
22633,
511,
518,
2314,
13,
4706,
11594,
23538,
2435,
29898,
650,
29918,
22633,
511,
29871,
29900,
29897,
13,
13,
4706,
27138,
353,
731,
580,
13,
4706,
363,
6263,
297,
13973,
29901,
13,
9651,
6263,
29889,
7122,
580,
13,
9651,
27138,
29889,
1202,
29898,
22633,
29889,
1272,
29889,
13808,
877,
9420,
29899,
29947,
8785,
13,
13,
9651,
11594,
23538,
842,
29898,
22633,
511,
27138,
29897,
13,
9651,
11594,
23538,
2435,
29898,
22633,
511,
7431,
29898,
1595,
12654,
1934,
876,
13,
13,
4706,
363,
6263,
297,
13973,
29901,
13,
9651,
6263,
29889,
280,
1351,
580,
13,
9651,
27138,
29889,
5992,
29898,
22633,
29889,
1272,
29889,
13808,
877,
9420,
29899,
29947,
8785,
13,
13,
9651,
11594,
23538,
842,
29898,
22633,
511,
27138,
29897,
13,
9651,
11594,
23538,
2435,
29898,
22633,
511,
7431,
29898,
1595,
12654,
1934,
876,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
Minimizing Finite State Automaton
I am trying to minimize this DFA: http://img145.imageshack.us/img145/3006/dfac.png
Here's my minimized DFA: http://img195.imageshack.us/img195/4131/mdfa.png
Am I correct?
Thanks
P.S.-This is homework. We are allowed to discuss the homework. I am not asking for the answer, I just want to know if I am on the right track or not as this is my first time dealing with state machines.
A:
No your proposed solution is not correct; you see the dfa you have constructed can accept the (otherwise non-acceptable) string "aac", that means you can't join states (11,15,17) and (15,17).
Looking at the original DFA I cannot think of any solution with less than 6 states; but yet again that means nothing ;).
| [
1,
660,
29901,
13,
13,
8140,
326,
5281,
4231,
568,
4306,
15854,
14114,
13,
13,
29902,
626,
1811,
304,
6260,
675,
445,
360,
4519,
29901,
1732,
597,
2492,
29896,
29946,
29945,
29889,
8346,
29882,
547,
29889,
375,
29914,
2492,
29896,
29946,
29945,
29914,
29941,
29900,
29900,
29953,
29914,
2176,
562,
29889,
2732,
13,
10605,
29915,
29879,
590,
6260,
1891,
360,
4519,
29901,
1732,
597,
2492,
29896,
29929,
29945,
29889,
8346,
29882,
547,
29889,
375,
29914,
2492,
29896,
29929,
29945,
29914,
29946,
29896,
29941,
29896,
29914,
29885,
2176,
29874,
29889,
2732,
13,
6833,
306,
1959,
29973,
13,
16894,
13,
29925,
29889,
29903,
9229,
4013,
338,
3271,
1287,
29889,
1334,
526,
6068,
304,
5353,
278,
3271,
1287,
29889,
306,
626,
451,
6721,
363,
278,
1234,
29892,
306,
925,
864,
304,
1073,
565,
306,
626,
373,
278,
1492,
5702,
470,
451,
408,
445,
338,
590,
937,
931,
16743,
411,
2106,
14884,
29889,
13,
13,
29909,
29901,
13,
13,
3782,
596,
7972,
1650,
338,
451,
1959,
29936,
366,
1074,
278,
4489,
29874,
366,
505,
13319,
508,
3544,
278,
313,
1228,
3538,
1661,
29899,
16044,
519,
29897,
1347,
376,
29874,
562,
613,
393,
2794,
366,
508,
29915,
29873,
5988,
5922,
313,
29896,
29896,
29892,
29896,
29945,
29892,
29896,
29955,
29897,
322,
313,
29896,
29945,
29892,
29896,
29955,
467,
13,
14959,
292,
472,
278,
2441,
360,
4519,
306,
2609,
1348,
310,
738,
1650,
411,
3109,
1135,
29871,
29953,
5922,
29936,
541,
3447,
1449,
393,
2794,
3078,
2056,
467,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Chief Mark Kessler posted a video to YouTube stating he had offended viewers in a previous video with his language
The 2-minute, 45-second posting on the Internet site YouTube starts as an apology but quickly turns to profane language and the use of automatic weapons. The video was apparently recorded on a remote stripping road.
"Well, I guess I upset a few people the other day when I made a video. I used some profanity and some people didn't like that," Kessler says in the video, wearing a black T-shirt and black baseball hat.
In the first 35 seconds the chief continues, saying, "Well, I'm here to say I'm sorry, OK. I didn't mean to upset anybody or insult anybody or hurt anyone's feelings. So please accept this as my sincere apology."
After walking out of the camera's view and then back into view, Kessler said, "Yeah, I don't think so. This boy don't roll that way ... for all you people out there who cried and cried about, 'Oh, I used profanity,' f--- you."
Kessler then fires a barrage from an automatic weapon, saying, "Did ya get that, did ya get that one?"
The video had 3,280 views on YouTube as of 10 p.m. Monday.
Gilberton Mayor Mary Lou Hannon said Monday night that she could not comment on the video because she hadn't seen it yet.
She said she learned of the posting Sunday and plans to view it today along with the borough secretary and borough council members.
"I'll go from there," Hannon said.
She said that what Kessler does when he is off duty is not governed by Gilberton while he is not representing the borough. "What he does in his private life, we have no control of," Hannon said.
When contacted Monday night, borough council President Dan Malloy also said he had not seen the posting and had no comment.
"I know nothing about this, thank you for calling," Malloy said.
The video is not the first time Kessler has been in the news.
In August 2011, Kessler was allegedly shot in his hand with his own gun while he was off duty at a Girardville tavern.
Kessler, according to state police at Frackville, was inside the Second Street Pub when a scuffle broke out between several patrons. For reasons unknown to police, Kessler got involved and at some point, a pistol he was carrying discharged, shooting him in the hand.
Kessler was treated at the former Saint Catherine Medical Center Fountain Springs.
Police recently said that the incident remains under investigation.
In December 2012, Kessler shot a dog that was allegedly attacking him in the borough.
At the time, Hannon said, Kessler went to the home of Greg and Rita Grove on Main Street in Maizeville to handle a problem with a parked vehicle. When Kessler knocked on the door, Hannon said Greg Grove opened the door and the couple's Labrador retriever ran out and attacked Kessler.
Fearing for his safety, Kessler shot the animal, Hannon said, adding that the dog was taken to a local animal hospital, where it had to be euthanized.
Hannon said a neighbor across the street witnessed the incident and everything appears to be "on the up and up."
"He (Grove) knew he was wrong. He knew he should have had the dog under control," Hannon said at the time.
Kessler was not hurt, Hannon said.
Kessler was not available for comment Monday. Hannon said the chief has been on vacation since last week and will not return to the area until next week.
Kessler is also a member of the North Schuylkill school board. School district officials were not available for comment Monday night. | [
1,
14546,
4485,
476,
404,
1358,
8059,
263,
4863,
304,
14711,
23659,
540,
750,
1283,
2760,
1776,
414,
297,
263,
3517,
4863,
411,
670,
4086,
13,
13,
1576,
29871,
29906,
29899,
1195,
1082,
29892,
29871,
29946,
29945,
29899,
7496,
16742,
373,
278,
4685,
3268,
14711,
8665,
408,
385,
3095,
3002,
541,
9098,
12169,
304,
2600,
1662,
4086,
322,
278,
671,
310,
18428,
25340,
29889,
450,
4863,
471,
13229,
10478,
373,
263,
7592,
10076,
3262,
6520,
29889,
13,
13,
29908,
11284,
29892,
306,
4140,
306,
24081,
300,
263,
2846,
2305,
278,
916,
2462,
746,
306,
1754,
263,
4863,
29889,
306,
1304,
777,
2600,
273,
537,
322,
777,
2305,
3282,
29915,
29873,
763,
393,
1699,
476,
404,
1358,
4083,
297,
278,
4863,
29892,
591,
4362,
263,
4628,
323,
29899,
845,
2728,
322,
4628,
21573,
3056,
29889,
13,
13,
797,
278,
937,
29871,
29941,
29945,
6923,
278,
9087,
18172,
29892,
5934,
29892,
376,
11284,
29892,
306,
29915,
29885,
1244,
304,
1827,
306,
29915,
29885,
7423,
29892,
9280,
29889,
306,
3282,
29915,
29873,
2099,
304,
24081,
300,
16357,
470,
1663,
499,
16357,
470,
21682,
5019,
29915,
29879,
21737,
29889,
1105,
3113,
3544,
445,
408,
590,
269,
3742,
406,
3095,
3002,
1213,
13,
13,
13555,
22049,
714,
310,
278,
10656,
29915,
29879,
1776,
322,
769,
1250,
964,
1776,
29892,
476,
404,
1358,
1497,
29892,
376,
29979,
29872,
801,
29892,
306,
1016,
29915,
29873,
1348,
577,
29889,
910,
8023,
1016,
29915,
29873,
9679,
393,
982,
2023,
363,
599,
366,
2305,
714,
727,
1058,
10680,
322,
10680,
1048,
29892,
525,
9048,
29892,
306,
1304,
2600,
273,
537,
5501,
285,
5634,
366,
1213,
13,
13,
29968,
404,
1358,
769,
24237,
263,
2594,
6617,
515,
385,
18428,
28639,
29892,
5934,
29892,
376,
9260,
9343,
679,
393,
29892,
1258,
9343,
679,
393,
697,
3026,
13,
13,
1576,
4863,
750,
29871,
29941,
29892,
29906,
29947,
29900,
8386,
373,
14711,
408,
310,
29871,
29896,
29900,
282,
29889,
29885,
29889,
27822,
29889,
13,
13,
29954,
309,
495,
880,
22186,
6182,
4562,
13889,
265,
1497,
27822,
4646,
393,
1183,
1033,
451,
3440,
373,
278,
4863,
1363,
1183,
27222,
29915,
29873,
3595,
372,
3447,
29889,
13,
13,
13468,
1497,
1183,
10972,
310,
278,
16742,
16340,
322,
13900,
304,
1776,
372,
9826,
3412,
411,
278,
9820,
820,
28274,
322,
9820,
820,
18701,
5144,
29889,
13,
13,
29908,
29902,
29915,
645,
748,
515,
727,
1699,
13889,
265,
1497,
29889,
13,
13,
13468,
1497,
393,
825,
476,
404,
1358,
947,
746,
540,
338,
1283,
13360,
338,
451,
4095,
287,
491,
11788,
495,
880,
1550,
540,
338,
451,
15783,
278,
9820,
820,
29889,
376,
5618,
540,
947,
297,
670,
2024,
2834,
29892,
591,
505,
694,
2761,
310,
1699,
13889,
265,
1497,
29889,
13,
13,
10401,
6958,
287,
27822,
4646,
29892,
9820,
820,
18701,
7178,
3951,
3792,
2376,
884,
1497,
540,
750,
451,
3595,
278,
16742,
322,
750,
694,
3440,
29889,
13,
13,
29908,
29902,
1073,
3078,
1048,
445,
29892,
6452,
366,
363,
5432,
1699,
3792,
2376,
1497,
29889,
13,
13,
1576,
4863,
338,
451,
278,
937,
931,
476,
404,
1358,
756,
1063,
297,
278,
9763,
29889,
13,
13,
797,
3111,
29871,
29906,
29900,
29896,
29896,
29892,
476,
404,
1358,
471,
16831,
23244,
10322,
297,
670,
1361,
411,
670,
1914,
13736,
1550,
540,
471,
1283,
13360,
472,
263,
21572,
538,
4909,
11062,
3228,
29889,
13,
13,
29968,
404,
1358,
29892,
5034,
304,
2106,
10974,
472,
7347,
384,
4909,
29892,
471,
2768,
278,
6440,
7103,
8042,
746,
263,
885,
21897,
14455,
714,
1546,
3196,
2373,
12628,
29889,
1152,
9590,
9815,
304,
10974,
29892,
476,
404,
1358,
2355,
9701,
322,
472,
777,
1298,
29892,
263,
282,
19639,
540,
471,
19436,
766,
25389,
287,
29892,
27904,
1075,
297,
278,
1361,
29889,
13,
13,
29968,
404,
1358,
471,
14914,
472,
278,
4642,
4107,
21688,
20795,
7817,
383,
792,
475,
14314,
886,
29889,
13,
13,
7713,
625,
10325,
1497,
393,
278,
15134,
9242,
1090,
22522,
29889,
13,
13,
797,
5846,
29871,
29906,
29900,
29896,
29906,
29892,
476,
404,
1358,
10322,
263,
11203,
393,
471,
16831,
23244,
5337,
292,
1075,
297,
278,
9820,
820,
29889,
13,
13,
4178,
278,
931,
29892,
13889,
265,
1497,
29892,
476,
404,
1358,
3512,
304,
278,
3271,
310,
12051,
322,
390,
2028,
6070,
345,
373,
4241,
7103,
297,
3219,
675,
4909,
304,
4386,
263,
1108,
411,
263,
14089,
287,
19716,
29889,
1932,
476,
404,
1358,
18232,
287,
373,
278,
3050,
29892,
13889,
265,
1497,
12051,
6070,
345,
6496,
278,
3050,
322,
278,
7303,
29915,
29879,
12016,
29878,
3136,
5663,
347,
369,
6350,
714,
322,
22630,
476,
404,
1358,
29889,
13,
13,
29943,
799,
292,
363,
670,
15332,
29892,
476,
404,
1358,
10322,
278,
13019,
29892,
13889,
265,
1497,
29892,
4417,
393,
278,
11203,
471,
4586,
304,
263,
1887,
13019,
13457,
29892,
988,
372,
750,
304,
367,
321,
2806,
273,
1891,
29889,
13,
13,
29950,
23453,
1497,
263,
12307,
4822,
278,
11952,
16277,
287,
278,
15134,
322,
4129,
5692,
304,
367,
376,
265,
278,
701,
322,
701,
1213,
13,
13,
29908,
3868,
313,
29954,
307,
345,
29897,
6363,
540,
471,
2743,
29889,
940,
6363,
540,
881,
505,
750,
278,
11203,
1090,
2761,
1699,
13889,
265,
1497,
472,
278,
931,
29889,
13,
13,
29968,
404,
1358,
471,
451,
21682,
29892,
13889,
265,
1497,
29889,
13,
13,
29968,
404,
1358,
471,
451,
3625,
363,
3440,
27822,
29889,
13889,
265,
1497,
278,
9087,
756,
1063,
373,
11757,
362,
1951,
1833,
4723,
322,
674,
451,
736,
304,
278,
4038,
2745,
2446,
4723,
29889,
13,
13,
29968,
404,
1358,
338,
884,
263,
4509,
310,
278,
4644,
1102,
29884,
2904,
21174,
3762,
7613,
29889,
4523,
6474,
24921,
892,
451,
3625,
363,
3440,
27822,
4646,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
2 Replies
Your Orthographic size is 5. This is half the world units seen by the camera, so the camera sees 10 units high. You have pixel to Unit set to 100. I assume your 768 is your height. If so the height of your sprite is 768 / 100 = 7.68. So your sprite is not 10 units high and therefore will not fill the screen. | [
1,
29871,
29906,
10088,
3687,
13,
13,
10858,
23757,
12122,
2159,
338,
29871,
29945,
29889,
910,
338,
4203,
278,
3186,
10340,
3595,
491,
278,
10656,
29892,
577,
278,
10656,
18553,
29871,
29896,
29900,
10340,
1880,
29889,
887,
505,
15526,
304,
13223,
731,
304,
29871,
29896,
29900,
29900,
29889,
306,
5251,
596,
29871,
29955,
29953,
29947,
338,
596,
3171,
29889,
960,
577,
278,
3171,
310,
596,
29227,
338,
29871,
29955,
29953,
29947,
847,
29871,
29896,
29900,
29900,
353,
29871,
29955,
29889,
29953,
29947,
29889,
1105,
596,
29227,
338,
451,
29871,
29896,
29900,
10340,
1880,
322,
5480,
674,
451,
5445,
278,
4315,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Politischer Immaterialismus Stefan Höltgen
Ein Interview mit dem Piratenpartei-Mitglied Martin Haase
Martin Haase ist Professor für Romanistik an der Universität Bamberg, Vorstandsmitglied beim Chaos Computer Club, Mitarbeiter bei Wikipedia, Mitglied beim FoeBuD e.V. und seit kurzem auch bei der Piratenpartei. Telepolis-Autor Stefan Höltgen hat ihn eine Woche nach der Bundestagswahl getroffen und mit ihm über Netzpolitik, die Verbindung von Geisteswissenschaften und Bürgerrechten und natürlich seine Piraten-Existenz gesprochen.
Professor Martin Haase
Herr Professor Haase, wie war denn die Woche nach der Bundestagswahl für Sie?
Martin Haase: Die war insofern nicht ruhig, weil ich mich wieder in die akademische Arbeit gestürzt habe. Das war also schon mal ganz anders als zu der Zeit vor der Wahl – ein richtiges Kontrastprogramm, wenn man so will. Von der Wahl war in dem Moment gar nichts mehr zu spüren.
Wir fragen natürlich auch, weil Sie ja prominentes Mitglieder der Piratenpartei sind … Gab es Anlass zum Feiern?
Martin Haase: Nun, es gab natürlich die Wahlparty am Wahlabend, bei der die Stimmung allerdings auffallend gedämpft war. Ich kann mir das nicht ganz erklären. Viele Leute hatten wohl mit einem besseren Ergebnis für die Piraten gerechnet. Und das Ergebnis der Bundestagswahl war insgesamt ja nicht so ausgefallen, dass man besondere Begeisterung an den Tag legen müsste. Für die Piraten war es aber schon sensationell. Über 2% aus dem Stand zu erreichen, also 850.000 Leute zu finden, die die Piraten wählen, von denen sie zu Anfang des Jahres vielleicht noch nie etwas gehört hatten, wäre natürlich schon ein Anlass zu feiern gewesen.
Im Internet hat es für die Piratenpartei besser ausgesehen. In etlichen Portalen hatten sie sogar die absolute Mehrheit. Hat man diesen Effekt vielleicht überschätzt?
Martin Haase: Nein, ich glaube, es war jedem klar, dass das Internet nicht das widerspiegelt, was sich außerhalb des Netzes, sozusagen „im realen Leben“ tut. Nur wurde die Schätzung in der Euphorie, die alle hatten, etwas höher angesetzt. Ich selbst habe die Piraten sogar bei 3% gesehen. Aber selbst 2% sind wie gesagt kein schlechtes Ergebnis, oder um es anders zu formulieren: Es ist das schlechteste Ergebnis der Piraten bei einer Bundestagswahl (lacht). Denn es soll sich ja noch steigern. Aber weil es eben gleichzeitig auch das beste Ergebnis war, kann man schon zufrieden sein.
Sie sind selbst erst seit ein paar Monaten bei den Piraten. Wie sind Sie denn zur Parteimitgliedschaft gekommen?
Martin Haase: Das ist eine längere Geschichte. Ich mache ja schon länger Netzpolitik und Fragen der IT-Grundrechte beschäftigen mich seit den 90er Jahren. Ich kannte die Piraten seit ihrer Gründung; so gesehen war es also naheliegend. Ich wollte mich aber zunächst erstmal davon überzeugen, ob dort seriöse politische Arbeit gemacht wird. Der Beitrittsgrund waren dann die Ereignisse im Mai dieses Jahres, als es um das Das ist eine längere Geschichte. Ich mache ja schon länger Netzpolitik und Fragen der IT-Grundrechte beschäftigen mich seit den 90er Jahren. Ich kannte die Piraten seit ihrer Gründung; so gesehen war es also naheliegend. Ich wollte mich aber zunächst erstmal davon überzeugen, ob dort seriöse politische Arbeit gemacht wird. Der Beitrittsgrund waren dann die Ereignisse im Mai dieses Jahres, als es um das Zugangserschwerungsgesetz ging, das viele "Zensurerleichterungsgesetz" nennen. Da gab es einen Termin mit Martin Dörmann , dem Berichterstatter der SPD, der „das Internet“ eingeladen hatte – und ich war einer „vom Internet“.
Diese Veranstaltung hat mich in mehrfacher Weise richtiggehend wütend gemacht, weil dort relativ schnell deutlich wurde, dass bei der SPD nicht einmal eine Bereitschaft zuzuhören da war. Und obwohl auf der Veranstaltung vereinbart wurde, dass es keine Presseberichterstattung geben sollte, wurde hinterher von der SPD eine Pressemitteilung verschickt, in der diese dann schrieb: „Wir sind auf die Bedenken der Internet-Community eingegangen und diese sind in den Gesetzesentwurf eingeflossen.“ Das stimmte natürlich gar nicht. Die Dinge (z.B. die Befristung des Gesetzes oder die Überprüfung der nach wie vor geheimen Sperrlisten durch eine Expertengruppe), auf die tatsächlich eingegangen worden war, waren den Gesprächspartnern vorher in den Mund gelegt worden, und man hatte sich erhofft, dass dem einfach zugestimmt würde, was aber nicht passiert ist. Insofern wurde in der Berichterstattung, die es wie gesagt ja sowieso nicht geben sollte, die Sachlage auch noch einmal völlig verzerrt dargestellt.
Hat die SPD dann quasi mit Ihnen als „dem Internet“ bloß PR machen wollen?
Martin Haase: Nun, die Argumente der SPD lauteten, dass man Frau von der Leyen keine „Steilvorlage“ für den Wahlkampf bieten wolle und dass man als Regierungspartei unmöglich gegen den Gesetzesentwurf stimmen könne. Eine Auseinandersetzung darüber gab es nicht. Und anstatt mich weiter darüber zu ärgern - was passiert wäre, wenn dieses Gesetz verabschiedet wird -, bin ich im Juni der Piratenpartei beigetreten, obwohl ich ein Partei-Skeptiker war und immer noch bin. Aber der Parteibeitritt hat mir gut getan, weil ich mich ab dem Moment nicht mehr über die merkbefreiten Äußerungen von Politikern anderer Parteien ärgern musste, sondern weil ich mich freuen konnte, weil sie so der Piratenpartei mehr Zulauf verschafften. Außerdem gab mir das die Möglichkeit, die Themen, die mich bewegen und zu denen ich arbeite, an die Öffentlichkeit zu bringen. Mir geht es bei der Piratenpartei um Themen, nicht um Posten. Ich will auch in kein Parlament einziehen, sondern dort gewisse Ideen vorwärts bringen.
Wie verbinden Sie diese politischen Themen denn mit Ihrer Arbeit als Romanist? Gibt es da Gemeinsamkeiten oder Möglichkeiten der Verknüpfung?
Martin Haase: Bürgerrechtsthemen sind den Linguisten und Romanisten keineswegs fern. Da könnte ich jetzt sehr weit ausholen. In den kleineren Zeiträumen hat es in der Linguistik immer ein Bedürfnis gegeben, sich für bürgerliche Freiheiten einzusetzen. Das liegt daran, dass die Sprache, mit der wir uns beschäftigen, auf Kreativität beruht, und nur wenn man frei ist, kann man kreativ sein. Und wenn man nicht frei ist, entsteht eine andere Form von Kreativität, die die Freiheitseinschränkungen zu umgehen versucht.
In der jüngsten Vergangenheit braucht man da nur an Noam Chomsky zu denken, der sich sehr stark auf diesen Gebieten engagiert. In der Romanistik lässt sich das vor allem in der Sprachkritik sehen. Viktor Klemperer , der eine Studie über die Sprache des Dritten Reiches herausgegeben hat, oder Leo Spitzer , ein Romanist, der sich schon in den 20er Jahren mit dem veränderten Sprachverhalten angesichts von Zensur beschäftigt hat. Er hat Kriegsgefangenen-Briefe, die der Zensur unterlagen, ausgewertet und daran gezeigt, wie die Briefschreiber mit Hilfe vor allem dialektaler Sprachmittel versucht haben, die Zensur zu umgehen. Die Tradition lässt sich bis zu Jakob Grimm , dem Gründungsvater der Germanistik, weiterverfolgen, der wegen seines Einsatzes für Freiheiten ja sogar seine Professur in Göttingen verloren hatte, und in der Romanistik bis Montesquieu und Rousseau , die sich philosophisch mit dem Staat beschäftigt und Konzepte wie die Gewaltenteilung entworfen haben.
Alle Bilder mit freundlicher Genehmigung von Professor Martin Haase
Sie sind ja nicht nur theoretisch im Netz aktiv, sondern auch ganz praktisch: Sie betreiben neben Ihrer Universitätshomepage eine private Website, ein Weblog, Sie sind bei Twitter, Xing, bei Wikipedia aktiv. Welche Möglichkeiten bekommen Sie dadurch für Ihre universitäre Arbeit?
Martin Haase: Ich profitiere davon sehr. Ich habe zusammen mit anderen etwa die Ich profitiere davon sehr. Ich habe zusammen mit anderen etwa die Glottopedia vorangebracht, ein Terminologie-Wörterbuch für die Linguistik, bei dem auch zahlreiche Studenten mitarbeiten, was wiederum ganz praktisch für deren Studium ist. Ich bin dort im Scientific Advisory Board. Diese Techniken lassen sich natürlich auch ganz direkt in die Lehre einbringen, indem man Vorlesungen als Podcast veröffentlicht und ähnliches.
2007 habe ich das Lehrbuch „Einführung in die italienische Sprachwissenschaft“ herausgegeben, das bereits sehr „netzaffin“ konzipiert wurde: Darin wurde etwa auf Daten und Medien wie zum Beispiel Sprachaufnahmen, die im Netz zu finden sind, verwiesen. Und im Buch selbst haben wir versucht, auf Informationen wie Abbildungen und Karten, die unter freien Lizenzen im Internet zu finden waren, zurück zu greifen. Das war natürlich nicht immer ganz einfach, weil man zu einigen Themen – etwa italienischen Regionen – freies Material wie Karten bekommen kann, von anderen hingegen nicht. Die Urheberrechtsthematik zeigt sich bei solch einem Buch sehr deutlich. Oft ist es auch gar nicht klar, wo die Rechte liegen, oder es gibt irreführende Auszeichnungen und man findet dann etwa Kartenmaterial, das fälschlicherweise als Public Domain gekennzeichnet ist, obwohl das nicht stimmt. Daran zeigt sich schon, dass gerade in diesem Bereich dringend Reformen nötig sind, denn diese Unsicherheiten behindern natürlich die Kreativität.
Damit machen Sie dann also auch in gewisser Weise Politik in eigener Sache. Bringen Sie diese Themen auch bei den Piraten ein?
Martin Haase: Ja, vor allem die Bildungspolitik ist da ein wichtiger Punkt. Das ist zwar jetzt schon ein Kernthema bei den Piraten, aber wenn man dort demnächst bei Landtagswahlen antritt, wird das noch wichtiger, denn Bildung ist ein Thema der Landespolitik. Ich denke dort ist einiges zu tun, denn gerade in der deutschen Bildungspolitik ist manches schief gelaufen und läuft immer mehr schief. Vor allem der Ja, vor allem die Bildungspolitik ist da ein wichtiger Punkt. Das ist zwar jetzt schon ein Kernthema bei den Piraten, aber wenn man dort demnächst bei Landtagswahlen antritt, wird das noch wichtiger, denn Bildung ist ein Thema der Landespolitik. Ich denke dort ist einiges zu tun, denn gerade in der deutschen Bildungspolitik ist manches schief gelaufen und läuft immer mehr schief. Vor allem der Bologna-Prozess sollte dringend noch einmal reformiert werden. Da sind sich alle einig, dass wir eine „Reform der Reform“ benötigen. Das Schöne bei der Piratenpartei ist, dass es sie nicht nur in Deutschland gibt, sondern in ganz Europa, und alle haben das Thema „Bildung“ als Kernthema. Das gibt die Möglichkeit der Zusammenarbeit,um die europäische mit der Landesebene zu verzahnen, was bei anderen Parteien gar nicht möglich ist. Freies Wissen ist ein wichtiges Thema, das man in diese Diskussion auf jeden Fall einbringen sollte.
Konkrete politische Arbeit als Berater im Hintergrund?
Martin Haase: Ich habe zwar gesagt, dass ich keine Posten in der Piratenpartei bekommen möchte und auch in kein Parlament einziehen will, aber sollten die Piraten einmal irgendwo mitregieren, kann ich mir auch vorstellen, für einen Ministerposten im Bildungsbereich bereit zu stehen (lacht). Da könnte ich mein Expertenwissen jedenfalls am sinnvollsten einbringen. Was ich keinesfalls möchte, ist als „gebildeter Laie“ an Gesetzgebungsverfahren teilzuhaben über Themen, in denen ich mich nicht grundlegend auskenne. Da wären Juristen besser aufgestellt.
Das heißt, Sie sehen auch die Möglichkeit, dass die Piraten in die Parlamente einziehen? Oder rechnen Sie eher mit einer Diffusion der Themen in die anderen Parteien?
Martin Haase: Beides ist sehr erstrebenswert, also dass die Piraten so erfolgreich werden, dass sie selbst oder die anderen mit ihren Themen Politik machen. Dann braucht man am Ende die Piratenpartei vielleicht gar nicht mehr. Ich glaube aber, da wird vieles von Leuten, die im Netz aktiv sind, auch nicht richtig verstanden. Letztens gab es ein Beides ist sehr erstrebenswert, also dass die Piraten so erfolgreich werden, dass sie selbst oder die anderen mit ihren Themen Politik machen. Dann braucht man am Ende die Piratenpartei vielleicht gar nicht mehr. Ich glaube aber, da wird vieles von Leuten, die im Netz aktiv sind, auch nicht richtig verstanden. Letztens gab es ein Interview mit Markus Beckedahl Julia Seliger und Gerhard Baum , die nach der Zukunft der Piratenpartei gefragt wurden und antworteten: Das ist vielleicht nur ein vorübergehendes Phänomen und irgendwann braucht man die nicht mehr. Dann gab es einen Vergleich mit den Grünen, zu dem die Interviewten meinten, man könne die beiden Parteien nicht miteinander vergleichen, weil hinter den Grünen mehrere lange vorher existierende Bewegungen standen.
Ich glaube hingegen, bei der Piratenpartei ist das nicht anders; auch sie sind nur die Spitze von Bewegungen, die – wie etwa der CCC oder FoeBuD – schon sehr lange existieren und etabliert sind. Das kann man sogar noch viel weiter fassen: Die Grünen sind eine postmaterialistische Partei, weil sie neue Ideen in die Politik gebracht haben, in denen es nicht mehr darum geht, Besitz zu vermehren und zu verteilen, sondern es ging – wie beim Umweltschutz – nun auch um nicht materielle Dinge. Bei der Piratenpartei geht das noch weiter: Ein Berliner Netzaktivist schrieb , das sei eine zweite postmaterialistische Bewegung – oder vielleicht könne man sogar von Immaterialismus zu sprechen. Ich glaube, da ist etwas dran. Die Leute, die da unterwegs sind, interessieren sich für neue Ansätze, die zum Beispiel aus der Open-Source-Bewegung kommen. Nicht mehr nur Teilhabe am Reichtum, sondern auch Anerkennung für Kreativität und Leistung stehen da im Vordergrund. Das würde dann auch erklären, warum es bei diesen Bewegungen, auch bei den Piraten, diese große Affinität zum Grundgesetz gibt, die man bei den anderen Parteien vielleicht etwas weniger sieht.
Worin sehen sie den Grund für diese besondere Form der „Verfassungstreue“?
Martin Haase: Das hängt damit zusammen, dass die Leute, die sich damals das Grundgesetz ausgedacht haben, in einer ganz ähnlichen Situation waren nach dem Zweiten Weltkrieg und vor dem Einsetzen des Wirtschaftswunders. Da hat man ethische Konzepte entwickelt, die für die jetzt jungen, netzaffinen Wähler von ganz starkem Interesse sind. Es handelt sich dabei um Bewegungen (im Plural), die sehr tragfähig sind und wo die Piratenpartei möglicherweise nur die Spitze des Eisbergs ist. Daher glaube ich auch nicht, dass sie, anders als die Biertrinker- oder Autofahrer-Partei mit ihrem „einen Thema“, so schnell wieder verschwinden wird. Vielmehr spiegelt ihre Existenz eine gesellschaftliche Entwicklung wider, die viele Leute so noch gar nicht im Blickfeld haben. (Stefan Höltgen) | [
1,
6934,
3208,
1954,
15388,
11634,
21512,
11623,
1896,
1885,
13,
13,
29923,
262,
4124,
1493,
1380,
1261,
16937,
2579,
862,
15314,
29899,
29924,
277,
29887,
2957,
6502,
5952,
559,
13,
13,
22628,
5952,
559,
1752,
11386,
1865,
5917,
27013,
385,
589,
12855,
350,
314,
2552,
29892,
6266,
1689,
29879,
2415,
29887,
2957,
10005,
16579,
359,
20972,
5977,
29892,
341,
3673,
915,
1524,
2862,
14109,
29892,
12704,
10005,
383,
7297,
3727,
29928,
321,
29889,
29963,
29889,
563,
8416,
12802,
10479,
2907,
2862,
589,
16937,
2579,
862,
15314,
29889,
9699,
3733,
275,
29899,
29909,
3406,
21512,
11623,
1896,
1885,
3056,
8756,
2128,
14962,
1173,
2644,
589,
24240,
342,
810,
14967,
679,
307,
15794,
563,
1380,
9771,
2939,
405,
6618,
20087,
638,
29892,
762,
1798,
25988,
1005,
1879,
9230,
17556,
264,
563,
29128,
276,
12385,
563,
14033,
1276,
1470,
6676,
16937,
2579,
29899,
1252,
391,
4666,
6300,
771,
2724,
29889,
13,
13,
1184,
29888,
6329,
6502,
5952,
559,
13,
13,
29950,
3127,
11386,
5952,
559,
29892,
4031,
1370,
24672,
762,
14962,
1173,
2644,
589,
24240,
342,
810,
14967,
1865,
4073,
29973,
13,
13,
22628,
5952,
559,
29901,
1640,
1370,
297,
578,
24023,
3072,
5796,
29882,
335,
29892,
24107,
7975,
21488,
7518,
297,
762,
263,
13098,
2010,
17561,
7737,
1276,
2065,
19221,
29889,
3713,
1370,
884,
15002,
4439,
21689,
322,
414,
1620,
1729,
589,
5347,
3764,
589,
17009,
785,
1011,
28636,
13541,
5250,
509,
579,
8860,
29885,
29892,
13588,
767,
577,
674,
29889,
9299,
589,
17009,
1370,
297,
1261,
341,
2932,
7171,
3072,
29879,
5243,
1729,
805,
29993,
1267,
29889,
13,
13,
29956,
381,
285,
12702,
14033,
1276,
1470,
2907,
29892,
24107,
4073,
12337,
2504,
262,
5326,
29864,
589,
16937,
2579,
862,
15314,
3937,
16088,
9899,
831,
530,
605,
3356,
5169,
631,
29876,
29973,
13,
13,
22628,
5952,
559,
29901,
405,
348,
29892,
831,
11880,
14033,
1276,
1470,
762,
17009,
22633,
626,
17009,
370,
355,
29892,
2862,
589,
762,
624,
6727,
686,
22761,
782,
600,
497,
355,
15652,
19140,
615,
1370,
29889,
15158,
9083,
10078,
1697,
3072,
21689,
604,
16907,
264,
29889,
478,
9152,
951,
1082,
19459,
25304,
1380,
4093,
289,
404,
4578,
25386,
6994,
1865,
762,
16937,
2579,
330,
406,
305,
1212,
29889,
14211,
1697,
25386,
6994,
589,
24240,
342,
810,
14967,
1370,
26696,
12337,
3072,
577,
17691,
29888,
5442,
29892,
5511,
767,
3008,
18241,
17964,
29872,
1531,
686,
385,
972,
10522,
454,
1885,
286,
23909,
1655,
29889,
10528,
762,
16937,
2579,
1370,
831,
6126,
15002,
4771,
362,
514,
29889,
12093,
29871,
29906,
29995,
1770,
1261,
6679,
1729,
604,
19261,
29892,
884,
29871,
29947,
29945,
29900,
29889,
29900,
29900,
29900,
951,
1082,
1729,
24755,
29892,
762,
762,
16937,
2579,
281,
7538,
2435,
29892,
1005,
17209,
2686,
1729,
19876,
553,
19787,
325,
11381,
1428,
5440,
4930,
23452,
20028,
19459,
29892,
281,
15994,
14033,
1276,
1470,
15002,
1011,
530,
605,
1729,
1238,
631,
29876,
29321,
29889,
13,
13,
1888,
4685,
3056,
831,
1865,
762,
16937,
2579,
862,
15314,
289,
16136,
1770,
29887,
25310,
29889,
512,
634,
4057,
3371,
10066,
19459,
2686,
17846,
279,
762,
8380,
2191,
1092,
6884,
29889,
25966,
767,
12155,
382,
17615,
1193,
325,
11381,
1428,
2505,
2596,
305,
3003,
2065,
29973,
13,
13,
22628,
5952,
559,
29901,
2448,
262,
29892,
7975,
14751,
4003,
29892,
831,
1370,
3756,
331,
413,
4675,
29892,
5511,
1697,
4685,
3072,
1697,
9449,
414,
29886,
5876,
2152,
29892,
471,
2160,
18842,
11820,
553,
405,
6618,
267,
29892,
577,
29920,
375,
5370,
1768,
326,
1855,
264,
9452,
30015,
7149,
29889,
25651,
1931,
762,
1102,
3003,
16857,
297,
589,
16430,
561,
7661,
29892,
762,
4788,
19459,
29892,
23452,
12977,
2276,
2614,
267,
7401,
29889,
15158,
12526,
19221,
762,
16937,
2579,
17846,
279,
2862,
29871,
29941,
29995,
330,
25310,
29889,
20626,
12526,
29871,
29906,
29995,
3937,
4031,
6300,
21416,
23943,
1364,
280,
305,
2167,
25386,
6994,
29892,
4461,
1922,
831,
322,
414,
1729,
883,
352,
7884,
29901,
3423,
1752,
1697,
1364,
280,
305,
1688,
29872,
25386,
6994,
589,
16937,
2579,
2862,
3422,
24240,
342,
810,
14967,
313,
14791,
467,
360,
2108,
831,
10297,
2160,
12337,
5440,
1886,
335,
824,
29889,
20626,
24107,
831,
15621,
11849,
27570,
2907,
1697,
11772,
25386,
6994,
1370,
29892,
9083,
767,
15002,
503,
1137,
1255,
264,
2757,
29889,
13,
13,
29903,
347,
3937,
12526,
9284,
8416,
1011,
3300,
279,
2598,
2579,
2862,
972,
16937,
2579,
29889,
18656,
3937,
4073,
24672,
3046,
25849,
13083,
29887,
2957,
2809,
14865,
9944,
29973,
13,
13,
22628,
5952,
559,
29901,
3713,
1752,
2128,
25514,
406,
7376,
29889,
15158,
286,
1829,
12337,
15002,
301,
13655,
405,
6618,
20087,
638,
563,
383,
12702,
589,
13315,
29899,
29954,
29160,
276,
10948,
8702,
14133,
2101,
21488,
8416,
972,
29871,
29929,
29900,
261,
8692,
29889,
15158,
9083,
371,
762,
16937,
2579,
8416,
11448,
17965,
686,
29936,
577,
330,
25310,
1370,
831,
884,
12902,
295,
5876,
355,
29889,
15158,
27007,
371,
21488,
6126,
16891,
9284,
5156,
24925,
2939,
911,
10214,
29892,
704,
11529,
724,
29875,
29997,
344,
2832,
2010,
17561,
7055,
5860,
4296,
29889,
2452,
23983,
768,
1372,
12204,
6183,
7885,
762,
382,
276,
647,
5582,
527,
6868,
18947,
19787,
29892,
1620,
831,
1922,
1697,
3713,
1752,
2128,
25514,
406,
7376,
29889,
15158,
286,
1829,
12337,
15002,
301,
13655,
405,
6618,
20087,
638,
563,
383,
12702,
589,
13315,
29899,
29954,
29160,
276,
10948,
8702,
14133,
2101,
21488,
8416,
972,
29871,
29929,
29900,
261,
8692,
29889,
15158,
9083,
371,
762,
16937,
2579,
8416,
11448,
17965,
686,
29936,
577,
330,
25310,
1370,
831,
884,
12902,
295,
5876,
355,
29889,
15158,
27007,
371,
21488,
6126,
16891,
9284,
5156,
24925,
2939,
911,
10214,
29892,
704,
11529,
724,
29875,
29997,
344,
2832,
2010,
17561,
7055,
5860,
4296,
29889,
2452,
23983,
768,
1372,
12204,
6183,
7885,
762,
382,
276,
647,
5582,
527,
6868,
18947,
19787,
29892,
1620,
831,
1922,
1697,
24698,
574,
4253,
305,
556,
3085,
2710,
6618,
12773,
29892,
1697,
22390,
376,
29999,
575,
9945,
8200,
357,
3085,
2710,
6618,
29908,
302,
18723,
29889,
7266,
11880,
831,
4596,
11814,
262,
1380,
6502,
360,
1340,
4403,
1919,
1261,
2292,
23210,
303,
2620,
589,
10937,
29928,
29892,
589,
1768,
17370,
4685,
30015,
6867,
295,
4858,
6551,
785,
563,
7975,
1370,
3422,
1768,
29894,
290,
4685,
9533,
13,
13,
29928,
21928,
1798,
22439,
686,
3056,
21488,
297,
5243,
29888,
11665,
1334,
895,
28636,
335,
22733,
355,
281,
6621,
355,
7055,
5860,
29892,
24107,
11529,
14215,
1364,
18437,
316,
22251,
1931,
29892,
5511,
2862,
589,
10937,
29928,
3072,
26223,
2128,
13143,
277,
2809,
1729,
6951,
28452,
1146,
1370,
29889,
14211,
704,
29300,
1622,
589,
1798,
22439,
686,
24269,
262,
29890,
442,
1931,
29892,
5511,
831,
13945,
4360,
344,
495,
23210,
303,
24758,
330,
5154,
20099,
29892,
1931,
22013,
2276,
1005,
589,
10937,
29928,
2128,
5254,
331,
5388,
309,
686,
8038,
860,
29873,
29892,
297,
589,
10009,
7885,
1364,
11055,
29901,
1768,
29956,
381,
3937,
1622,
762,
350,
6424,
1717,
589,
4685,
29899,
5261,
6997,
6867,
387,
12644,
563,
10009,
3937,
297,
972,
6328,
6618,
1329,
29893,
332,
29888,
6867,
1389,
18908,
14613,
3713,
380,
6727,
371,
14033,
1276,
1470,
7171,
3072,
29889,
1640,
360,
19144,
313,
29920,
29889,
29933,
29889,
762,
1522,
1341,
391,
686,
553,
6328,
6618,
267,
4461,
762,
12093,
10991,
29888,
686,
589,
2644,
4031,
3764,
1737,
6391,
264,
317,
546,
29878,
20631,
3494,
2128,
28224,
841,
25218,
511,
1622,
762,
260,
1446,
6705,
1470,
6867,
387,
12644,
7758,
1370,
29892,
6183,
972,
6328,
558,
6705,
1028,
442,
29876,
824,
3764,
2276,
297,
972,
341,
870,
1737,
16260,
7758,
29892,
563,
767,
6551,
2160,
604,
29327,
29873,
29892,
5511,
1261,
1011,
23193,
18570,
342,
326,
4378,
21770,
311,
29892,
471,
6126,
3072,
1209,
3722,
1752,
29889,
512,
578,
24023,
1931,
297,
589,
2292,
23210,
303,
24758,
29892,
762,
831,
4031,
6300,
21416,
12337,
19687,
583,
29877,
3072,
330,
5154,
20099,
29892,
762,
28944,
6184,
2907,
5440,
26223,
325,
22232,
335,
1147,
3298,
2273,
270,
1191,
23391,
29889,
13,
13,
29950,
271,
762,
10937,
29928,
7885,
16452,
1380,
306,
26291,
1620,
1768,
2310,
4685,
30015,
6668,
30034,
12089,
7672,
264,
20040,
2435,
29973,
13,
13,
22628,
5952,
559,
29901,
405,
348,
29892,
762,
23125,
29872,
589,
10937,
29928,
425,
329,
6302,
29892,
5511,
767,
16547,
1005,
589,
951,
11771,
13945,
1768,
7789,
309,
5267,
6184,
30015,
1865,
972,
17009,
29895,
16817,
289,
2035,
264,
20040,
280,
563,
5511,
767,
1620,
2169,
21212,
862,
15314,
443,
29885,
15088,
6927,
972,
6328,
6618,
1329,
29893,
332,
29888,
20436,
1527,
9487,
484,
29889,
11281,
319,
1509,
16149,
414,
23078,
5424,
12465,
11880,
831,
3072,
29889,
14211,
385,
303,
1131,
21488,
9352,
5424,
12465,
1729,
2206,
29887,
824,
448,
471,
1209,
3722,
281,
15994,
29892,
13588,
18947,
6328,
6618,
1147,
370,
13666,
300,
4296,
448,
29892,
9016,
7975,
527,
7452,
589,
16937,
2579,
862,
15314,
367,
335,
300,
22290,
29892,
704,
29300,
7975,
1011,
27239,
29899,
29903,
446,
415,
5603,
1370,
563,
14761,
5440,
9016,
29889,
20626,
589,
25849,
18673,
277,
12123,
3056,
10078,
22341,
679,
273,
29892,
24107,
7975,
21488,
633,
1261,
341,
2932,
3072,
5243,
2939,
762,
2778,
29895,
915,
10745,
3537,
11585,
5002,
261,
2469,
1005,
27622,
824,
322,
11377,
25849,
819,
2206,
29887,
824,
25607,
29892,
17665,
24107,
7975,
21488,
3005,
3837,
11589,
29892,
24107,
2686,
577,
589,
16937,
2579,
862,
15314,
5243,
796,
352,
4987,
8038,
3470,
841,
29889,
29180,
11880,
10078,
1697,
762,
341,
15088,
6239,
29892,
762,
498,
12398,
29892,
762,
21488,
16435,
3442,
563,
1729,
17209,
7975,
564,
915,
568,
29892,
385,
762,
6450,
600,
11280,
6239,
1729,
1506,
4289,
29889,
11612,
25440,
831,
2862,
589,
16937,
2579,
862,
15314,
1922,
498,
12398,
29892,
3072,
1922,
4918,
264,
29889,
15158,
674,
2907,
297,
23943,
23608,
1011,
3914,
3169,
29892,
17665,
11529,
5247,
5582,
13001,
264,
3764,
20253,
1372,
1506,
4289,
29889,
13,
13,
29956,
347,
1147,
5355,
264,
4073,
10009,
2832,
1679,
498,
12398,
24672,
1380,
306,
26768,
17561,
1620,
5917,
391,
29973,
402,
9268,
831,
1146,
23832,
314,
14027,
4461,
341,
15088,
14027,
589,
1798,
3959,
29993,
7810,
686,
29973,
13,
13,
22628,
5952,
559,
29901,
29128,
15320,
303,
8008,
264,
3937,
972,
365,
6202,
8244,
563,
5917,
8244,
1589,
1475,
7872,
29879,
285,
824,
29889,
7266,
9487,
29876,
371,
7975,
432,
7401,
13572,
11181,
1770,
5391,
264,
29889,
512,
972,
24152,
4578,
5347,
7940,
14170,
3056,
831,
297,
589,
365,
6202,
27013,
14761,
1011,
14195,
1276,
29888,
6994,
330,
15398,
29892,
2160,
1865,
289,
1276,
914,
4545,
3878,
18019,
3537,
15747,
11616,
2256,
29889,
3713,
11478,
5424,
273,
29892,
5511,
762,
29634,
29892,
1380,
589,
14259,
9644,
8702,
14133,
2101,
29892,
1622,
7706,
1926,
7033,
7655,
29884,
400,
29892,
563,
5595,
13588,
767,
3005,
29875,
1752,
29892,
9083,
767,
18951,
1926,
2757,
29889,
14211,
13588,
767,
3072,
3005,
29875,
1752,
29892,
875,
1655,
400,
2128,
9900,
3812,
1005,
7706,
1926,
7033,
29892,
762,
762,
26272,
6884,
24195,
816,
24648,
29895,
2469,
1729,
1922,
479,
3169,
1224,
10236,
29889,
13,
13,
797,
589,
432,
26668,
3510,
1798,
8029,
264,
6884,
4105,
10236,
767,
1146,
5595,
385,
1939,
314,
678,
290,
7912,
1729,
972,
1717,
29892,
589,
2160,
13572,
18561,
1622,
12155,
17563,
264,
27010,
3722,
29889,
512,
589,
5917,
27013,
301,
29171,
2160,
1697,
3764,
11034,
297,
589,
1706,
10221,
29895,
768,
638,
27500,
29889,
18503,
7345,
476,
2409,
546,
261,
1919,
589,
2128,
5088,
347,
2939,
762,
29634,
553,
360,
20833,
9320,
267,
20964,
27644,
3056,
29892,
4461,
22533,
1706,
13510,
1919,
1011,
5917,
391,
29892,
589,
2160,
15002,
297,
972,
29871,
29906,
29900,
261,
8692,
1380,
1261,
1147,
3140,
19106,
1706,
10221,
369,
10176,
2614,
267,
17815,
1005,
796,
575,
332,
8702,
14133,
5523,
3056,
29889,
1425,
3056,
21249,
479,
11363,
6537,
29899,
29933,
2546,
1725,
29892,
762,
589,
796,
575,
332,
3662,
11541,
29892,
17691,
16347,
300,
563,
5424,
273,
1737,
911,
5523,
29892,
4031,
762,
1771,
2575,
816,
5803,
495,
1380,
12338,
1725,
3764,
11034,
270,
4379,
1193,
18362,
1706,
10221,
20664,
1224,
10236,
10290,
29892,
762,
796,
575,
332,
1729,
1922,
479,
3169,
29889,
1640,
18375,
654,
301,
29171,
2160,
2652,
1729,
27850,
1632,
6727,
1919,
1261,
17965,
3085,
29894,
1008,
589,
5332,
27013,
29892,
9352,
369,
4542,
1885,
29892,
589,
19580,
19517,
23175,
267,
1865,
3878,
18019,
3537,
12337,
17846,
279,
6676,
6175,
404,
332,
297,
28703,
4289,
22355,
264,
6551,
29892,
563,
297,
589,
5917,
27013,
2652,
4526,
267,
339,
9532,
563,
390,
681,
14654,
1919,
762,
2160,
11847,
783,
1380,
1261,
21516,
8702,
14133,
5523,
563,
5250,
911,
29886,
371,
4031,
762,
14412,
1997,
2016,
309,
686,
875,
29893,
4877,
264,
10290,
29889,
13,
13,
2499,
280,
8354,
1380,
3005,
870,
9195,
15350,
7184,
11841,
1005,
11386,
6502,
5952,
559,
13,
13,
29903,
347,
3937,
12337,
3072,
5595,
17237,
783,
527,
405,
6618,
24073,
29892,
17665,
2907,
21689,
28683,
783,
29901,
4073,
1010,
12207,
264,
20104,
306,
26768,
12855,
845,
608,
3488,
2128,
2024,
13253,
29892,
1011,
2563,
1188,
29892,
4073,
3937,
2862,
20147,
29892,
1060,
292,
29892,
2862,
14109,
24073,
29889,
10458,
1173,
341,
15088,
14027,
367,
21667,
4073,
270,
328,
2458,
1865,
306,
16720,
4946,
277,
15994,
17561,
29973,
13,
13,
22628,
5952,
559,
29901,
15158,
2600,
4812,
406,
24925,
13572,
29889,
15158,
19221,
12438,
1380,
11756,
10218,
762,
15158,
2600,
4812,
406,
24925,
13572,
29889,
15158,
19221,
12438,
1380,
11756,
10218,
762,
8467,
1501,
459,
1381,
3764,
927,
2634,
2570,
29892,
1011,
11814,
262,
5458,
29899,
29956,
1340,
357,
8458,
1865,
762,
365,
6202,
27013,
29892,
2862,
1261,
2907,
19885,
23296,
15740,
264,
1380,
23536,
3537,
29892,
471,
7518,
398,
21689,
28683,
783,
1865,
15286,
5088,
1974,
1752,
29889,
15158,
9016,
11529,
527,
23753,
928,
2087,
1730,
706,
12590,
29889,
13528,
8364,
14004,
25979,
2160,
14033,
1276,
1470,
2907,
21689,
27701,
297,
762,
951,
16720,
1011,
1182,
4289,
29892,
297,
2310,
767,
6266,
793,
2469,
1620,
8594,
4384,
26295,
563,
7533,
3123,
20048,
29889,
13,
13,
29906,
29900,
29900,
29955,
19221,
7975,
1697,
17603,
8458,
1768,
29923,
7192,
25322,
297,
762,
16486,
2010,
1706,
10221,
17556,
30015,
20964,
27644,
29892,
1697,
13101,
13572,
1768,
1212,
1362,
600,
262,
30015,
4139,
7554,
3722,
1931,
29901,
7335,
262,
1931,
10218,
1622,
13617,
563,
25837,
4031,
3356,
22621,
1706,
10221,
4987,
22734,
29892,
762,
527,
405,
6618,
1729,
24755,
3937,
29892,
9540,
19522,
29889,
14211,
527,
10586,
12526,
10290,
14259,
1224,
10236,
29892,
1622,
10343,
264,
4031,
13896,
789,
2469,
563,
476,
8109,
29892,
762,
3662,
3005,
819,
365,
19642,
2256,
527,
4685,
1729,
24755,
6183,
29892,
9964,
1729,
1395,
26651,
29889,
3713,
1370,
14033,
1276,
1470,
3072,
14761,
21689,
1011,
23193,
29892,
24107,
767,
1729,
1011,
2101,
498,
12398,
785,
10218,
16486,
1679,
11069,
264,
785,
3005,
583,
17582,
4031,
476,
8109,
367,
21667,
9083,
29892,
1005,
11756,
298,
292,
3442,
3072,
29889,
1640,
8918,
354,
495,
15320,
303,
29882,
4579,
638,
29836,
2160,
2862,
899,
305,
4093,
10586,
13572,
316,
22251,
29889,
438,
615,
1752,
831,
2907,
7171,
3072,
413,
4675,
29892,
8879,
762,
830,
10948,
3804,
1885,
29892,
4461,
831,
13456,
3805,
999,
4000,
3324,
4028,
25643,
563,
767,
28741,
7885,
10218,
476,
8109,
15388,
29892,
1697,
285,
5581,
816,
9195,
4506,
1620,
5236,
28460,
14865,
2108,
8549,
1752,
29892,
704,
29300,
1697,
3072,
20436,
4378,
29889,
7335,
273,
29836,
2160,
15002,
29892,
5511,
330,
15019,
297,
12909,
25405,
4192,
292,
355,
23933,
264,
302,
9618,
335,
3937,
29892,
24672,
10009,
853,
29879,
12805,
21795,
5742,
824,
14033,
1276,
1470,
762,
7706,
1926,
7033,
29889,
13,
13,
29928,
314,
277,
7672,
264,
4073,
7885,
884,
2907,
297,
5247,
29415,
1334,
895,
27622,
297,
15761,
759,
317,
1829,
29889,
1771,
4289,
4073,
10009,
498,
12398,
2907,
2862,
972,
16937,
2579,
1011,
29973,
13,
13,
22628,
5952,
559,
29901,
14021,
29892,
3764,
11034,
762,
11679,
686,
1028,
27298,
638,
1752,
1146,
1011,
21393,
4087,
349,
11087,
29889,
3713,
1752,
26979,
432,
7401,
15002,
1011,
476,
824,
386,
2603,
2862,
972,
16937,
2579,
29892,
6126,
13588,
767,
11529,
1261,
29876,
13991,
2862,
3172,
11338,
29893,
17165,
385,
29251,
29892,
4296,
1697,
5440,
21393,
4087,
29892,
24672,
11679,
686,
1752,
1011,
498,
2603,
589,
10089,
20087,
638,
29889,
15158,
972,
446,
11529,
1752,
1011,
13541,
1729,
18515,
29892,
24672,
330,
15019,
297,
589,
13806,
11679,
686,
1028,
27298,
638,
1752,
767,
6609,
1364,
2575,
9127,
4987,
264,
563,
301,
15583,
615,
14761,
5243,
1364,
2575,
29889,
6266,
11034,
589,
14021,
29892,
3764,
11034,
762,
11679,
686,
1028,
27298,
638,
1752,
1146,
1011,
21393,
4087,
349,
11087,
29889,
3713,
1752,
26979,
432,
7401,
15002,
1011,
476,
824,
386,
2603,
2862,
972,
16937,
2579,
29892,
6126,
13588,
767,
11529,
1261,
29876,
13991,
2862,
3172,
11338,
29893,
17165,
385,
29251,
29892,
4296,
1697,
5440,
21393,
4087,
29892,
24672,
11679,
686,
1752,
1011,
498,
2603,
589,
10089,
20087,
638,
29889,
15158,
972,
446,
11529,
1752,
1011,
13541,
1729,
18515,
29892,
24672,
330,
15019,
297,
589,
13806,
11679,
686,
1028,
27298,
638,
1752,
767,
6609,
1364,
2575,
9127,
4987,
264,
563,
301,
15583,
615,
14761,
5243,
1364,
2575,
29889,
6266,
11034,
589,
27595,
1056,
29899,
1184,
28790,
20099,
4192,
292,
355,
5440,
26223,
11736,
3722,
3678,
29889,
7266,
3937,
2160,
4788,
1011,
335,
29892,
5511,
14259,
2128,
1768,
1123,
689,
589,
23933,
30015,
3856,
9618,
2101,
29889,
3713,
1102,
29997,
484,
2862,
589,
16937,
2579,
862,
15314,
1752,
29892,
5511,
831,
2686,
3072,
5595,
297,
10450,
13456,
29892,
17665,
297,
21689,
9646,
29892,
563,
4788,
10290,
1697,
498,
2603,
1768,
29933,
789,
686,
30015,
1620,
476,
824,
386,
2603,
29889,
3713,
13456,
762,
341,
15088,
6239,
589,
18640,
15564,
29892,
398,
762,
12793,
29986,
2010,
1380,
589,
10089,
774,
1600,
1729,
23457,
801,
4566,
29892,
471,
2862,
11756,
25849,
819,
7171,
3072,
25959,
1752,
29889,
3878,
583,
399,
13119,
1752,
1011,
21393,
13541,
498,
2603,
29892,
1697,
767,
297,
10009,
20579,
1558,
291,
1622,
22936,
14053,
1011,
1182,
4289,
20099,
29889,
13,
13,
29968,
265,
4109,
371,
2832,
2010,
17561,
1620,
2292,
1008,
527,
23305,
12204,
29973,
13,
13,
22628,
5952,
559,
29901,
15158,
19221,
26979,
6300,
21416,
29892,
5511,
7975,
13945,
4918,
264,
297,
589,
16937,
2579,
862,
15314,
367,
21667,
286,
29997,
10948,
563,
2907,
297,
23943,
23608,
1011,
3914,
3169,
674,
29892,
6126,
10297,
841,
762,
16937,
2579,
26223,
3805,
29887,
355,
827,
1380,
1727,
7884,
29892,
9083,
7975,
10078,
2907,
3764,
27679,
29892,
1865,
4596,
7668,
2490,
264,
527,
11679,
3085,
27915,
9218,
277,
1729,
27565,
313,
14791,
467,
7266,
9487,
29876,
371,
7975,
592,
262,
28224,
841,
29893,
13119,
22936,
12559,
626,
269,
2559,
1555,
29880,
3510,
1011,
1182,
4289,
29889,
12547,
7975,
1589,
1475,
12559,
286,
29997,
10948,
29892,
1752,
1620,
1768,
4310,
789,
1308,
997,
347,
30015,
385,
6328,
6618,
4310,
3085,
369,
19243,
14222,
6951,
7308,
264,
2939,
498,
12398,
29892,
297,
17209,
7975,
21488,
3072,
19816,
26172,
1770,
1717,
484,
29889,
7266,
281,
22482,
16081,
8244,
289,
16136,
1622,
22436,
29889,
13,
13,
29928,
294,
540,
12044,
29873,
29892,
4073,
27500,
2907,
762,
341,
15088,
6239,
29892,
5511,
762,
16937,
2579,
297,
762,
1459,
29880,
2503,
1011,
3914,
3169,
29973,
438,
672,
337,
3049,
264,
4073,
321,
2276,
1380,
3422,
360,
2593,
3958,
589,
498,
12398,
297,
762,
11756,
25849,
819,
29973,
13,
13,
22628,
5952,
559,
29901,
1522,
2247,
1752,
13572,
9284,
15203,
575,
16347,
29892,
884,
5511,
762,
16937,
2579,
577,
14946,
5117,
3678,
29892,
5511,
2686,
12526,
4461,
762,
11756,
1380,
14566,
498,
12398,
27622,
7672,
264,
29889,
360,
812,
4105,
10236,
767,
626,
10720,
762,
16937,
2579,
862,
15314,
325,
11381,
1428,
7171,
3072,
5243,
29889,
15158,
14751,
4003,
6126,
29892,
1146,
4296,
13037,
267,
1005,
951,
6935,
29892,
762,
527,
405,
6618,
24073,
3937,
29892,
2907,
3072,
28636,
335,
1147,
1689,
264,
29889,
2803,
2065,
575,
11880,
831,
1011,
1522,
2247,
1752,
13572,
9284,
15203,
575,
16347,
29892,
884,
5511,
762,
16937,
2579,
577,
14946,
5117,
3678,
29892,
5511,
2686,
12526,
4461,
762,
11756,
1380,
14566,
498,
12398,
27622,
7672,
264,
29889,
360,
812,
4105,
10236,
767,
626,
10720,
762,
16937,
2579,
862,
15314,
325,
11381,
1428,
7171,
3072,
5243,
29889,
15158,
14751,
4003,
6126,
29892,
1146,
4296,
13037,
267,
1005,
951,
6935,
29892,
762,
527,
405,
6618,
24073,
3937,
29892,
2907,
3072,
28636,
335,
1147,
1689,
264,
29889,
2803,
2065,
575,
11880,
831,
1011,
4124,
1493,
1380,
4485,
375,
19573,
287,
4494,
22045,
8365,
4087,
563,
5681,
6800,
6000,
398,
1919,
762,
2644,
589,
796,
2679,
19324,
589,
16937,
2579,
862,
15314,
10235,
1431,
29873,
5448,
563,
3677,
17572,
6302,
29901,
3713,
1752,
325,
11381,
1428,
5595,
1011,
3764,
12465,
22733,
18684,
1963,
3363,
2770,
563,
3805,
29887,
355,
29893,
812,
4105,
10236,
767,
762,
3072,
5243,
29889,
360,
812,
11880,
831,
4596,
1798,
19867,
1380,
972,
1632,
3346,
264,
29892,
1729,
1261,
762,
4124,
1493,
841,
592,
524,
264,
29892,
767,
9487,
484,
762,
13066,
25849,
819,
3072,
286,
568,
262,
3825,
1147,
6234,
14487,
29892,
24107,
22013,
972,
1632,
3346,
264,
21742,
20516,
3764,
2276,
1863,
631,
3324,
17446,
387,
2469,
2317,
264,
29889,
13,
13,
29902,
305,
14751,
4003,
298,
292,
3442,
29892,
2862,
589,
16937,
2579,
862,
15314,
1752,
1697,
3072,
322,
414,
29936,
2907,
2686,
3937,
5595,
762,
1706,
277,
911,
1005,
17446,
387,
2469,
29892,
762,
785,
4031,
10218,
589,
315,
4174,
4461,
383,
7297,
3727,
29928,
785,
15002,
13572,
20516,
1863,
7884,
563,
634,
370,
492,
814,
3937,
29889,
3713,
9083,
767,
17846,
279,
5440,
13037,
9352,
285,
11257,
29901,
1640,
1632,
3346,
264,
3937,
2128,
1400,
15388,
21007,
27239,
29892,
24107,
2686,
16828,
13001,
264,
297,
762,
27622,
5772,
14493,
10290,
29892,
297,
17209,
831,
3072,
5243,
5424,
398,
25440,
29892,
6952,
2784,
1729,
325,
10877,
13608,
563,
1729,
1147,
7939,
264,
29892,
17665,
831,
12773,
785,
4031,
10005,
6379,
20581,
18377,
785,
11923,
2907,
1922,
3072,
15875,
11381,
360,
19144,
29889,
10632,
589,
16937,
2579,
862,
15314,
25440,
1697,
5440,
9352,
29901,
2694,
25912,
405,
6618,
5867,
440,
391,
1364,
11055,
1919,
1697,
13106,
2128,
27454,
1400,
15388,
21007,
17446,
28345,
785,
4461,
325,
11381,
1428,
9487,
484,
767,
17846,
279,
1005,
1954,
15388,
11634,
1729,
26743,
2724,
29889,
15158,
14751,
4003,
29892,
1146,
1752,
23452,
270,
661,
29889,
1640,
951,
1082,
29892,
762,
1146,
3662,
7872,
29879,
3937,
29892,
26636,
7884,
2160,
1865,
16828,
21877,
22445,
29892,
762,
3356,
22621,
1770,
589,
4673,
29899,
4435,
29899,
29933,
809,
28345,
28171,
29889,
405,
1428,
5243,
5595,
7770,
29882,
4302,
626,
830,
1428,
398,
29892,
17665,
2907,
530,
261,
1717,
9442,
1865,
7706,
1926,
7033,
563,
27520,
686,
27565,
1146,
527,
478,
2098,
12204,
29889,
3713,
21770,
311,
7885,
2907,
604,
16907,
264,
29892,
1370,
398,
831,
2862,
12155,
17446,
387,
2469,
29892,
2907,
2862,
972,
16937,
2579,
29892,
10009,
19418,
13737,
2344,
3003,
3356,
10197,
2710,
6618,
13456,
29892,
762,
767,
2862,
972,
11756,
25849,
819,
325,
11381,
1428,
23452,
12987,
4087,
2686,
400,
29889,
13,
13,
29956,
272,
262,
27500,
2686,
972,
10197,
1865,
10009,
3008,
18241,
3812,
589,
1768,
6565,
19874,
686,
13045,
434,
30015,
29973,
13,
13,
22628,
5952,
559,
29901,
3713,
298,
4762,
29873,
14733,
12438,
29892,
5511,
762,
951,
1082,
29892,
762,
2160,
28740,
1697,
10197,
2710,
6618,
1770,
3192,
5860,
10290,
29892,
297,
3422,
21689,
7533,
3123,
4057,
23920,
362,
6183,
2644,
1261,
24149,
25686,
563,
3764,
1261,
2694,
842,
2256,
553,
19037,
2774,
870,
414,
29889,
7266,
3056,
767,
11314,
2010,
5250,
911,
29886,
371,
20151,
2152,
29892,
762,
1865,
762,
432,
7401,
432,
2469,
29892,
7787,
1362,
600,
7026,
399,
7538,
1358,
1005,
21689,
18561,
331,
4124,
5340,
3937,
29889,
3423,
1361,
2152,
2160,
17857,
1922,
17446,
387,
2469,
313,
326,
1858,
3631,
511,
762,
13572,
25305,
29888,
7538,
335,
3937,
563,
8879,
762,
16937,
2579,
862,
15314,
286,
6922,
9195,
4506,
5595,
762,
1706,
277,
911,
553,
382,
275,
2552,
29879,
1752,
29889,
360,
801,
261,
14751,
4003,
7975,
2907,
3072,
29892,
5511,
2686,
29892,
322,
414,
1620,
762,
350,
631,
509,
682,
261,
29899,
4461,
5202,
974,
801,
2872,
29899,
2177,
15314,
1380,
19067,
1768,
29872,
7026,
498,
2603,
9785,
577,
1364,
18437,
7518,
8038,
29893,
10060,
4296,
29889,
478,
709,
1004,
1092,
805,
5876,
2152,
9856,
1222,
391,
4666,
2128,
6300,
10806,
4545,
21924,
25734,
29892,
762,
22390,
951,
1082,
577,
5440,
7171,
3072,
527,
350,
1406,
10612,
10290,
29889,
313,
7789,
12963,
11623,
1896,
1885,
29897
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
Use of find command to rename files
I have a list of 10K mp4 files some of which contains a ? mark. I need to replace these with _ (underscore).
I can use find command to find these files but not sure if I can rename them.
find . -name "*\?*.mp4" -exec mv {} XXXXXXX \;
Looks like I have to iterate through the list returned by find and for each one I need to replace ? with _ but I not sure how to do it.
A:
Don't use find for this - whichever way you go with find you'll need something like a single mv per file. That's a lot of processes, and to no benefit. This is not to mention that it is simply more difficult to do that way. That's my opinion, anyway.
I would use a stream or a batch tool, and tend to prefer pax:
cd -P . && mkdir ../newmp4 &&
pax -rwls'|?|_|g' . "${PWD%/*}/newmp4"
If you can create the directory ../newmp4, that little script will mirror the tree rooted in . to the directory just created with hardlinks, but will have replaced every ? occurring in any filename with an underscore in the meanwhile.
One advantage to this is that both trees continue to exist afterward - none of the dentries rooted in the current directory for those files are affected - they are only altered in the mirrored version of the tree. And so you can inspect the results afterward before deciding which version of the tree to remove. If anything were to go wrong during the operation - there's no harm done.
This does, however, require an fs which supports hardlinks and which has at least as many remaining free inodes as there are child directories of . +2, and assumes that .. . and all children of . share the same filesystem mount.
Practically the same effect might be got with rsync, I think, though I don't believe it is as simply done. If you don't have pax (even if you really should), you can just get it. mirabilos maintains the (to my knowledge) most commonly used version on linux systems.
| [
1,
660,
29901,
13,
13,
11403,
310,
1284,
1899,
304,
19508,
2066,
13,
13,
29902,
505,
263,
1051,
310,
29871,
29896,
29900,
29968,
22326,
29946,
2066,
777,
310,
607,
3743,
263,
1577,
2791,
29889,
306,
817,
304,
5191,
1438,
411,
903,
313,
870,
414,
3221,
467,
13,
29902,
508,
671,
1284,
1899,
304,
1284,
1438,
2066,
541,
451,
1854,
565,
306,
508,
19508,
963,
29889,
13,
2886,
869,
448,
978,
376,
17710,
29973,
10521,
1526,
29946,
29908,
448,
4258,
28241,
6571,
6193,
19165,
29990,
18175,
13,
13,
14959,
29879,
763,
306,
505,
304,
13649,
1549,
278,
1051,
4133,
491,
1284,
322,
363,
1269,
697,
306,
817,
304,
5191,
1577,
411,
903,
541,
306,
451,
1854,
920,
304,
437,
372,
29889,
29871,
13,
13,
29909,
29901,
13,
13,
10310,
29915,
29873,
671,
1284,
363,
445,
448,
377,
4070,
369,
982,
366,
748,
411,
1284,
366,
29915,
645,
817,
1554,
763,
263,
2323,
28241,
639,
934,
29889,
2193,
29915,
29879,
263,
3287,
310,
10174,
29892,
322,
304,
694,
14169,
29889,
910,
338,
451,
304,
3585,
393,
372,
338,
3763,
901,
5189,
304,
437,
393,
982,
29889,
2193,
29915,
29879,
590,
9426,
29892,
8763,
29889,
29871,
13,
29902,
723,
671,
263,
4840,
470,
263,
9853,
5780,
29892,
322,
10331,
304,
5821,
282,
1165,
29901,
13,
2252,
448,
29925,
869,
2607,
29356,
29772,
1482,
1526,
29946,
2607,
13,
29886,
1165,
448,
13975,
3137,
29915,
29989,
29973,
29989,
29918,
29989,
29887,
29915,
869,
11568,
29925,
24668,
29995,
29914,
4044,
29914,
1482,
1526,
29946,
29908,
13,
13,
3644,
366,
508,
1653,
278,
3884,
29772,
1482,
1526,
29946,
29892,
393,
2217,
2471,
674,
19571,
278,
5447,
3876,
287,
297,
869,
304,
278,
3884,
925,
2825,
411,
2898,
4965,
29892,
541,
674,
505,
8611,
1432,
1577,
13920,
292,
297,
738,
10422,
411,
385,
23400,
3221,
297,
278,
2099,
8000,
29889,
13,
6716,
10631,
304,
445,
338,
393,
1716,
10697,
6773,
304,
1863,
1156,
1328,
448,
5642,
310,
278,
12042,
2722,
3876,
287,
297,
278,
1857,
3884,
363,
1906,
2066,
526,
15201,
448,
896,
526,
871,
10551,
287,
297,
278,
19571,
287,
1873,
310,
278,
5447,
29889,
1126,
577,
366,
508,
16096,
278,
2582,
1156,
1328,
1434,
1602,
4821,
607,
1873,
310,
278,
5447,
304,
29871,
3349,
29889,
960,
3099,
892,
304,
748,
2743,
2645,
278,
5858,
448,
727,
29915,
29879,
694,
10311,
2309,
29889,
13,
4013,
947,
29892,
3138,
29892,
1996,
385,
18920,
607,
11286,
2898,
4965,
322,
607,
756,
472,
3203,
408,
1784,
9886,
3889,
297,
2631,
408,
727,
526,
2278,
17525,
310,
869,
718,
29906,
29892,
322,
15894,
393,
6317,
869,
322,
599,
4344,
310,
869,
6232,
278,
1021,
22101,
5766,
29889,
13,
29925,
1461,
1711,
278,
1021,
2779,
1795,
367,
2355,
411,
364,
16593,
29892,
306,
1348,
29892,
2466,
306,
1016,
29915,
29873,
4658,
372,
338,
408,
3763,
2309,
29889,
960,
366,
1016,
29915,
29873,
505,
282,
1165,
313,
11884,
565,
366,
2289,
881,
511,
366,
508,
925,
679,
372,
29889,
286,
3055,
18152,
359,
7344,
29879,
278,
313,
517,
590,
7134,
29897,
1556,
15574,
1304,
1873,
373,
10542,
6757,
29889,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
How to check if the form opened has a parent form
I am using thickbox to display the list of data, but when the session timeout occurs, and user try to open the thickbox by clicking a link, the thickbox gets open and the login page starts loading in the thickbox it self. So, is there any way where we can check if the form (thickbox) has a parent form ? or a javascript code like:
if(document.hasParent)
{
TB_CLOSE();
}
A:
You can check it like below:
if (self == parent){
//this is parent
}
Or otherway:
if (self != parent){
//this is not parent
}
| [
1,
660,
29901,
13,
13,
5328,
304,
1423,
565,
278,
883,
6496,
756,
263,
3847,
883,
13,
13,
29902,
626,
773,
12003,
1884,
304,
2479,
278,
1051,
310,
848,
29892,
541,
746,
278,
4867,
11815,
10008,
29892,
322,
1404,
1018,
304,
1722,
278,
12003,
1884,
491,
14855,
263,
1544,
29892,
278,
12003,
1884,
4947,
1722,
322,
278,
6464,
1813,
8665,
8363,
297,
278,
12003,
1884,
372,
1583,
29889,
1105,
29892,
338,
727,
738,
982,
988,
591,
508,
1423,
565,
278,
883,
313,
27996,
1884,
29897,
756,
263,
3847,
883,
1577,
470,
263,
3513,
775,
763,
29901,
13,
361,
29898,
3225,
29889,
5349,
9780,
29897,
13,
29912,
13,
323,
29933,
29918,
29907,
3927,
1660,
890,
13,
29913,
13,
13,
29909,
29901,
13,
13,
3492,
508,
1423,
372,
763,
2400,
29901,
13,
361,
313,
1311,
1275,
3847,
2597,
13,
849,
1366,
338,
3847,
13,
29913,
13,
13,
2816,
916,
1582,
29901,
13,
361,
313,
1311,
2804,
3847,
2597,
13,
849,
1366,
338,
451,
3847,
13,
29913,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
% Nix loves Haskell
% Peter Simons \<[email protected]\>
% 2015-05-21
-------------------------------------------------------------------------------
# Road-map of this presentation
- Install Haskell packages from Hackage
- Install one (or many) Haskell compiler(s)
- Create a Haskell development environment
- permanent environments with `ghcWithPackages`
- ad-hoc environments for `nix-shell`
- Integrate your own (non-public) packages into Nix
- Take advantage of the central build farm
- Pitfalls to avoid
-------------------------------------------------------------------------------
# Install Haskell packages from Hackage
Lookups based on package names like
$ nix-env -i cabal-install
don't work! You have to use attribute paths:
$ nix-env -iA haskellPackages.cabal-install
To list all Haskell packages, run:
$ nix-env -qaP -A haskellPackages
-------------------------------------------------------------------------------
# Install Haskell packages from Hackage
There is one Haskell package set per compiler:
$ nix-env -qaP -A haskellPackages
$ nix-env -qaP -A haskell.packages.ghc6123
$ nix-env -qaP -A haskell.packages.ghc763
$ nix-env -qaP -A haskell.packages.ghc7101
The default `haskellPackages` currently refers to
`haskell.packages.ghc7101`.
-------------------------------------------------------------------------------
# Install a Haskell compiler
$ nix-env -iA haskell.compiler.ghc784
$ nix-env -qaP -A haskell.compiler
haskell.compiler.ghc6104 ghc-6.10.4
haskell.compiler.ghc6123 ghc-6.12.3
haskell.compiler.ghc704 ghc-7.0.4
haskell.compiler.ghc722 ghc-7.2.2
haskell.compiler.ghc742 ghc-7.4.2
haskell.compiler.ghc763 ghc-7.6.3
haskell.compiler.ghc784 ghc-7.8.4
haskell.compiler.ghc7101 ghc-7.10.1
haskell.compiler.ghcHEAD ghc-7.11.20150402
haskell.compiler.ghcjs ghcjs-0.1.0
haskell.compiler.jhc jhc-0.8.2
haskell.compiler.uhc uhc-1.1.9.0
-------------------------------------------------------------------------------
# Install a Haskell compiler
For every compiler version XYZ, the attributes
haskell.compiler.ghcXYC
and
haskell.packages.ghcXYC.ghc
are synonymous.
-------------------------------------------------------------------------------
# Install more than one Haskell compiler (temporary)
$ nix-shell -p haskell.compiler.ghc7101
[nix-shell:~]$ ghc --numeric-version
7.10.1
[nix-shell:~]$ exit
$ nix-shell -p haskell.compiler.ghc784 \
--command "cabal configure"
$ cabal build
-------------------------------------------------------------------------------
# Install several Haskell compilers (transient)
$ nix-env -p ~/ghc-7.6.3 -iA haskell.compiler.ghc763
$ nix-env -p ~/ghc-7.8.4 -iA haskell.compiler.ghc784
[...]
$ export PATH=$HOME/ghc-7.6.3/bin:$PATH
$ ghc --numeric-version
7.6.3
$ cabal configure --with-compiler=$HOME/ghc-7.6.3/bin/ghc
-------------------------------------------------------------------------------
# Install several Haskell compilers (permanent)
$ PROFILE_DIR=/nix/var/nix/profiles/per-user/$USER
$ nix-env -p $PROFILE_DIR/ghc-7.6.3 -iA ...
On NixOS, `/etc/profile` defines `$NIX_USER_PROFILE_DIR` automatically.
-------------------------------------------------------------------------------
# Create a Haskell development environment
Edit the file `~/.nixpkgs/config.nix`:
{
packageOverrides = super: let self = super.pkgs; in
{
myHaskellEnv =
self.haskell.packages.ghc7101.ghcWithPackages
(haskellPackages: with haskellPackages; [
arrows async cabal-install case-insensitive
cgi criterion hspec HStringTemplate
]);
};
}
Now installl with `nix-env -iA myHaskellEnv`.
-------------------------------------------------------------------------------
# Create a Haskell development environment
The generated `ghc` program is a wrapper script that re-directs the real
`ghc` to use a "libdir" with all the specified packages installed:
#! /nix/store/xlxjcjbnbwnz...-bash-4.3-p33/bin/bash -e
realGhc=/nix/store/zzhasddj77xhwdban95...-ghc-7.10.1
ghcEnv=/nix/store/cgddwzz9hkdgprvbymph...-ghc-7.10.1
export NIX_GHC=$ghcEnv/bin/ghc
export NIX_GHCPKG=$ghcEnv/bin/ghc-pkg
export NIX_GHC_DOCDIR=$ghcEnv/share/doc/ghc/html
export NIX_GHC_LIBDIR=$ghcEnv/lib/ghc-7.10.1
exec $realGhc/bin/ghc "-B$NIX_GHC_LIBDIR" \
"${extraFlagsArray[@]}" "$@"
-------------------------------------------------------------------------------
# Create a Haskell development environment
Define the same environment variables in your `~/.bashrc`:
NIX_GHC="$HOME/.nix-profile/bin/ghc"
ghcVersion=$($NIX_GHC --numeric-version)
NIX_GHCPKG="$HOME/.nix-profile/bin/ghc-pkg"
NIX_GHC_DOCDIR="$HOME/.nix-profile/share/doc/ghc/html"
NIX_GHC_LIBDIR="$HOME/.nix-profile/lib/ghc-$ghcVersion"
export NIX_GHC NIX_GHCPKG NIX_GHC_DOCDIR NIX_GHC_LIBDIR
unset ghcVersion
Or:
if [ -e ~/.nix-profile/bin/ghc ]; then
eval $(grep export ~/.nix-profile/bin/ghc)
fi
-------------------------------------------------------------------------------
# Create a temporary Haskell development environment
Save as `shell.nix`:
with (import <nixpkgs> {}).pkgs;
let
ghc = haskell.packages.ghc7101.ghcWithPackages
(pkgs: with pkgs; [ aeson lens monad-par ]);
in
stdenv.mkDerivation {
name = "my-haskell-env-0";
buildInputs = [ ghc ];
shellHook = "eval $(grep export ${ghc}/bin/ghc)";
}
Now run `nix-shell`, or even `nix-shell --pure`.
-------------------------------------------------------------------------------
# Create a temporary Haskell development environment
To parameterize the compiler version, edit the file as follows:
{ compiler ? "ghc7101" }:
with (import <nixpkgs> {}).pkgs;
let
ghc = haskell.packages.${compiler}.ghcWithPackages
(pkgs: with pkgs; [ aeson lens monad-par ]);
in
[...]
Now run "`nix-shell --argstr compiler ghc784`" to select a different
compiler.
-------------------------------------------------------------------------------
# Create a temporary Haskell development environment
Every Haskell package has an `env` attribute that provides a temporary shell environment in which that package can be built:
$ cabal get lens && cd lens-4.10
Downloading lens-4.10...
Unpacking to lens-4.10/
$ nix-shell "<nixpkgs>" -A haskellPackages.lens.env
[nix-shell:/tmp/lens-4.10]$ cabal configure
Resolving dependencies...
Configuring lens-4.10...
[...]
-------------------------------------------------------------------------------
# Create a development environment for your own packages
$ nix-env -iA cabal2nix
$ cabal2nix --shell . >shell.nix
$ nix-shell --command "cabal configure"
$ cabal build
[...]
-------------------------------------------------------------------------------
# Create a development environment for your own packages
$ cabal2nix --shell .
with (import <nixpkgs> {}).pkgs;
let pkg = haskellPackages.callPackage
({ mkDerivation, base, stdenv, transformers }:
mkDerivation {
pname = "mtl";
version = "2.2.1";
src = ./.;
buildDepends = [ base transformers ];
homepage = "http://github.com/ekmett/mtl";
license = stdenv.lib.licenses.bsd3;
}) {};
in
pkg.env
-------------------------------------------------------------------------------
# Create builds for your own packages
$ cd ~/src/foo
$ cabal2nix . > default.nix
Now edit `~/.nixpkgs/config.nix`:
{
packageOverrides = super: let self = super.pkgs; in
{
foo = self.haskellPackages.callPackage
../src/foo {};
};
}
Build it by running "`nix-env -iA foo`".
-------------------------------------------------------------------------------
# Create builds for your own packages
Use this `~/.nixpkgs/config.nix` file to register the build inside of
`haskellPackages`, so that other libraries may depend on it:
{
packageOverrides = super: let self = super.pkgs; in
{
haskellPackages = super.haskellPackages.override {
overrides = self: super: {
foo = self.callPackage ../src/foo {};
bar = self.callPackage ../src/bar {};
};
};
};
}
-------------------------------------------------------------------------------
# How to download binary packages
NixOS users add this setting to `/etc/nixos/configuration.nix`:
nix.trustedBinaryCaches = [
http://hydra.cryp.to
http://hydra.nixos.org
];
Everyone else adds this setting to `/etc/nix/nix.conf`:
trusted-binary-caches = http://hydra.nixos.org \
http://hydra.cryp.to
Now run `nix-env`, `nix-build`, and `nix-shell` with this option:
--option extra-binary-caches http://hydra.nixos.org
-------------------------------------------------------------------------------
# GHC's infamous non-deterministic library ID bug
GHC and distributed build farms don't get along well:
https://ghc.haskell.org/trac/ghc/ticket/4012
https://github.com/NixOS/nixpkgs/issues/7792
When you see an error like this one
package foo-0.7.1.0 is broken due to missing package
text-1.2.0.4-98506efb1b9ada233bb5c2b2db516d91
then you have to garbage collect `foo` and all its dependents,
and re-install from scratch.
-------------------------------------------------------------------------------
# Where to get help ...
Haskell-specific resources:
- https://github.com/NixOS/nixpkgs/issues/4941
- A Journey into the Haskell NG infrastructure
- Part 1: https://nixos.org/nix-dev/2015-January/015591.html
- Part 2: https://nixos.org/nix-dev/2015-January/015608.html
- Part 3: https://nixos.org/nix-dev/2015-April/016912.html
- Oliver Charles Wiki: http://wiki.ocharles.org.uk/Nix
General Nix resources:
- `https://nixos.org/`
- https://groups.google.com/forum/#!forum/nix-devel
- `#nixos` auf `irc.freenode.org`
| [
1,
1273,
405,
861,
12355,
267,
379,
21918,
13,
29995,
5310,
3439,
787,
3551,
3601,
787,
29992,
29883,
719,
29886,
29889,
517,
29905,
29958,
13,
29995,
29871,
29906,
29900,
29896,
29945,
29899,
29900,
29945,
29899,
29906,
29896,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
9321,
29899,
1958,
310,
445,
24329,
13,
13,
29899,
16052,
379,
21918,
9741,
515,
379,
2229,
13,
29899,
16052,
697,
313,
272,
1784,
29897,
379,
21918,
6516,
29898,
29879,
29897,
13,
29899,
6204,
263,
379,
21918,
5849,
5177,
13,
1678,
448,
17667,
23136,
411,
421,
12443,
29883,
3047,
16638,
1179,
29952,
13,
1678,
448,
594,
29899,
29882,
542,
23136,
363,
421,
29876,
861,
29899,
15903,
29952,
13,
29899,
17100,
403,
596,
1914,
313,
5464,
29899,
3597,
29897,
9741,
964,
405,
861,
13,
29899,
11190,
10631,
310,
278,
6555,
2048,
17888,
13,
29899,
29244,
12559,
304,
4772,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
16052,
379,
21918,
9741,
515,
379,
2229,
13,
13,
14959,
14340,
2729,
373,
3577,
2983,
763,
13,
13,
4706,
395,
302,
861,
29899,
6272,
448,
29875,
7776,
284,
29899,
6252,
13,
13,
9176,
29915,
29873,
664,
29991,
887,
505,
304,
671,
5352,
10898,
29901,
13,
13,
4706,
395,
302,
861,
29899,
6272,
448,
29875,
29909,
756,
29895,
514,
16638,
1179,
29889,
29883,
370,
284,
29899,
6252,
13,
13,
1762,
1051,
599,
379,
21918,
9741,
29892,
1065,
29901,
13,
13,
4706,
395,
302,
861,
29899,
6272,
448,
25621,
29925,
448,
29909,
756,
29895,
514,
16638,
1179,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
16052,
379,
21918,
9741,
515,
379,
2229,
13,
13,
8439,
338,
697,
379,
21918,
3577,
731,
639,
6516,
29901,
13,
13,
4706,
395,
302,
861,
29899,
6272,
448,
25621,
29925,
448,
29909,
756,
29895,
514,
16638,
1179,
13,
4706,
395,
302,
861,
29899,
6272,
448,
25621,
29925,
448,
29909,
756,
29895,
514,
29889,
8318,
29889,
12443,
29883,
29953,
29896,
29906,
29941,
13,
4706,
395,
302,
861,
29899,
6272,
448,
25621,
29925,
448,
29909,
756,
29895,
514,
29889,
8318,
29889,
12443,
29883,
29955,
29953,
29941,
13,
4706,
395,
302,
861,
29899,
6272,
448,
25621,
29925,
448,
29909,
756,
29895,
514,
29889,
8318,
29889,
12443,
29883,
29955,
29896,
29900,
29896,
13,
13,
1576,
2322,
421,
29882,
21918,
16638,
1179,
29952,
5279,
14637,
304,
13,
29952,
29882,
21918,
29889,
8318,
29889,
12443,
29883,
29955,
29896,
29900,
29896,
1412,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
16052,
263,
379,
21918,
6516,
13,
13,
1678,
395,
302,
861,
29899,
6272,
448,
29875,
29909,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29947,
29946,
13,
13,
1678,
395,
302,
861,
29899,
6272,
448,
25621,
29925,
448,
29909,
756,
29895,
514,
29889,
21789,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29953,
29896,
29900,
29946,
4706,
24170,
29883,
29899,
29953,
29889,
29896,
29900,
29889,
29946,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29953,
29896,
29906,
29941,
4706,
24170,
29883,
29899,
29953,
29889,
29896,
29906,
29889,
29941,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29900,
29946,
308,
24170,
29883,
29899,
29955,
29889,
29900,
29889,
29946,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29906,
29906,
308,
24170,
29883,
29899,
29955,
29889,
29906,
29889,
29906,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29946,
29906,
308,
24170,
29883,
29899,
29955,
29889,
29946,
29889,
29906,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29953,
29941,
308,
24170,
29883,
29899,
29955,
29889,
29953,
29889,
29941,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29947,
29946,
308,
24170,
29883,
29899,
29955,
29889,
29947,
29889,
29946,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29896,
29900,
29896,
4706,
24170,
29883,
29899,
29955,
29889,
29896,
29900,
29889,
29896,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
23252,
4706,
24170,
29883,
29899,
29955,
29889,
29896,
29896,
29889,
29906,
29900,
29896,
29945,
29900,
29946,
29900,
29906,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
1315,
3986,
24170,
29883,
1315,
29899,
29900,
29889,
29896,
29889,
29900,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
29926,
29882,
29883,
9651,
432,
29882,
29883,
29899,
29900,
29889,
29947,
29889,
29906,
13,
1678,
756,
29895,
514,
29889,
21789,
29889,
16099,
29883,
9651,
318,
29882,
29883,
29899,
29896,
29889,
29896,
29889,
29929,
29889,
29900,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
16052,
263,
379,
21918,
6516,
13,
13,
2831,
1432,
6516,
1873,
1060,
29979,
29999,
29892,
278,
8393,
13,
13,
4706,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
18454,
29907,
13,
13,
392,
13,
13,
4706,
756,
29895,
514,
29889,
8318,
29889,
12443,
29883,
18454,
29907,
29889,
12443,
29883,
13,
13,
598,
5222,
11428,
29889,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
16052,
901,
1135,
697,
379,
21918,
6516,
313,
1356,
1971,
653,
29897,
13,
13,
1678,
395,
302,
861,
29899,
15903,
448,
29886,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29896,
29900,
29896,
13,
1678,
518,
29876,
861,
29899,
15903,
29901,
30022,
9341,
24170,
29883,
1192,
21574,
29899,
3259,
13,
268,
29955,
29889,
29896,
29900,
29889,
29896,
13,
1678,
518,
29876,
861,
29899,
15903,
29901,
30022,
9341,
6876,
13,
13,
1678,
395,
302,
861,
29899,
15903,
448,
29886,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29947,
29946,
320,
13,
18884,
1192,
6519,
376,
29883,
370,
284,
10822,
29908,
13,
1678,
395,
7776,
284,
2048,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
16052,
3196,
379,
21918,
752,
22058,
313,
3286,
993,
29897,
13,
13,
1678,
395,
302,
861,
29899,
6272,
448,
29886,
3695,
29914,
12443,
29883,
29899,
29955,
29889,
29953,
29889,
29941,
448,
29875,
29909,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29953,
29941,
13,
1678,
395,
302,
861,
29899,
6272,
448,
29886,
3695,
29914,
12443,
29883,
29899,
29955,
29889,
29947,
29889,
29946,
448,
29875,
29909,
756,
29895,
514,
29889,
21789,
29889,
12443,
29883,
29955,
29947,
29946,
13,
1678,
21945,
13,
13,
1678,
395,
5609,
23611,
6080,
17353,
29914,
12443,
29883,
29899,
29955,
29889,
29953,
29889,
29941,
29914,
2109,
17178,
10145,
13,
1678,
395,
24170,
29883,
1192,
21574,
29899,
3259,
13,
268,
29955,
29889,
29953,
29889,
29941,
13,
13,
1678,
395,
7776,
284,
10822,
1192,
2541,
29899,
21789,
6080,
17353,
29914,
12443,
29883,
29899,
29955,
29889,
29953,
29889,
29941,
29914,
2109,
29914,
12443,
29883,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
16052,
3196,
379,
21918,
752,
22058,
313,
546,
1171,
296,
29897,
13,
13,
1678,
395,
13756,
7724,
29918,
9464,
14327,
29876,
861,
29914,
1707,
29914,
29876,
861,
29914,
771,
5325,
29914,
546,
29899,
1792,
13346,
11889,
13,
1678,
395,
302,
861,
29899,
6272,
448,
29886,
395,
8618,
7724,
29918,
9464,
29914,
12443,
29883,
29899,
29955,
29889,
29953,
29889,
29941,
448,
29875,
29909,
2023,
13,
13,
2951,
405,
861,
3267,
29892,
7034,
7070,
29914,
10185,
29952,
17645,
5024,
29940,
6415,
29918,
11889,
29918,
8618,
7724,
29918,
9464,
29952,
6336,
29889,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
263,
379,
21918,
5849,
5177,
13,
13,
6103,
278,
934,
421,
30022,
6294,
29876,
861,
20571,
3174,
29914,
2917,
29889,
29876,
861,
6998,
13,
13,
418,
426,
13,
4706,
3577,
3563,
24040,
353,
2428,
29901,
1235,
1583,
353,
2428,
29889,
20571,
3174,
29936,
297,
13,
4706,
426,
13,
3986,
590,
29950,
21918,
21745,
353,
13,
9651,
1583,
29889,
29882,
21918,
29889,
8318,
29889,
12443,
29883,
29955,
29896,
29900,
29896,
29889,
12443,
29883,
3047,
16638,
1179,
13,
795,
313,
29882,
21918,
16638,
1179,
29901,
411,
756,
29895,
514,
16638,
1179,
29936,
518,
13,
18884,
564,
5727,
7465,
7776,
284,
29899,
6252,
1206,
29899,
1144,
575,
3321,
13,
18884,
274,
3146,
28770,
291,
298,
6550,
379,
1231,
6733,
13,
795,
4514,
416,
13,
4706,
3980,
13,
418,
500,
13,
13,
10454,
2601,
29880,
411,
421,
29876,
861,
29899,
6272,
448,
29875,
29909,
590,
29950,
21918,
21745,
1412,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
263,
379,
21918,
5849,
5177,
13,
13,
1576,
5759,
421,
12443,
29883,
29952,
1824,
338,
263,
14476,
2471,
393,
337,
29899,
11851,
29879,
278,
1855,
13,
29952,
12443,
29883,
29952,
304,
671,
263,
376,
1982,
3972,
29908,
411,
599,
278,
6790,
9741,
5130,
29901,
13,
13,
418,
396,
29991,
847,
29876,
861,
29914,
8899,
29914,
15524,
29916,
29926,
29883,
16761,
9877,
1233,
29920,
856,
29899,
13067,
29899,
29946,
29889,
29941,
29899,
29886,
29941,
29941,
29914,
2109,
29914,
13067,
448,
29872,
13,
418,
1855,
29954,
29882,
29883,
14327,
29876,
861,
29914,
8899,
29914,
5617,
5349,
1289,
29926,
29955,
29955,
29916,
29882,
9970,
2571,
29929,
29945,
856,
29899,
12443,
29883,
29899,
29955,
29889,
29896,
29900,
29889,
29896,
13,
418,
24170,
29883,
21745,
14327,
29876,
861,
29914,
8899,
29914,
29883,
29887,
1289,
29893,
5617,
29929,
29882,
29895,
20726,
558,
24666,
962,
561,
856,
29899,
12443,
29883,
29899,
29955,
29889,
29896,
29900,
29889,
29896,
13,
418,
5609,
405,
6415,
29918,
29954,
19127,
6080,
12443,
29883,
21745,
29914,
2109,
29914,
12443,
29883,
13,
418,
5609,
405,
6415,
29918,
29954,
29950,
6271,
29968,
29954,
6080,
12443,
29883,
21745,
29914,
2109,
29914,
12443,
29883,
29899,
15865,
13,
418,
5609,
405,
6415,
29918,
29954,
19127,
29918,
28665,
9464,
6080,
12443,
29883,
21745,
29914,
13653,
29914,
1514,
29914,
12443,
29883,
29914,
1420,
13,
418,
5609,
405,
6415,
29918,
29954,
19127,
29918,
5265,
29933,
9464,
6080,
12443,
29883,
21745,
29914,
1982,
29914,
12443,
29883,
29899,
29955,
29889,
29896,
29900,
29889,
29896,
13,
418,
2279,
395,
6370,
29954,
29882,
29883,
29914,
2109,
29914,
12443,
29883,
11663,
29933,
29938,
29940,
6415,
29918,
29954,
19127,
29918,
5265,
29933,
9464,
29908,
320,
13,
462,
9651,
11568,
17833,
15675,
2588,
17548,
29962,
5038,
3908,
5507,
13,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
263,
379,
21918,
5849,
5177,
13,
13,
3206,
457,
278,
1021,
5177,
3651,
297,
596,
421,
30022,
6294,
6500,
1092,
29883,
6998,
13,
13,
418,
405,
6415,
29918,
29954,
19127,
18965,
17353,
6294,
29876,
861,
29899,
10185,
29914,
2109,
29914,
12443,
29883,
29908,
13,
418,
24170,
29883,
6594,
6080,
1566,
29940,
6415,
29918,
29954,
19127,
1192,
21574,
29899,
3259,
29897,
13,
418,
405,
6415,
29918,
29954,
29950,
6271,
29968,
29954,
18965,
17353,
6294,
29876,
861,
29899,
10185,
29914,
2109,
29914,
12443,
29883,
29899,
15865,
29908,
13,
418,
405,
6415,
29918,
29954,
19127,
29918,
28665,
9464,
18965,
17353,
6294,
29876,
861,
29899,
10185,
29914,
13653,
29914,
1514,
29914,
12443,
29883,
29914,
1420,
29908,
13,
418,
405,
6415,
29918,
29954,
19127,
29918,
5265,
29933,
9464,
18965,
17353,
6294,
29876,
861,
29899,
10185,
29914,
1982,
29914,
12443,
29883,
18039,
12443,
29883,
6594,
29908,
13,
418,
5609,
405,
6415,
29918,
29954,
19127,
405,
6415,
29918,
29954,
29950,
6271,
29968,
29954,
405,
6415,
29918,
29954,
19127,
29918,
28665,
9464,
405,
6415,
29918,
29954,
19127,
29918,
5265,
29933,
9464,
13,
418,
443,
842,
24170,
29883,
6594,
13,
13,
13,
2816,
29901,
13,
13,
418,
565,
518,
448,
29872,
3695,
6294,
29876,
861,
29899,
10185,
29914,
2109,
29914,
12443,
29883,
12940,
769,
13,
4706,
19745,
2427,
22385,
5609,
3695,
6294,
29876,
861,
29899,
10185,
29914,
2109,
29914,
12443,
29883,
29897,
13,
418,
5713,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
263,
13201,
379,
21918,
5849,
5177,
13,
13,
11371,
408,
421,
15903,
29889,
29876,
861,
6998,
13,
13,
418,
411,
313,
5215,
529,
29876,
861,
20571,
3174,
29958,
6571,
467,
20571,
3174,
29936,
13,
418,
1235,
13,
4706,
24170,
29883,
353,
756,
29895,
514,
29889,
8318,
29889,
12443,
29883,
29955,
29896,
29900,
29896,
29889,
12443,
29883,
3047,
16638,
1179,
13,
18884,
313,
20571,
3174,
29901,
411,
282,
29895,
3174,
29936,
518,
263,
267,
265,
301,
575,
1601,
328,
29899,
862,
4514,
416,
13,
418,
297,
13,
418,
380,
1145,
29894,
29889,
11256,
15383,
440,
362,
426,
13,
4706,
1024,
353,
376,
1357,
29899,
29882,
21918,
29899,
6272,
29899,
29900,
1769,
13,
4706,
2048,
4290,
29879,
353,
518,
24170,
29883,
12940,
13,
4706,
6473,
29950,
2550,
353,
376,
14513,
2427,
22385,
5609,
6435,
12443,
29883,
6822,
2109,
29914,
12443,
29883,
29897,
1769,
13,
418,
500,
13,
13,
10454,
1065,
421,
29876,
861,
29899,
15903,
1673,
470,
1584,
421,
29876,
861,
29899,
15903,
1192,
29886,
545,
1412,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
263,
13201,
379,
21918,
5849,
5177,
13,
13,
1762,
3443,
675,
278,
6516,
1873,
29892,
3863,
278,
934,
408,
4477,
29901,
13,
13,
418,
426,
6516,
1577,
376,
12443,
29883,
29955,
29896,
29900,
29896,
29908,
500,
29901,
13,
13,
418,
411,
313,
5215,
529,
29876,
861,
20571,
3174,
29958,
6571,
467,
20571,
3174,
29936,
13,
418,
1235,
13,
4706,
24170,
29883,
353,
756,
29895,
514,
29889,
8318,
29889,
5303,
21789,
1836,
12443,
29883,
3047,
16638,
1179,
13,
18884,
313,
20571,
3174,
29901,
411,
282,
29895,
3174,
29936,
518,
263,
267,
265,
301,
575,
1601,
328,
29899,
862,
4514,
416,
13,
418,
297,
13,
418,
21945,
13,
13,
10454,
1065,
29724,
29876,
861,
29899,
15903,
1192,
1191,
710,
6516,
24170,
29883,
29955,
29947,
29946,
29952,
29908,
304,
1831,
263,
1422,
13,
21789,
29889,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
263,
13201,
379,
21918,
5849,
5177,
13,
13,
26526,
379,
21918,
3577,
756,
385,
421,
6272,
29952,
5352,
393,
8128,
263,
13201,
6473,
5177,
297,
607,
393,
3577,
508,
367,
4240,
29901,
13,
13,
418,
395,
7776,
284,
679,
301,
575,
2607,
14965,
301,
575,
29899,
29946,
29889,
29896,
29900,
13,
418,
9943,
13234,
301,
575,
29899,
29946,
29889,
29896,
29900,
856,
13,
418,
853,
4058,
292,
304,
301,
575,
29899,
29946,
29889,
29896,
29900,
29914,
13,
13,
418,
395,
302,
861,
29899,
15903,
9872,
29876,
861,
20571,
3174,
11903,
448,
29909,
756,
29895,
514,
16638,
1179,
29889,
29880,
575,
29889,
6272,
13,
418,
518,
29876,
861,
29899,
15903,
8419,
7050,
29914,
29880,
575,
29899,
29946,
29889,
29896,
29900,
9341,
7776,
284,
10822,
13,
418,
24062,
1747,
9962,
856,
13,
418,
12782,
3864,
301,
575,
29899,
29946,
29889,
29896,
29900,
856,
13,
418,
21945,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
263,
5849,
5177,
363,
596,
1914,
9741,
13,
13,
1678,
395,
302,
861,
29899,
6272,
448,
29875,
29909,
7776,
284,
29906,
29876,
861,
13,
13,
1678,
395,
7776,
284,
29906,
29876,
861,
1192,
15903,
869,
1405,
15903,
29889,
29876,
861,
13,
1678,
395,
302,
861,
29899,
15903,
1192,
6519,
376,
29883,
370,
284,
10822,
29908,
13,
13,
1678,
395,
7776,
284,
2048,
13,
1678,
21945,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
263,
5849,
5177,
363,
596,
1914,
9741,
13,
13,
1678,
395,
7776,
284,
29906,
29876,
861,
1192,
15903,
869,
13,
1678,
411,
313,
5215,
529,
29876,
861,
20571,
3174,
29958,
6571,
467,
20571,
3174,
29936,
13,
1678,
1235,
282,
9415,
353,
756,
29895,
514,
16638,
1179,
29889,
4804,
14459,
13,
18884,
21313,
14690,
15383,
440,
362,
29892,
2967,
29892,
380,
1145,
29894,
29892,
4327,
414,
500,
29901,
13,
462,
14690,
15383,
440,
362,
426,
13,
462,
259,
282,
978,
353,
376,
4378,
29880,
1769,
13,
462,
259,
1873,
353,
376,
29906,
29889,
29906,
29889,
29896,
1769,
13,
462,
259,
4765,
353,
869,
6294,
29936,
13,
462,
259,
2048,
8498,
1975,
353,
518,
2967,
4327,
414,
12940,
13,
462,
259,
3271,
3488,
353,
376,
1124,
597,
3292,
29889,
510,
29914,
1416,
29885,
1803,
29914,
4378,
29880,
1769,
13,
462,
259,
19405,
353,
380,
1145,
29894,
29889,
1982,
29889,
506,
11259,
29889,
29890,
4928,
29941,
29936,
13,
462,
5615,
15739,
13,
1678,
297,
13,
418,
282,
9415,
29889,
6272,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
23315,
363,
596,
1914,
9741,
13,
13,
418,
395,
14965,
3695,
29914,
4351,
29914,
5431,
13,
418,
395,
7776,
284,
29906,
29876,
861,
869,
1405,
2322,
29889,
29876,
861,
13,
13,
10454,
3863,
421,
30022,
6294,
29876,
861,
20571,
3174,
29914,
2917,
29889,
29876,
861,
6998,
13,
13,
418,
426,
13,
4706,
3577,
3563,
24040,
353,
2428,
29901,
1235,
1583,
353,
2428,
29889,
20571,
3174,
29936,
297,
13,
4706,
426,
13,
3986,
7953,
353,
1583,
29889,
29882,
21918,
16638,
1179,
29889,
4804,
14459,
13,
462,
29871,
29772,
4351,
29914,
5431,
15739,
13,
4706,
3980,
13,
418,
500,
13,
13,
8893,
372,
491,
2734,
29724,
29876,
861,
29899,
6272,
448,
29875,
29909,
7953,
29952,
1642,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6204,
23315,
363,
596,
1914,
9741,
13,
13,
11403,
445,
421,
30022,
6294,
29876,
861,
20571,
3174,
29914,
2917,
29889,
29876,
861,
29952,
934,
304,
6036,
278,
2048,
2768,
310,
13,
29952,
29882,
21918,
16638,
1179,
1673,
577,
393,
916,
9562,
1122,
8839,
373,
372,
29901,
13,
13,
418,
426,
13,
4706,
3577,
3563,
24040,
353,
2428,
29901,
1235,
1583,
353,
2428,
29889,
20571,
3174,
29936,
297,
13,
4706,
426,
13,
3986,
756,
29895,
514,
16638,
1179,
353,
2428,
29889,
29882,
21918,
16638,
1179,
29889,
15752,
426,
13,
9651,
975,
24040,
353,
1583,
29901,
2428,
29901,
426,
13,
795,
7953,
353,
1583,
29889,
4804,
14459,
29772,
4351,
29914,
5431,
15739,
13,
795,
2594,
353,
1583,
29889,
4804,
14459,
29772,
4351,
29914,
1646,
15739,
13,
9651,
3980,
13,
3986,
3980,
13,
4706,
3980,
13,
418,
500,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
1128,
304,
5142,
7581,
9741,
13,
13,
29940,
861,
3267,
4160,
788,
445,
4444,
304,
7034,
7070,
29914,
29876,
861,
359,
29914,
13305,
29889,
29876,
861,
6998,
13,
13,
418,
302,
861,
29889,
509,
16656,
25196,
29907,
14520,
353,
518,
13,
4706,
1732,
597,
29882,
2941,
336,
29889,
29883,
719,
29886,
29889,
517,
13,
4706,
1732,
597,
29882,
2941,
336,
29889,
29876,
861,
359,
29889,
990,
13,
418,
12940,
13,
13,
26526,
650,
1683,
12778,
445,
4444,
304,
7034,
7070,
29914,
29876,
861,
29914,
29876,
861,
29889,
5527,
6998,
13,
13,
418,
9311,
287,
29899,
19541,
29899,
29883,
14520,
353,
1732,
597,
29882,
2941,
336,
29889,
29876,
861,
359,
29889,
990,
320,
13,
4706,
1732,
597,
29882,
2941,
336,
29889,
29883,
719,
29886,
29889,
517,
13,
13,
10454,
1065,
421,
29876,
861,
29899,
6272,
1673,
421,
29876,
861,
29899,
4282,
1673,
322,
421,
29876,
861,
29899,
15903,
29952,
411,
445,
2984,
29901,
13,
13,
418,
1192,
3385,
4805,
29899,
19541,
29899,
29883,
14520,
1732,
597,
29882,
2941,
336,
29889,
29876,
861,
359,
29889,
990,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
402,
19127,
29915,
29879,
3041,
314,
681,
1661,
29899,
4801,
837,
262,
4695,
3489,
3553,
6494,
13,
13,
29954,
19127,
322,
13235,
2048,
2215,
1516,
1016,
29915,
29873,
679,
3412,
1532,
29901,
13,
13,
418,
2045,
597,
12443,
29883,
29889,
29882,
21918,
29889,
990,
29914,
29873,
945,
29914,
12443,
29883,
29914,
29873,
8522,
29914,
29946,
29900,
29896,
29906,
13,
418,
2045,
597,
3292,
29889,
510,
29914,
29940,
861,
3267,
29914,
29876,
861,
20571,
3174,
29914,
12175,
29914,
29955,
29955,
29929,
29906,
13,
13,
10401,
366,
1074,
385,
1059,
763,
445,
697,
13,
13,
418,
3577,
7953,
29899,
29900,
29889,
29955,
29889,
29896,
29889,
29900,
338,
9391,
2861,
304,
4567,
3577,
13,
418,
1426,
29899,
29896,
29889,
29906,
29889,
29900,
29889,
29946,
29899,
29929,
29947,
29945,
29900,
29953,
1389,
29890,
29896,
29890,
29929,
1114,
29906,
29941,
29941,
1327,
29945,
29883,
29906,
29890,
29906,
2585,
29945,
29896,
29953,
29881,
29929,
29896,
13,
13,
6098,
366,
505,
304,
25861,
6314,
421,
5431,
29952,
322,
599,
967,
8839,
1237,
29892,
13,
392,
337,
29899,
6252,
515,
22728,
29889,
13,
13,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
29937,
6804,
304,
679,
1371,
2023,
13,
13,
29950,
21918,
29899,
14940,
7788,
29901,
13,
13,
29899,
2045,
597,
3292,
29889,
510,
29914,
29940,
861,
3267,
29914,
29876,
861,
20571,
3174,
29914,
12175,
29914,
29946,
29929,
29946,
29896,
13,
13,
29899,
319,
435,
473,
3801,
964,
278,
379,
21918,
405,
29954,
22035,
12425,
13,
1678,
448,
3455,
29871,
29896,
29901,
2045,
597,
29876,
861,
359,
29889,
990,
29914,
29876,
861,
29899,
3359,
29914,
29906,
29900,
29896,
29945,
29899,
29967,
15623,
653,
29914,
29900,
29896,
29945,
29945,
29929,
29896,
29889,
1420,
13,
1678,
448,
3455,
29871,
29906,
29901,
2045,
597,
29876,
861,
359,
29889,
990,
29914,
29876,
861,
29899,
3359,
29914,
29906,
29900,
29896,
29945,
29899,
29967,
15623,
653,
29914,
29900,
29896,
29945,
29953,
29900,
29947,
29889,
1420,
13,
1678,
448,
3455,
29871,
29941,
29901,
2045,
597,
29876,
861,
359,
29889,
990,
29914,
29876,
861,
29899,
3359,
29914,
29906,
29900,
29896,
29945,
29899,
29909,
3193,
29914,
29900,
29896,
29953,
29929,
29896,
29906,
29889,
1420,
13,
13,
29899,
19731,
5322,
3772,
29875,
29901,
1732,
597,
4594,
29889,
2878,
279,
793,
29889,
990,
29889,
2679,
29914,
29940,
861,
13,
13,
15263,
405,
861,
7788,
29901,
13,
13,
29899,
421,
991,
597,
29876,
861,
359,
29889,
990,
16527,
13,
13,
29899,
2045,
597,
13155,
29889,
3608,
29889,
510,
29914,
23343,
8484,
29991,
23343,
29914,
29876,
861,
29899,
311,
955,
13,
13,
29899,
15913,
29876,
861,
359,
29952,
1622,
421,
2076,
29889,
29888,
2733,
356,
29889,
990,
29952,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Patrick Stewart to Return to Star Trek as Jean-Luc Picard - tosh
https://www.facebook.com/patrickstewart/photos/a.678451898909386.1073741828.678442918910284/1871329759621588/?type=3
======
zunzun
Is his character going to hobble around with a walker?
~~~
zunzun
"Fire oatmeal torpedoes!"
| [
1,
29871,
13,
29925,
8141,
860,
22389,
304,
7106,
304,
7828,
6479,
29895,
408,
4581,
29899,
29931,
1682,
14612,
538,
448,
304,
845,
13,
991,
597,
1636,
29889,
15445,
29889,
510,
29914,
5031,
9131,
303,
809,
442,
29914,
561,
15788,
29914,
29874,
29889,
29953,
29955,
29947,
29946,
29945,
29896,
29947,
29929,
29947,
29929,
29900,
29929,
29941,
29947,
29953,
29889,
29896,
29900,
29955,
29941,
29955,
29946,
29896,
29947,
29906,
29947,
29889,
29953,
29955,
29947,
29946,
29946,
29906,
29929,
29896,
29947,
29929,
29896,
29900,
29906,
29947,
29946,
29914,
29896,
29947,
29955,
29896,
29941,
29906,
29929,
29955,
29945,
29929,
29953,
29906,
29896,
29945,
29947,
29947,
13401,
1853,
29922,
29941,
13,
2751,
1360,
13,
29920,
348,
29920,
348,
13,
3624,
670,
2931,
2675,
304,
298,
711,
569,
2820,
411,
263,
6686,
261,
29973,
13,
13,
7377,
30022,
13,
29920,
348,
29920,
348,
13,
29908,
18654,
288,
271,
1004,
284,
4842,
9795,
29877,
267,
3850,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Farmers' protest rocks Indian capital
TEHRAN _ At a time when Indian Prime Minister is attending the G-20 summit, India's capital city has been rocked by farmers' protest.
Thousands of farmers from across the country took to streets in New Delhi on Friday, demanding relief from debt, higher prices for their crop and a session of parliament dedicated to their demands.
The unprecedented rally in New Delhi, experts believe, shows the growing unease and frustration among Indian farmers towards the BJP government for ignoring the needs of farmers, who contribute massively to the country's economy.
According to a report in NPR, India's agriculture sector employs nearly half of India's 1.3 billion people, but it makes up only about 15 percent of the country's economy. Low food prices have depressed rural incomes and farmers are frustrated.
The crowd, report said, comprises more than 200 farmer groups created after police shot to death six farmers at a similar protest in 2017, in the Indian state of Madhya Pradesh.
Social media also came alive with hashtags like #MarchWithFarmers, in support and solidarity with farmers. There is also a website for those who want to take part in the march, called Dilli Chalo, or “Let's go to Delhi.”
Modi has promised to support farmers, and insists they get a fair deal under his BJP rule. He has also accused opposition parties of using the farmers' plight for political gain.
In the run up to general election in India, observers believe these protests can hurt the chances of Narendra Modi led government to retain power as farmers make the vast percentage of voters.
The participation of many opposition leaders in the march has further made situation worrying for the ruling party. | [
1,
23354,
414,
29915,
10021,
23150,
7560,
7483,
13,
13,
4330,
20938,
2190,
903,
2180,
263,
931,
746,
7560,
15512,
7668,
338,
1098,
2548,
278,
402,
29899,
29906,
29900,
2533,
2415,
29892,
7513,
29915,
29879,
7483,
4272,
756,
1063,
7679,
287,
491,
2215,
13269,
29915,
10021,
29889,
13,
1349,
681,
4167,
310,
2215,
13269,
515,
4822,
278,
4234,
3614,
304,
19756,
297,
1570,
5556,
2918,
373,
28728,
29892,
9667,
292,
18892,
515,
2553,
29873,
29892,
6133,
26094,
363,
1009,
274,
1336,
322,
263,
4867,
310,
22765,
16955,
304,
1009,
1261,
4167,
29889,
13,
13,
1576,
443,
1457,
1133,
14927,
364,
635,
297,
1570,
5556,
2918,
29892,
2902,
1372,
4658,
29892,
3697,
278,
15678,
1597,
559,
322,
1424,
11036,
4249,
7560,
2215,
13269,
7113,
278,
350,
29967,
29925,
5874,
363,
5330,
8253,
278,
4225,
310,
2215,
13269,
29892,
1058,
29126,
4158,
3598,
304,
278,
4234,
29915,
29879,
26504,
29889,
13,
13,
7504,
3278,
304,
263,
3461,
297,
405,
10593,
29892,
7513,
29915,
29879,
18032,
545,
17535,
3710,
417,
952,
8886,
4203,
310,
7513,
29915,
29879,
29871,
29896,
29889,
29941,
24464,
2305,
29892,
541,
372,
3732,
701,
871,
1048,
29871,
29896,
29945,
10151,
310,
278,
4234,
29915,
29879,
26504,
29889,
17511,
9687,
26094,
505,
316,
13120,
17692,
297,
26807,
322,
2215,
13269,
526,
1424,
4627,
630,
29889,
13,
13,
1576,
19174,
29892,
3461,
1497,
29892,
7199,
4637,
901,
1135,
29871,
29906,
29900,
29900,
2215,
1050,
6471,
2825,
1156,
10974,
10322,
304,
4892,
4832,
2215,
13269,
472,
263,
2788,
10021,
297,
29871,
29906,
29900,
29896,
29955,
29892,
297,
278,
7560,
2106,
310,
4104,
29882,
3761,
1588,
21754,
29889,
13,
13,
6295,
1455,
5745,
884,
2996,
18758,
411,
756,
400,
810,
763,
396,
29924,
1279,
3047,
29943,
2817,
414,
29892,
297,
2304,
322,
7773,
279,
537,
411,
2215,
13269,
29889,
1670,
338,
884,
263,
4700,
363,
1906,
1058,
864,
304,
2125,
760,
297,
278,
8575,
29892,
2000,
360,
12840,
678,
7003,
29892,
470,
1346,
12024,
29915,
29879,
748,
304,
5556,
2918,
3178,
13,
13,
2111,
29875,
756,
22399,
304,
2304,
2215,
13269,
29892,
322,
1663,
2879,
896,
679,
263,
6534,
5376,
1090,
670,
350,
29967,
29925,
5751,
29889,
940,
756,
884,
28886,
19626,
13973,
310,
773,
278,
2215,
13269,
29915,
715,
523,
363,
8604,
11581,
29889,
13,
13,
797,
278,
1065,
701,
304,
2498,
8271,
297,
7513,
29892,
5366,
874,
4658,
1438,
10021,
29879,
508,
21682,
278,
521,
2925,
310,
16080,
25404,
3382,
29875,
5331,
5874,
304,
11551,
3081,
408,
2215,
13269,
1207,
278,
13426,
19649,
310,
9014,
414,
29889,
13,
13,
1576,
27577,
310,
1784,
19626,
20251,
297,
278,
8575,
756,
4340,
1754,
6434,
15982,
292,
363,
278,
364,
19478,
6263,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
The effects of deleterious mutations in cyclically parthenogenetic organisms.
Cyclically parthenogenetic organisms experience benefits of both sexual and asexual reproductive modes in a constant environment. Sexual reproduction generates new genotypes and may facilitate the purging of deleterious mutations whereas asexuality has a two-fold advantage and enables maintenance of well-fitted genotypes. Asexual reproduction can have a drawback as increased linkage may lead to the accumulation of deleterious mutations. This study presents the results of Monte Carlo simulations of small and infinite diploid populations, with deleterious mutations occurring at multiple loci. The recombination rate and the length of the asexual period, interrupted by sexual reproduction, are allowed to vary. Here I show that the fitness of cyclical parthenogenetic population is dependent on the length of the asexual period. Increased length of the asexual period can lead both to increased segregational load following sexual reproduction and to a stronger effect of deleterious mutations on variation at a linked neutral marker, either by reducing or increasing the variation. | [
1,
450,
9545,
310,
316,
280,
357,
2738,
5478,
800,
297,
5094,
28746,
635,
610,
6098,
6352,
7492,
2894,
12903,
29889,
13,
29907,
11078,
506,
635,
610,
6098,
6352,
7492,
2894,
12903,
7271,
23633,
310,
1716,
18287,
322,
263,
14167,
950,
337,
4704,
573,
18893,
297,
263,
4868,
5177,
29889,
21703,
950,
9483,
428,
16785,
716,
2531,
327,
7384,
322,
1122,
16089,
10388,
278,
282,
2007,
292,
310,
316,
280,
357,
2738,
5478,
800,
13452,
263,
14167,
950,
537,
756,
263,
1023,
29899,
8771,
10631,
322,
28936,
25413,
310,
1532,
29899,
29888,
4430,
2531,
327,
7384,
29889,
319,
14167,
950,
9483,
428,
508,
505,
263,
4216,
1627,
408,
11664,
1544,
482,
1122,
3275,
304,
278,
18414,
2785,
310,
316,
280,
357,
2738,
5478,
800,
29889,
910,
6559,
22981,
278,
2582,
310,
11240,
15021,
23876,
310,
2319,
322,
10362,
28191,
417,
333,
23093,
29892,
411,
316,
280,
357,
2738,
5478,
800,
13920,
292,
472,
2999,
658,
455,
29889,
450,
27878,
2109,
362,
6554,
322,
278,
3309,
310,
278,
263,
14167,
950,
3785,
29892,
27803,
491,
18287,
9483,
428,
29892,
526,
6068,
304,
13100,
29889,
2266,
306,
1510,
393,
278,
6216,
2264,
310,
5094,
28746,
284,
610,
6098,
6352,
7492,
4665,
338,
14278,
373,
278,
3309,
310,
278,
263,
14167,
950,
3785,
29889,
512,
1037,
1463,
3309,
310,
278,
263,
14167,
950,
3785,
508,
3275,
1716,
304,
11664,
2377,
1727,
1288,
2254,
1494,
18287,
9483,
428,
322,
304,
263,
23505,
2779,
310,
316,
280,
357,
2738,
5478,
800,
373,
19262,
472,
263,
9024,
21104,
17456,
29892,
2845,
491,
27668,
470,
10231,
278,
19262,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Muscarinic responses and binding in a murine neuroblastoma clone (N1E-115). Mediation of separate responses by high affinity and low affinity agonist-receptor conformations.
Murine neuroblastoma cells (clone N1E-115) possess muscarinic receptors that mediate multiple responses, including the elevation of cyclic GMP levels and the inhibition of receptor-mediated increases in cyclic AMP. Evidence is presented showing that two muscarinic agonist-receptor conformations in N1E-115 cells each separately mediate a cyclic nucleotide response. Pirenzepine inhibited the [3H]cyclic GMP response to carbachol with a KD value of approximately 6 nM, whereas it inhibited the ability of carbachol to reduce prostaglandin E1-mediated elevations in [3H]cyclic AMP levels with a KD value of 93 nM, thus differentiating between two classes of receptors involved in these responses. Ten muscarinic agonists were studied for their ability to mediate the two cyclic nucleotide responses. Six were as effective as acetylcholine in the reduction of [3H]cyclic AMP levels, but only two were as effective as acetylcholine in elevating [3H]cyclic GMP levels. Four agonists (arecoline, pilocarpine, oxotremorine, and McN-A343) were ineffective in increasing [3H]cyclic GMP levels. These four agonists and bethanecol, which could increase [3H]cyclic GMP levels only 18% as well as acetylcholine, behaved as competitive antagonists in this response to carbachol. These partial agonists, in contrast to carbachol, bound to only one class of muscarinic sites in N1E-115 cells with equilibrium dissociation constants determined by competition binding assays which agreed well with their respective EC50 values for their effect on [3H]cyclic AMP levels. The equilibrium dissociation constants for the partial agonists determined by their inhibition of carbachol in the [3H] cyclic GMP response also agreed well with their respective EC50 values for mediating the [3H]cyclic AMP response. Thus, the partial agonists bound to the same receptors at which carbachol mediated [3H]cyclic GMP formation, but with KD values about the same as their respective EC50 values for inhibition of prostaglandin E1-mediated [3H]cyclic AMP increases. The full agonists acetylcholine and methacholine, like carbachol, bound to two sites in N1E-115 cells. For the six agonists able to stimulate both responses at least to some degree, the ratio of their potencies at each response correlated with their respective efficacies at each response but with much more dependence in the [3H]cyclic GMP response.(ABSTRACT TRUNCATED AT 400 WORDS) | [
1,
3077,
4287,
262,
293,
20890,
322,
9956,
297,
263,
7167,
457,
452,
2192,
23190,
4125,
17432,
313,
29940,
29896,
29923,
29899,
29896,
29896,
29945,
467,
3436,
11685,
310,
5004,
20890,
491,
1880,
2756,
13593,
322,
4482,
2756,
13593,
946,
265,
391,
29899,
276,
14268,
14670,
800,
29889,
13,
29924,
332,
457,
452,
2192,
23190,
4125,
9101,
313,
16513,
405,
29896,
29923,
29899,
29896,
29896,
29945,
29897,
22592,
2301,
4287,
262,
293,
337,
1547,
943,
393,
14457,
403,
2999,
20890,
29892,
3704,
278,
11858,
362,
310,
5094,
28746,
402,
3580,
11174,
322,
278,
297,
6335,
654,
310,
337,
14268,
29899,
4210,
630,
16415,
297,
5094,
28746,
319,
3580,
29889,
7298,
5084,
338,
9132,
6445,
393,
1023,
2301,
4287,
262,
293,
946,
265,
391,
29899,
276,
14268,
14670,
800,
297,
405,
29896,
29923,
29899,
29896,
29896,
29945,
9101,
1269,
16949,
14457,
403,
263,
5094,
28746,
22699,
327,
680,
2933,
29889,
16937,
13233,
26215,
297,
6335,
1573,
278,
518,
29941,
29950,
29962,
8798,
506,
402,
3580,
2933,
304,
1559,
6740,
324,
411,
263,
476,
29928,
995,
310,
14235,
29871,
29953,
302,
29924,
29892,
13452,
372,
297,
6335,
1573,
278,
11509,
310,
1559,
6740,
324,
304,
10032,
16810,
351,
1049,
262,
382,
29896,
29899,
4210,
630,
11858,
800,
297,
518,
29941,
29950,
29962,
8798,
506,
319,
3580,
11174,
411,
263,
476,
29928,
995,
310,
29871,
29929,
29941,
302,
29924,
29892,
4550,
17473,
1218,
1546,
1023,
4413,
310,
337,
1547,
943,
9701,
297,
1438,
20890,
29889,
12444,
2301,
4287,
262,
293,
946,
265,
2879,
892,
12399,
363,
1009,
11509,
304,
14457,
403,
278,
1023,
5094,
28746,
22699,
327,
680,
20890,
29889,
18372,
892,
408,
11828,
408,
1274,
300,
2904,
305,
26496,
297,
278,
20376,
310,
518,
29941,
29950,
29962,
8798,
506,
319,
3580,
11174,
29892,
541,
871,
1023,
892,
408,
11828,
408,
1274,
300,
2904,
305,
26496,
297,
11858,
1218,
518,
29941,
29950,
29962,
8798,
506,
402,
3580,
11174,
29889,
12458,
946,
265,
2879,
313,
598,
1054,
457,
29892,
8230,
542,
6834,
457,
29892,
19100,
327,
1745,
272,
457,
29892,
322,
4052,
29940,
29899,
29909,
29941,
29946,
29941,
29897,
892,
297,
15987,
573,
297,
10231,
518,
29941,
29950,
29962,
8798,
506,
402,
3580,
11174,
29889,
4525,
3023,
946,
265,
2879,
322,
289,
621,
273,
687,
324,
29892,
607,
1033,
7910,
518,
29941,
29950,
29962,
8798,
506,
402,
3580,
11174,
871,
29871,
29896,
29947,
29995,
408,
1532,
408,
1274,
300,
2904,
305,
26496,
29892,
4010,
287,
408,
5100,
3321,
3677,
12841,
2879,
297,
445,
2933,
304,
1559,
6740,
324,
29889,
4525,
7687,
946,
265,
2879,
29892,
297,
12814,
304,
1559,
6740,
324,
29892,
3216,
304,
871,
697,
770,
310,
2301,
4287,
262,
293,
11840,
297,
405,
29896,
29923,
29899,
29896,
29896,
29945,
9101,
411,
26440,
766,
2839,
362,
17727,
10087,
491,
13888,
9956,
1223,
1036,
607,
15502,
1532,
411,
1009,
18067,
17522,
29945,
29900,
1819,
363,
1009,
2779,
373,
518,
29941,
29950,
29962,
8798,
506,
319,
3580,
11174,
29889,
450,
26440,
766,
2839,
362,
17727,
363,
278,
7687,
946,
265,
2879,
10087,
491,
1009,
297,
6335,
654,
310,
1559,
6740,
324,
297,
278,
518,
29941,
29950,
29962,
5094,
28746,
402,
3580,
2933,
884,
15502,
1532,
411,
1009,
18067,
17522,
29945,
29900,
1819,
363,
14457,
1218,
278,
518,
29941,
29950,
29962,
8798,
506,
319,
3580,
2933,
29889,
6549,
29892,
278,
7687,
946,
265,
2879,
3216,
304,
278,
1021,
337,
1547,
943,
472,
607,
1559,
6740,
324,
14457,
630,
518,
29941,
29950,
29962,
8798,
506,
402,
3580,
12409,
29892,
541,
411,
476,
29928,
1819,
1048,
278,
1021,
408,
1009,
18067,
17522,
29945,
29900,
1819,
363,
297,
6335,
654,
310,
16810,
351,
1049,
262,
382,
29896,
29899,
4210,
630,
518,
29941,
29950,
29962,
8798,
506,
319,
3580,
16415,
29889,
450,
2989,
946,
265,
2879,
1274,
300,
2904,
305,
26496,
322,
286,
621,
496,
26496,
29892,
763,
1559,
6740,
324,
29892,
3216,
304,
1023,
11840,
297,
405,
29896,
29923,
29899,
29896,
29896,
29945,
9101,
29889,
1152,
278,
4832,
946,
265,
2879,
2221,
304,
20436,
5987,
1716,
20890,
472,
3203,
304,
777,
7426,
29892,
278,
11959,
310,
1009,
3104,
15942,
472,
1269,
2933,
8855,
630,
411,
1009,
18067,
1801,
983,
2478,
472,
1269,
2933,
541,
411,
1568,
901,
26307,
297,
278,
518,
29941,
29950,
29962,
8798,
506,
402,
3580,
2933,
14030,
2882,
1254,
4717,
1783,
10014,
3904,
29907,
3040,
29928,
15531,
29871,
29946,
29900,
29900,
399,
1955,
8452,
29897
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
COOPERATION IN REDEMPTION
by Fr. William Most
All God's decrees are eternal, since He is unchangeable. So it is
evident that from all eternity He decreed the incarnation. But then of
course He necessarily decreed the Mother through whom it was to take place,
our Lady. So she is eternally joined with Him by divine decree.
The fact that she was to be associate as well as Mother was expressed
in the very first prophecy of the Redeemer: "I will put enmity between you
and the woman, between your seed and her seed. He shall bruise your head
and you shall bruise his heel."
Many Scripture scholars today profess they find it hard to understand
this text. They say there was only one woman alive at the time, Eve. So how
could it be Mary? But the Jews, strangely, understood more than Christian
scholars on this text. We have ancient Jewish documents, Targums. They are
Aramaic versions, mostly rather free, of the OT. We have four different
ones for the Pentateuch. They let us see how the Jews in ancient times
understood these prophecies. The Jews did not use "hindsight', seeing them
fulfilled in Christ, whom they hated. A great Jewish scholar of today,
Jacob Neusner, author of over 300 books on Judaism, made a great survey of
all Jewish writings after the fall of Jerusalem in 70 AD, in (Fortress, Phila. 1984). He found, remarkably, that up to the time
of the Babylonian Talmud, 500 - 600 A. D. , there was practically no
interest in the Messiah. Then interest returned in the Talmud, but the only
major point mentioned was that He was to be of the line of David. In
contrast, the Targums see the Messiah in so very many texts. Now it is
obvious, that these texts could hardly have been composed (we think the
Targums first existed in oral form) during literally centuries when there
was virtually no interest in the Messiah. Hence those portions of the
Targums must go back at least before 70 A. D. , Some scholars, e. g. , R.
Le Deaut , (Rome,
Biblical Institute, 1982, pp. 4-5) think the Targums first began in the 5th
century B. C. , in the scene we read about in Nehemiah 8:8.
For certain the Targums are ancient, and show us how the ancient Jews
understood these prophecies. So on Gen 3:15, instead of foolishly saying
that it means women do not like snakes -- as one prominent commentary, now says -- the Targums knew much. For example.
says: "And I will put enmities between you and the woman,
and between your sons and her sons. And it will happen: when her sons keep
the Law and put into practice the commandments of the Law, you will aim at
and wound him on the heel, and make him ill. For her son, however, there
will be a remedy, but for you, serpent, there will be no remedy. They will
make peace in the future in the day of King Messiah."
Two other Targums, Pseudo-Jonathan and the Fragmentary Targum speak
similarly, except that they use the plural, sons, instead of the singular.
But all three speak of a remedy for the son or sons of the woman, but not
for the serpent.
Many today point out that the same Hebrew verb is used twice,
for the son of the woman striking at the head of the serpent, and for the
serpent striking at his heel. So, they say: no victory, just a tie. But the
ancient Jews knew better. They knew there was a remedy for the son of the
woman. It is true, they cloud the picture a bit by injecting allegory, so
common at the time, but yet the basic message is clear: the son of the
woman will have a victory.
So the magisterium of the Church is quite right in seeing Our Lady and
her Son in this text, and seeing them as associated in the victory over the
serpent.
Vatican II sagely pointed out, speaking of this text and Isaiah 7:14:
"These primeval documents, as they are read in the Church, and are
understood in the light of later and full revelation, gradually bring
before us the figure of the Mother of the Redeemer. She, in this light, is
already prophetically foreshadowed in the promise given to our parents,
fallen into sin, of a redeemer (cf. Gen 3. 15. . . cf. Is 7. 14)."
#55 seems to have indicated that perhaps the human
authors of these texts may not have understood all that the Church now,
with full light and guidance of the Holy Spirit, is enabled to see. Our
Lady was prophetically foreshadowed in the promise. So Eve is the type, a
prophecy of Mary to come. What an indication that just as the first Eve
really contributed to the damage of original sin, so the New Eve, as the
Fathers so often called her, would really contribute to reversing that
damage.
St. Irenaeus, quoted twice by the Council on this matter in LG #57, saw
this typological sense. He even, doubtless inspired by the Spirit who
chiefly wrote the text, said, as the Council quoted it: "Thus then, the
knot of the disobedience of Eve was untied through the obedience of Mary."
We saw that St. Irenaeus probably was inspired, for just before these words
he had pictured all sin, original and personal, as a tangled, complex knot.
Then it was that St. Irenaeus added: "Thus then, the knot of the
disobedience of Eve, was untied thorough the obedience of Mary." But - and
this is why we are led to suppose special inspiration for S. Irenaeus - the
knot was not untied at the annunciation, the moment presupposed in the
context of St. Irenaeus. No, the knot was not untied until the divine
Victim cried out: "It is finished." So objectively, probably without
realizing it himself, St. Irenaeus implied even her cooperation on Calvary.
It is not out of place to suppose that a Father of the Church, an
agent in the hand of the Holy Spirit, might write more than he understood.
Really, LG itself implied that in #55, which we cited above. For it
indicated that perhaps the original writers of Genesis 3:15 and Isaiah 7:14
did not understand all that Holy Spirit had in mind, all that the Church
today, under His continued guidance, sees clearly.
Similarly, we might well suspect that Jeremiah the prophet in his
prophecy of the new covenant in 31:31ff did not see all that the Spirit
intended. For it would have been most natural for Jeremiah to have in mind
the obedience of the people, as the condition of the new covenant. Yet we
know well from Romans 5:19 and LG #9 that it was really the obedience of
Jesus that was required, not just that of the people. Did Jeremiah see
this? God could have revealed it to him. But that is quite uncertain.
And now, in passing, may we become so bold as to suggest a
possibility. Even though the Council at the start of chapter 8 of said it did not intend to settle controversies in Mariology, there
is reason to believe it wrote more than it realized, being likewise an
instrument in the hands of Divine Providence. But more on that later.
So it is clear already at the start from Gen 3:15 that not only was she
was to be the Mother of the Redeemer, but also that she was to be
associated with Him in the victory over satan. For Pius XII, starting with
Gen 3:15, reasoned that the victory over sin in which she was to share
would not be complete if she had ever been under original sin, and in
built the definition of the Assumption precisely
on the fact that she was associated with Him in the "struggle" against the
infernal enemy, and so, since the struggle was a work "in common", the
fruit there of, glorification, had to be similarly in common: resurrection
and ascension for Him, assumption for her.
In passing we might raise a question: if even the stiff-necked Jews
could see the mother of the Messiah in this text, then she who was full of
grace must have seen that fact too. And as we shall see presently, she knew
her Son was the Messiah. So, she was the woman foretold, to share in the
victory. Further, since the Church, in the person of Pius XII, could reason
that this victory implied an immaculate conception - very reasonably, for
the first Eve had an immaculate start, for original sin had not been
invented when she first appeared , so the new Eve should have the same
immaculate start -- if then, the Church now sees the immaculate conception
in this text of Gen 3:15, then would not our Lady herself have seen the
same truth, with her fullness of grace? In other words, it seems she knew
her own immaculate conception!
We should add too: many Scripture scholars, among them Pope John Paul
II ( # 24) believe the use of the word "woman", perhaps
an editorial adjustment, was used in Scripture to tie together four
passages: Gen 3:15, the Cana Episode, the scene at the foot of the Cross,
and the woman clothed with the sun in Apocalypse 12. We spoke in passing of
her as full of grace. We are well aware that many version today refuse that
translation, and water it far down, such as "favored one." But the official
text of the Church, the Vulgate, does have the rendering full of grace. And
not without reason. St. Luke used the Greek word , a perfect
passive participle, which is a very strong form. Further, the basic verb is
. Now verbs ending in form a class which in
general means to put a person or thing into the state indicated by the root
of the verb. e. g., leukos> means white, means to make white. The
meaning of the root of is favor or grace. So the verb means to
put her into favor or grace. But we need to be careful. If by favor we have
in mind only that God as it were sat there and smiled at her, but gave her
nothing, we would have the Pelagian heresy. So we might as well use the
word grace at the start, to indicate a gift He gave. Still further, the
Gospel uses in place of her personal name, Mary. That is a
usage comparable to our English pattern in which we might say of someone
that he is "Mr. Tennis", meaning the ultimate in the category of tennis. So
then she would be Miss Grace, the ultimate in the category of grace!
We cannot help noticing too that though many today deny that Isaiah
7:14 speaks of a virgin birth - although St. Matthew saw it-- yet she could
not have missed it. For she saw it being fulfilled in herself. It is true
the Targum as we now have it did not mark this passage as messianic. But we
know why, thanks to some splendidly honest modern Jewish scholars: Jacob
Neusner ( pp. 173 and 190), Samson Levey (, Hebrew Union College, 1974, p, . 152 and note
10), and H. J. Schoeps (, Westminster,
Phila, 1961, p. 129): Neusner tells us (p. 190) that when the Jews say the
christians using this prophecy, they pulled back, and said it was not the
Messiah. But they gave themselves away, for the Targums do mark Isaiah 9:5-
6 as Messianic, and everyone admits that the child in both 7:14 and 9:5-6
is the same child, for both passages belong to what is commonly called the
book of Emmanuel.
We will see more about Isaiah 9:5-6 later on.
To continue: Someone might well ask: Since He had come to redeem the
world, why did He spend most of that time, about 30 years, in a hidden
life? The answer is clear: He redeeming the world even then. Really,
Jesus merited for us not only on the cross, but in His whole life. The
Greek Fathers understood this especially well with their theology of
physical mystical solidarity. They meant that all humanity forms a unit, a
solidarity. Then the humanity of Christ comes to be part of that
solidarity. But His humanity is joined, in the unity of One Person, with
the Divinity. Therefore, as it were, a force or power spreads out from the
divinity, across the humanity of Christ and heals the rest of humanity.
This was so firm in the minds of the Eastern Fathers that St. Gregory of
Nazianzen in his was able to reason against Apollinaris:
"What He has not assumed, He has not healed." Apollinaris had said Christ
had no human rational soul. Within the framework of physical mystical
solidarity St. Gregory could argue that if He did not assume a human
rational soul, he did not heal human rational souls.
So they knew that even the first instant of His incarnation could have
been enough to bring about the whole of Redemption. Had He been born not in
a stable, but in a palace, had He stayed only moments, long enough to
say:"Behold, I come to do your will, O, God. . . . Father forgive them,"
that would have been an infinite redemption, coming from an infinite
person. The theme of His whole life was: "My food is to do the will of Him
who sent me", an echo and continuation of His initial words: Behold I come
to do your will O God."
So He spent about 30 out of His 33 years in the seclusion of a hidden
life. But since that hidden life was doing the will of the father, it was
infinitely meritorious. He wanted to teach the value of a family life
according to the Father's plan.
Now she was joined with Him in all this, and her part in all this was
meritorious, not infinitely, but immensely. We already saw that the New Eve
theme was contained in Genesis 3:15. So as New Eve her merit was not just
that of a private person, but that of the one appointed by the Father to
join in reversing the damage done by the old Eve.
Pope Paul VI, in an address to the 13th National Congress of the Italian
Feminine Center on Feb. 12, 1966 gave us a very profound statement:
"Christian marriage and the Christian family demand a moral commitment.
They are not an easy way of Christian life, even though the most common,
the one which the majority of the children of God are called to travel.
Rather, it is a long path toward sanctification." Even in the case of
ordinary couples, the path leads toward sanctification, if they act
according to the Father's plan. It is wonderfully sanctifying, if it is
undertaken precisely as doing the will of our Father in Heaven. Our Father
knew well how to entice, as it were, people to register for this course in
sanctification. He built into us a powerful attraction to the opposite sex.
If people follow through, after the initial emotion has simmered down, they
find themselves in a pattern of life which is not an easy one, but which
really is a long path towards sanctification. For the differences of male
and female psychology are tremendous, so great that even with an ideal
couple - not always to be found - each one could say honestly: "I have to
give in most of the time to make this work." And the generosity and
selflessness of even ordinary parents to their children is amazing. One
insurance commercial put it this way: "When you have children, their goals
become your goals."
The full perfection and sinlessness of Jesus the Son of Mary, and the
similar sinlessness of His Mother and St. Joseph would make this difficulty
of meshing two lives far less. Yet Mary and Joseph, and their Son, knew
that in living this family life they were following out the Father's plan
for mankind. And by , they were, as He said later at the
Jordan,"fulfilling all justice." They were doing what the Father willed.
But it is one thing to say that her living that family life was
meritorious, another thing to say that it was meritorious for our race. We
already noted that as New Eve she was appointed to help merit for all. But
there is more.
We get a start with the help of St. Paul, who in 1 Cor 12:26 wrote:
"If one member suffers, all suffer together; if one member is honored, all
rejoice together." We find this same thought - not strangely, for Paul as
trained as a Rabbi - in a text of Simeon ben Eleazar in the 2nd century, in
the 1. 14: "He [anyone] has committed a transgression: woe to
him. He has tipped the scale to the side of debt for himself and for the
world. He has carried out a commandment: blessings on him. For he has
tipped the scale to the side of merit for himself and for the world."
Even though this text belongs a century after St. Paul, the idea that
sin is a debt is so prevalent among the Rabbis, that we may be confident it
was there in Paul's day too. Really the concept of sin a debt which the
Holiness of God wants to have paid is found all over the Old Testament, the
intertestamental literature, the New Testament, the Rabbis, and the Fathers
of the Church.
It is so strong that Leviticus 4 calls for a sacrifice to be offered for
even , an unwitting violation of the law. The Holiness of God
wants all that is right to be done. In the intertestamental literature, for
example, we read in 3. 5: "In heaven next to it are the
archangels, who minister and make propitiation to the Lord for all the sins
of ignorance of the righteous. Or the 3:8-9:"The
righteous man continually searches his house to remove utterly [all]
iniquity [done] by him in error. He makes atonement for [sins of] ignorance
by fasting and afflicting his soul." Nor is the theme lacking the New
Testament. In Luke 12: 47-48 on the lips of Our Lord Himself: "The slave
who knew his master's wishes but did not prepare to fulfill them will get a
severe beating; but the one who did not know them, but did things
[objectively] deserving blows will get off with fever stripes". St. Paul in
1 Cor 4:4 had this sort of thing in mind when he wrote: "I have nothing on
my conscience, but that does not mean that I am justified." The in 2. 3 tells the Corinthians: "You stretched out your
hands to the almighty God, beseeching him to be propitious, if you had
sinned at all unwillingly." In the liturgy of St. John Chrysostom there is
still a line before the Epistle: "Forgive us every offense, both voluntary
and involuntary."
But as we said, it is one thing to say she merited much during the hidden
life. We got help from St. Paul to start. But now, more precisely: we read
several times that Moses appealed to the merits of Abraham, Isaac, and
Jacob and thereby won forgiveness for the sinful people. In
44. 1. R. Samuel ben Nahmani says Moses stood in prayer 40 days and 40
nights asking God to forgive the sin of the golden calf, but without any
result. But when he mentioned the merits of the fathers, God at once
forgave them. (Cf. A Marmorstein, (KTAV, 1968, . p. 151). . . . . The reason is that Abraham was
the Father of the whole people, and as such, his merits were of avail for
all.
Now when she pronounced her , and became the mother of the Head
of the Mystical Body, then ipso facto, as Pius XII observed, in his message
to the Marian Congress of Ottawa, Canada, on June 19, 1947: "But when the
little maid of Nazareth uttered her to the message of the angel. . .
she became not only the Mother of God in the physical order of nature, but
also in the supernatural order of grace she became the Mother of all who. .
. would be made one under the Headship of her divine Son. The Mother of the
Head would be the Mother of the members. The Mother of the Vine would be
the Mother of the branches." So already on that day of the annunciation she
became the mother of the members of the Mystical Body of which her Son
Christ was the Head.
So it is obvious: if the merits of Abraham counted for all His people,
so did her merits count for all those of whom she became the spiritual
mother.
So just as He merited for all of us not only on the cross, but also in
His whole earlier life, so she too merited for all of us.
She did this, of course, not independently of Him, but as His Mother and
member. She, in her humility was completely unlike Philo's picture of
Abraham ( 4. 27) who "by the innate goodness of
his natural dispositions had acquired a spontaneous, self-taught, self-
implanted virtue."
That word is in ill favor today among many, but it should not be
so. A merit is really a claim to reward. But all of us gain a claim to a
reward not by our own power - not even Our Lady can do more - but inasmuch
as we are members of Christ and like Him. In Romans 8:17: "If children,
then heirs, heirs of God, fellow heirs with Christ, provided we suffer with
Him in order that we may also be glorified with Him." In that way, and to
that extent, we gain a claim to a reward. To put it another way: by grace
we are adopted as sons of God, and even given a share in His very divine
nature, as 2 Peter 1;4 tells us. Sons, as sons, do have a claim to be in
their Father's house. It is only in this sense that we, and even she, merit
heaven. So the Council of Trent (DS 1532) taught that we get justification
without any merit at all on our part. Then, the possession of that
justification, since it makes us sons of God, and sharers it the divine
nature, gives us a claim to entrance into the mansions of our Father (DS
1582) whose sons we are. A claim, as we said, is the same as a merit. So it
is only in this sense that we merit heaven. St. Paul sums sit up compactly
in Romans 6 :12: "The wages of sin is death, but the free gift of God is
eternal life." Of course, once we achieve that dignity of sons and sharers
in the divine nature, then our works take on a great dignity, which calls
for reward:DS 1582).
Her merit on Calvary was, as we shall explain later, strictly beyond the
power of any actually existing creature to comprehend. But even before that
it was practically measureless. For among other things, there are three
special factors that affect how greatly an action is meritorious: the
dignity of the person, the work that is done, and the love with which it is
done.
What then of all that she did, with the quasi infinite dignity of the
Mother of God, as Pius XI wrote, in an Encyclical written for the 1500th
anniversary of the Council of Ephesus, which defined her divine motherhood:
"From this dogma of the divine motherhood as from the font of a hidden
gushing spring, flows the singular grace of Mary and her dignity, second
only to God. In fact, as Aquinas writes: 'the Blessed Virgin, from the fact
that she is the Mother of God, has a sort of infinite dignity from the
infinite good that God is."
As to the works themselves that she carried out, she not only did
ordinary things in the hidden life, but things of extraordinary difficulty
as we will soon explain.
The love with which she acted meant her attachment to the will of God.
But that attachment, which is the same as holiness, was so great that even
at the start of her life, as Pius IX wrote in , it was so
great that "none greater under God can be thought of, and no one but God
can comprehend it." Of course, God being all powerful, could create a
creature capable of understanding her holiness/love. But He has not done
that. So actually, only God Himself can comprehend it.
In regard to the work, the difficulty of the work done greatly increases
merit. It is not that difficulty as such is worth anything. Not at all. But
we have in us only one thing that is free, our free wills. Therefore if we
could make that free will match entirely the will of the Father, there is
nothing else to do. Full perfection is attained. But when someone acts in
the face of great difficulty, then his/her will must adhere to that will of
the Father with all the greater force, or else fail.
It is interesting to examine precisely how it is that difficulty
increases that ability, and increases merit. Since we are made up of two
parts, body and soul, or matter and spirit, and since the two are so
closely tied together as to add up to one person, it follows that if we
have a condition on either one of the two sides, for smooth running there
should be a parallel condition on the other side that condition sis called
a resonance. When it falls on the side of the body, as is most usual, it is
called somatic resonance.
Now all spiritual perfection lies in the attachment of our wills to
the will of God, for there is only that one free element in us. How is it
then, that we could not just make one act of acceptance of His will and be
instantly perfect? There are chiefly two reasons: 1)We cannot at anyone
time foresee all that His will may ask of us before the end of our lives;
2)the development on the spiritual side is tied to development on the
somatic side. But hat somatic development follows the laws of the growth of
bodies: plants, animals, and children grow not in a constantly smoothly
rising curve. Rather the pattern is a step graph, consisting of long
plateaus, with small rises in between. Sol if anything can shakeup the
bodily side, the somatic resonance, then it is possible for spiritual
growth to be large instead of in small steps. When things are difficult,
especially when one must hold on in the dark, the rise, if one does well,
can be very large. It was large so often in her life. Hence her great
growth, a growth that could well be compared to geometric progression in
which each number is multiplied by itself, e. g, 2 x 2 = 4; 4 x 4 = 16, 16
x 16 = 256 etc.
It is in view of this that the Father often puts persons in situations
where they must as it were hold on in the dark. Abraham had been told by
God that he was to be the Father of a great nation through Isaac. Yet later
- we do not know how long it was - God told Abraham to kill that son in
sacrifice. Abraham might well have said at that point: Now I recall you
told me I am to be the Father of a great nation through this son Isaac. I
must believe your word, and I do believe it. But now you tell me to kill
him before your promise can begin to be fulfilled. So please tell me which
of the two things you will me to do, and I will do it.
But Abraham said nothing of the kind. He simply started out, working
in the dark, that is, adhering to the will of the Father when it seemed
utterly impossible to do what the Father commanded. We know the outcome.
By putting Abraham into such a difficult position, God wanted Abraham
to profit spiritually in an enormous degree. Abraham did that, and His
faith was a merit for all his posterity.
Now Our Lady was put into such difficulty many times. First at the
annunciation, she knew at once from the words of the archangel that her Son
was to be the Messiah. For the angel had told her that her Son would reign
over the house of Jacob forever. Practically all Jews then believed that
only the Messiah would reign forever. Yet she knew the prophecy of Isaiah
53 about the terrible suffering and death of the Messiah. Ordinary Jews
seem to have had great difficulty with it, to such an extent that the
Targum on Isaiah 53 turned the meek lamb into an arrogant conqueror. She
would not do that, she would understand.
Her works were holy as she was holy. Isaiah loves to stress: God is
the Holy One. Zeus/Juppiter, chief god of Greece and Rome, was not so much
immoral as amoral. He lived beyond the reach of morality. The gods of
Mesopotamia, from whence the Hebrews came, were often of much of the same
temper. Thus the Mesopotamian gods sent the great flood not to punish the
immorality of the human race, but simply out of whim -and then were afraid
of it, and cowered on the battlements of heaven until it was over.
What a striking revelation was it then for the world when Psalm 11:7
proclaimed: "God is and He loves sedaqoth." He Himself observes
morality, and He loves things that are done in accord with morality - such
as the actions of Jesus and Mary in the Holy Family.
That word Holy, which the angels triply proclaimed before the
astonished gaze of Isaiah, really meant that God loves all that is morally
right. We can see this fact all over the Old Testament, the
intertestamental writings of the Jews, the New Testament, the Rabbis, and
the Fathers of the Church.
We have grown accustomed to the idea that there are three Persons in
the one God. But in her culture, and even to her, that idea was strange,
incomprehensible. Of course it is really incomprehensible to us too. It is
just that we have grown up with it, and so it never did have the impact it
would have when it first burst forth upon the world.
We saw it is obvious she knew her Son was to be the Messiah. That
understanding would be helped by Genesis 49:10, a line which again, so many
Catholic scholars find hard to understand, while fine Jews see it clearly.
Thus Jacob Neusner (op. cit. , p. 242 cites that line and then says: "It is
difficult to imagine how Gen 49:10 could have been read as other than a
messianic prediction." Not long before the annunciation, it was clear that
the time for the prophecy was at hand. For there had been some sort of
ruler from the tribe of Judah all along, until 41 B. C. when Rome imposed
Herod on them as Tetrach, and then in 37, as King. Herod by birth was not
of the tribe of Judah, was half Arab, half Idumean. Neusner also reports
(p. 12) that messianic expectation was intense and high at the time.
Did she also have to face the difficult belief in more than one Person
in God? Did she know He was to be divine? It is hard to escape that
conclusion.
First the archangel said her Son was to be conceived when the Holy
Spirit would her. That word was the same word used in Exodus
40:35 for the divine presence filing the ancient tabernacle in the desert.
She would easily grasp that. Then the archangel continued , the Son would be called Son of God. An ordinary Jew could be
called a son of God (cf. Hosea 11:1), but this was not the usual sense. He
was to be called Son of God for the unique reason that He would be
conceived by her being filled with the Divine Presence, like the Tabernacle
of old. Most likely she saw His divinity at this point.
But there were many helps toward seeing that in the Old Testament.
First, Isaiah 9:5-6, which, as the Targum shows, the Jews knew was
Messianic, said the child was to be , God the Mighty (he NAB
version as "God-hero" is completely indefensible, linguistically and
otherwise. Not even modern Jewish versions of Isaiah make such a
mistranslation, though they naturally would want to avoid the divinity of
the messiah). The difficulty the Jews had with this line was
understandable, for they had had monotheism hammered into them. So had she.
But what the stiff-necked Jews did not probably see, she, full of grace,
would hardly miss.
And there were additional helps in the OT, as we said:
In Psalm 80. 15-18 God is asked to visit this vine "and the stock which
your right hand has planted. . . . Let your hand be upon the man of your
right hand, upon the son of man whom you have strengthened for yourself."
Samson Levey () here comments: "It
would appear that the Targum takes the Messiah to be the son of God, which
is much too anthropomorphic and Christological to be acceptable in Jewish
exegesis." He notes that neither the earlier nor the later rabbis took up
this interpretation by the Targum. Rather, he says that some of the later
rabbis "carefully steer clear of any messianic interpretation " by the
Targum here. (In passing: we note that here the Messiah is called Son of
Man!)
Further, Psalm 45. 7-8 says: "Your throne, O God, is ever and ever. .
. . God your God has anointed you with the oil of rejoicing." Even though
some think the Psalm was occasioned by a royal marriage, the Targum saw it
as messianic. Levey even remarks that the Hebrew word for king in
verses 2, 6, 12, 15, and 16 is understood as God.
There is still more in Ezekiel 34. 11: God Himself said: "For thus
says the Lord God: Behold I, I will search out my sheep and seek them out."
We notice the repeated "I", which seems to stress the thought that God
Himself would come. But in verse 23 of the same chapter: "I will set one
shepherd over them, my servant David." The Targum Jonathan does treat the
psalm as messianic. Of course this is not conclusively clear, but there
could be an implication that the Messiah, called here "my servant David"
would be God Himself.
Again, in Jeremiah 23. 3 God said: "and I myself shall gather the
remnant of the my sheep from all the lands to which I have driven them."
But in verse 5: "I will raise up for David a righteous branch." That word
"branch" is often taken by the Targums to indicate the Messiah. Hence
Targum Jonathan on verse 5 does use "a righteous Messiah" instead of
"branch". Then, surprisingly, in verse 6: "And this is the name which He
shall call him: the Lord is our righteousness." In the later Midrash,
1. 51 we read :"What is the name of the King Messiah?
R. Abba b. Kahana said: 'His name is 'the Lord'". In the Hebrew text of
that passage, the word for Lord is Yahweh! It is astounding to find a later
rabbi doing such a thing. (cf. Levey, op. cit, p. 70).
Still another passage appears in Jeremiah 30. 11: "For I am with you -
oracle of Yahweh - to save you." The Targum clearly calls this passage
messianic. Levey notices this, and comments: "in v. 11 the apparent
anthropomorphism of God being with Israel, in the physical sense is
softened by the use of the word Memra" - Memra is a puzzling word in the
Targums, which seems in general to refer to the complex interplay between
God's constancy and the fickleness of His people - but a times, it seems to
mean God Himself. (On Memra cf. Bruce Chilton, ,
Glazier, 1987, p. lvi).
So there were multiple indications of the divinity of her Son. But, as
we said, this would be a shock to her, an occasion for holding on in the
dark. For she as we said had had monotheism hammered into her: but now she
learns that still another Person, he Son, is to be God!
She may even have picked up the fact that the Spirit who was to
overshadow her was a separate Person. It was entirely clear that the Spirit
was divine, from the connection to Exodus 40:35 as we said.
Then she would have to cope with a revelation even of the most Holy
Trinity. We, as we said above, have grown up with the concept of Three
Person but only One God. But if she picked up the implication we have
brought out, it would be something entirely new that burst upon her at this
point.
We can add: Not a few Saints have been given the grace to sense the
presence of Jesus in the Eucharist in Tabernacles. She who was full of
grace- how could she fail to sense the divine presence within her, for nine
months. But then, what reverence. A strong rabbinic tradition, beginning
with Philo ( 2. 14. 68-69) held that Moses after his first
encounter with God in a vision, never could bring himself to have sex again
with his wife. What reverence, what immense merit in her who had not just a
vision, but the physical presence of the Divine Son within her for nine
months! In passing, how could some today dare to think she must have had
several additional sons and daughters after Jesus, when even Moses could
not bring himself to that after just one vision. And what of Joseph, more
holy than Moses!
Was it easy, perhaps even not necessary for her to have faith after
such a vision? Not at all. She as we saw, had to hold on in the dark to
believe most difficult things. And further, after His birth, and during all
the hidden life, there would be a constant clash between two voices, as it
were, the voice of her faith telling her that this child is divine, and the
voice of her senses telling her that He feels like just any ordinary child,
and even has normal baby needs!
On entering into this world, as Hebrews said (10:7), He said: "Behold,
I come to do your will, O God." The Church teaches, though so many deny it,
that from the first instant of conception His human soul had the vision of
God, in which all knowledge is present. Pius XII even specified, in his
Encyclical (DS 3812) that at that point "when just received
in the womb of the Mother of God, He has all the members of the Mystical
Body continuously and perpetually present to Himself, and embraces hem with
salvific love. The same Pope repeated his teaching in
(1951 DS 3905) and still again in (1956, DS 3924). - We
add that anything taught repeatedly on the ordinary magisterium level is
infallible. So this surely is. - It is obvious that all throughout His life
He suffered anguish from the knowledge of all that He was to suffer. He
allowed us to see inside Himself, as it were, in Luke 12:50:"I have a
baptism to be baptized with, and how am I constrained until it is
accomplished!" He meant He knew He had to be plunged into the depths of
terrible suffering, and was as it were in a tight spot, could not get
comfortable until it would be over with. He let us look again in John
12:27: "Now is my soul troubled. And what shall I say? Father save me from
this hour." And then in Gethsemani the lifelong nightmare caught up with
Him, and He could not waken Himself by a scream to find it only a dream.
No, it was there, and He literally sweated blood, as the capillaries
adjacent to the sweat glands ruptured from the impossible interior tension
and poured out their red tide though those orifices. He even experienced
agonizing fear, as Mark 14:34 tells us. For His humanity was, by the will
of the Father and His own consequent self-emptying (Phil 2:7) unprotected
by divine resources from the natural consequences of so terrible a
prevision. So He was even moved to beg the Father to let the chalice pass.
Really, it could have passed, and there still would have been an infinite
redemption, since any act of the God-man, as we saw above, was of infinite
merit, infinite in reparation. B ut the Father willed that He should drink
the biter chalice even to the dregs, to show the immense measure - really
entirely beyond measure - of His love.
She began to suffer with Him and so to merit for us at the
annunciation, for then as we said, she knew the terrible prophecy of Isaiah
53. She knew Psalm 22 which He was to recite on the cross: "They have
pierced my hands and my feet"(22:16). She knew the related prophecy of
Zechariah 12:10: "They shall look on whom they have pierced, and they
shall mourn for as one mourns for an only son." Even the RSV fears to
render the underlined pronouns as the Hebrew has them. But the message is
plain:the one who is pierced is divine,"me";and "Him" refers to the Messiah
as if another person.
All spiritual perfection lies in aligning one's will with the will of
the Father. And when what He positively wills is known, it is required that
one positively will what the Father wills. So she as called upon even from
the start of her association with the suffering Messiah to will what she
knew the Father willed, what she knew her Son willed. She spoke her
to all that, perhaps not fully realized at the very moment of the
annunciation, yet surely present to her soul as she pondered all these
things in her heart, meriting immensely along with Him.
Not even the nativity scene, with the song of the angels, was exempt
from trials. His circumcision, the first shedding of His blood, was painful
to Him and therefore to her as well.
His presentation in the temple was most difficult: we might well call it
the offertory of the great sacrifice. Other parents bought their sons back
from the service of God. She and He, in obedience to the law, went through
that same ritual. But they knew it was not buying Him back. Rather, it was
giving Him over. For He, since He had had that divine vision in His soul
from the start and at the start had said: "Behold, I come to do your will O
God", He renewed that offering then, or rather, He continued it, with that
new expression of it. She too, continuing her , echoed that offering
of His.
Both knew what that implied, what it was to bring. Even though it was
well known in advance, yet to actually go through this offering must have
been painful indeed.
The prophecy of Simeon similarly, even though it conveyed no new
information to her, yet it would be painful to have to hear explicitly that
a sword would pierce her soul as He would be the stone on whom some would
stumble and fall, though some would rise.
Soon there came the threat to His life from Herod. This was in a way
strange indeed: He, the Messiah, whom she most likely knew to be even
divine, could He not protect Himself? But Joseph and Mary obeyed the angel
and went into exile into Egypt.
At age 12 something strange happened. He allowed His parents to be in
grief and distress for three days, while seeking HIm, to find Him in the
temple. His reply: "Did you not know that I must be about my Father's
business? -- this puzzled them. It need not mean they did not know who He
was. Rather, it is evident that His way of behaving was such a radical
departure from His usual kind and considerate way. It is that they could
not understand, and so had to hold on in the dark, with immense merit,
until the light dawned.
During the long years of that hidden life, humanly she might well have
wondered: when will He begin the mission for which He came? And yet, she
would find the thought of that mission hard to bear, for she knew all too
well to what it would lead.
At the start of His public life came the wedding at Cana. She, sin a
really feminine way, did not ask Him to do anything, she merely hinted,
saying: They have no wine. His response was such as to cause again an
occasion of holding on in the dark for her, with a chance for great
spiritual merit and growth. For the words "What is it to you and to me" in
the Old Testament do not carry a favorable color. There are two types of
this usage. One is in the sense of,"What did I do to bring this on?"
Examples are in Judges 11:12; 2 Chron 35:21 and 1 Kings 17:18. The other
type is about the same as saying: "This is your affair, not mine." Examples
are found in 1 Kings 3:13 and Hosea 14:8.
She did hold on well in the dark, as we can see from her words to the
waiters: Do whatever He tells you. And the outcome proved her faith was not
misplaced. It brought His very first miracle, the first open example of the
power of her intercession with Him. He advanced the hour. Some think that
word always refers to the hour of His death. But that would not at all fit
here. Rather, it is the time He had set for beginning His miracles. Really,
even so He did not change the time: in making His decision before then as
to when the time would actually come, He had taken into account in advance
her intercession. Without her intercession, the time would have been
somewhat later.
We might think of asking: Since she was full of grace at the start, how
could she grow? The answer is that sanctifying grace is simply the ability
to take in the vision of God face to face in the world to come. Since that
vision is infinite, and we are so finite, our capacity can always increase.
At the start, then, she was full of grace, in that she had all the ability
of which her soul was capable at that point. But that capability could
advance, especially by doing things that were difficult, such as holding on
in the dark.
So her merit for us, and her personal growth went on at a dizzying
pace. Again, we might compare it to a geometric progression.
We might be tempted to think that between the best of Sons and the
best of Mothers, everything would be sweetness and light. We already saw
the strange episode of finding in the Temple at age 12, a case that
required holding on in the dark. We saw another at Cana. Now we see some
very surprising cases. As Luke 11:27 tells us: "And it happened, when He
said these things, a woman in the crowd raised her voice and said to Him:
Blessed is the womb that bore you, and the breasts that you sucked. But He
said: Blessed rather are those who hear the word of God and keep it."
The thought is much the same in another passage, from Mark 3:20-35.
Some of those about Him, seeing He preached so intently that He would not
stop to eat, thought Him out of His mind, and went out to take Him by
force. Then -- if indeed the incident is chronologically placed -- the
scribes said He was casting out devils by the devils. Next, His Mother and
relatives came to a crowd where He was speaking. It was announced to Him.
Instead of inviting her in and telling the crowd: I want you to meet my
Mother, He replied "Who are my mother and my brothers? And looking around
on those who sat about Him He said: Here are my Mother and my brother.
Whoever does the will of God is my brother and sister, and mother."
Both incidents just mentioned not only do not praise or accept her, but
seem to reject or to put her down. Surely, both were difficult occasions
for immense merit of holding on in the dark. It would be only by pondering
in her heart that she could find the right interpretation.
Vatican II supplies the correct understanding in LG #58: "In the course
of His preaching, she received the words in which her Son praised those who
heard the word of God and kept it, as she was faithfully doing, more than
the reasons and bonds of flesh and blood." That is, He was making a
comparison of two forms of greatness: that of being the Mother of God -
which as we saw, is a quasi-infinite dignity - and hearing and keeping the
word of God. The second category is greater than the first. But she was at
the peak in both categories. She had indeed received the Word of God at the
annunciation, and thereby received the Word made flesh, and further she had
kept His words faithfully, as Vatican II said. That was even in her a
greater dignity than that of the Mother of God.
Not only on the occasions just mentioned, but all throughout His
public life, when He received the acclaim of the crowds, she in humility
had remained in the background.
But towards the end, the Apostles, and so many would have been able to
see He was in danger of death. There may be a hint of that in Mark 10:32:
they are on the road to Jerusalem, and "Jesus was walking ahead of them;
and they were amazed, and those who followed were afraid." Already long
before this point His enemies had resolved to ill Him. They were afraid to
arrest Him openly, for the crowds considered Him a prophet. But He, even
without the vision in His human soul, just naturally, could have seen this
coming. And she too must have seen it coming. Yet just as He went ahead,
wanting to fulfill His redemptive sacrifice, so too would she.
When He was in agony in the garden, she must have known even if at
some distance. For there seems to be such a thing as extrasensory
perception, which is probably just a natural phenomenon. So many have had
it, and it comes especially to mothers when their sons are in danger. So
she must have perceived His agony, and continuing her would have
willed what she knew the Father willed.
Then He was arrested, and everything was all too obvious. She, as we
said, had modestly and humbly remained in the background when He was
acclaimed by the crowds. But now, when the terrible blackness came over
Calvary, she moved out of the shadows and into that darkness, to share His
disgrace, to merit with Him, even though of course only in subordination to
Him.
It is not enough to say that He redeemed us by dying. Of course that
is true. But we still ask: How did that operate? There are three aspects to
the redemption: new covenant, sacrifice, payment of debt or rebalance of
the objective order. She shared in a singular way in all aspects, by her
obedience to the will of the Father.
First it was a new covenant. At Sinai, God had promised favor with
obedience as the condition. Jeremiah 31:31-33 had foretold a new covenant,
again with obedience as the condition. Probably Jeremiah did not see that
the obedience was to be that of the divine Messiah and His Mother. Yet that
was to be it. At the Last Supper, He said over the chalice: "This is the
chalice of my blood, the new and eternal covenant, which is to be shed for
you and for all so that sins may be forgiven." Yes, the Father's love of
objective goodness did not wish to forgive sins without a rebalance of the
moral order. So His blood was to be shed "so that sins might be
forgiven."But as we said the condition of that new covenant was obedience,
first His obedience even to death. But also her obedience in willing what
the Father willed. She had been appointed to this work as the New Eve, as
the one foretold in Genesis 3:15 as sharing in the struggle and the victory
over sin and death.
Secondly, it as the great sacrifice. She was even physically present
at it. In Isaiah 29:13 God had complained:"This people honors me with their
lips, but their hearts are far from But now the Hearts of Jesus and His
Mother were not far from the will of the Father. Rather, they, knowing what
He willed, willed the same-- all sanctify as we said consists in conformity
of one's will with the will of the Father. And when the soul know what He
positively wills, then it must and will positively will. it. So she then at
immense cost, did even will that He die, die then, die so horribly.
He on entering into the world had offered that: Behold I come to do your
will O God. She in unison of Heart has said her which she not only
never retracted, but intensely continued, even to the Cross. The difficulty
of willing His death is literally beyond our comprehension. For to do that
was to go most directly contrary to her love for Him. How great was it?
Strictly beyond the comprehension of anyone but God Himself. And this is
most strictly true, is no mere rhetoric. For we saw already that Pius IX,
in defining the Immaculate Conception, had said that her holiness at the
start was so great that "none greater under God can be thought of, and no
one but God can comprehend it."But, in practice, holiness and love of God
are interchangeable terms. Therefore, her love, a principal measure of her
suffering, was really beyond the ability of any actually existing creature
to comprehend. We said "actually existing creature" since of course God
being almighty, could have created a creature capable of comprehending her
Son. But as a matter of fact, He has not done that. So only God could
comprehend her love, and consequently, her suffering. This was done in
union of will. It was that obedience of will which gave all the value to
His sacrifice. Without that it would have been a tragedy, not a sacrifice.
It would have been as empty as that of which God complained in Isaiah
29:13. But she by her obedience, at cost beyond our comprehension, joined
in that will which gave all the value to His sacrifice. She did it as the
new Eve, as the one foretold as sharing in the victory over sin and death.
The third aspect is that of the rebalance of the objective order, or
the payment of the debt of sin. We saw that the Holiness of God really
means His love of all that is objectively right. Sinners had taken from the
scales, as it were - we recall the words of Simeon ben Eleazar - what they
had no right to take. He, and she in union with Him, both owing nothing,
yet gave up, put back more than all sinners of all ages together had taken
away. This was a self-emptying spoken of in Philippians 2:7. This was the
sacrifice that made our peace and won all forgiveness and grace, once for
all.
We have been working basically with Scripture alone to show the fact
of Our Lady's immediate cooperation in the objective redemption, by way of
obedience, which was part of the covenant condition, of the essential
interior disposition of the sacrifice, or rebalancing the objective order.
This fits perfectly with the teachings of the magisterium. There are 17
documents, from every Pope from Leo XIII to John Paul II inclusive, plus
Vatican II that teach this truth.
To illustrate, we look at #61: "The Blessed Virgin,
predestined from eternity along with the incarnation of the divine Word as
the Mother of God, by design of divine Providence was the gracious Mother
of the divine Redeemer, in a singular way more than others, and the
generous associate and humble handmaid of the Lord. In conceiving Christ,
in bringing Him forth, in nourishing Him, in presenting Him to the Father
in the temple, in suffering with her Son as He died on the Cross, she
cooperated in the work of the Savior, in an altogether singular way, by
obedience, faith, hope and burning love, to restore supernatural life to
souls. As a result, she is our Mother in the order of grace."
That is indeed a magnificent text. It begins as we did, with her union
with Him in the eternal decree for the Incarnation. It speaks of her
association with Him throughout all His life, and especially in the great
sacrifice itself. It says she did this in a singular way - which means that
even though St. John was present at the Cross, he was not in the position
in which she was, the New Eve, His associate, the one appointed "by design
of Divine Providence" to act thus. It stresses especially that her role was
one of obedience. LG #56 had twice said her role was accomplished by
obedience, in contrast to the disobedience of the first Eve, to undo what
the first Eve had bound by disobedience. John Paul II in #19 expressed the same truth excellently,"as a sharing in the
sacrifice of Christ - the new Adam - it becomes in a certain sense the
counterpoise to the disobedience and disbelief embodied in the sin of our
first parents. Thus teach the Fathers of the Church and especially St.
Irenaeus, quoted by the Constitution : 'The knot of Eve's
disobedience was untied by Mary's obedience. . . . '"
There is something really remarkable that not everyone has noticed
here. At the start of that Chapter 8 of the Council had
said it did not intend to settle debates in Mariology. Yet we believe it is
clear that it did settle the chief debate. Such a thing is very possible.
We saw above that in LG #55 the Council indicated that perhaps the human
writers of Gen 3:15 and Is 7:14 did not understand all that the Church now,
guided by the Holy Spirit, has gradually come to see. We noted it is likely
that Jeremiah did not fully understand his prophecy of the new covenant. We
saw that St. Irenaeus implied more than he is likely to have seen, in his
words about the knot, cited by the Council. So too the Council, an
instrument in the hands of Divine Providence, certainly could, if God so
willed, write more than it saw.
Now before the Council there were two positions about her cooperation on
Calvary: 1)The German theory of active receptivity, in which she would, as
it were, merely put forth her hand [active] and pick up what she had no
share in producing [receptivity]. 2)The position of Cardinal Santos and
associates, according to which she shared by meriting, that is,
contributing to establishing a claim to all forgiveness and grace. Hence in
LG #61 and 56 the Council said, three times, that she shared by obedience.
But as we have explained, obedience is sharing in the covenant condition,
sharing in the interior disposition which gave all its value to the great
sacrifice, obedience is rebalancing the objective order of paying the debt
incurred by the disobedience of our first parents, and all other humans. Of
course that is not merely picking up something which she had no share in
producing (to say that is really a Lutheran theology of redemption: merely
appropriating). No, she shared actively in the ways indicated.
How actively? Any soul should positively will what the Father wills.
Since there is in us only one free thing, our free wills, to align that
will with the will of the Father is all the perfection requires. She in
that dread hour knew what the FAther willed, that her Son die, die then,
die so horribly. So she was called upon not to just passively acquiesce,
but to actively will what the Father willed! She did that, heroically, and
did it going counter to her love, which was so great that, according to
"none greater under God can be thought of, and no one
but God can comprehend it." ( spoke of her holiness -but
holiness and love are in practice interchangeable terms). So her suffering
is literally beyond our comprehension, beyond that of any actually existing
creature (though God could create a creature to comprehend it, but actually
He has not done so). Again, John Paul II, in , after
saying in that he intended to deepen the theology of
Vatican II on her faith, wrote in #18: "How great, how heroic, then, is the
'obedience of faith' [Rom 1:5] shown by Mary in the face of God's
'unsearchable judgments'! How completely she 'abandons herself to God'
without reserve, 'offering the full assent of the intellect and the will'
to him whose 'ways are inscrutable'. . . . At the foot of the Cross Mary
shares through faith in the shocking mystery of this self-emptying [cf.
Phil 2:5-8]. This is perhaps the deepest 'kenosis' in human
history. Through faith the Mother shares in the death of her Son, in his
redeeming death. . . ." Now since according to St. Paul, faith requires
belief in God's word, confidence in His promises, and above all, the
'obedience of faith' [cf. Rom 1:5] that is, the full alignment of human
will with the will of the Father, so she by her faith shared in the
obedience that is the covenant condition, in the interior disposition of
the sacrifice, in the rebalancing of the objective order or paying the debt
of all sin, which is really the same as the price of redemption [cf. 1 Cor
6:20; 7:23].
Of course, this is far beyond any mere "active receptivity".
We can see that truth by Scripture, as we have done, by the words of
Vatican II, and by the Encyclical .
Now about the objection that since she had to be redeemed, she could not
cooperate in the redemption, which would include her own redemption, we
have two replies:
1)the Magisterium has taught repeatedly, so often as to constitute an
infallible teaching, that she did so cooperate. We saw above how precise
and clear this teaching is, we saw it cannot be taken as something merely
loose or vague, especially since LG ##56 & 61 had said three times that she
shared by obedience, the covenant condition, and that which gave its value
even to His sacrifice. Pius XII, in the constitution solemnly defining the
assumption, had even gone so far as to speak of her role on Calvary as a
work "in common" with Him. Even if we could not explain the how, we should
still believe an infallible teaching. The saying is very true: a thousand
difficulties do not add up to one doubt, when the assurance of the truth is
full.
2)One major aspect of the redemption is that it is a new covenant. Two
comments on that:
a)He who makes a covenant does not ask, need not ask of a proposed
covenantor: Are you worthy to fulfil this condition, so that if you do
this, I will do that? No, the one who makes the covenant has the sovereign
right to set whatever terms and conditions He wishes, and to choose whoever
he wishes as a covenant partner, especially when the originator of the
covenant is God Himself. Really, He could have set as a condition for the
whole of redemption an animal sacrifice by any ordinary human, and have
even bound Himself by advance promise to accept it.
b)There are two levels within the new covenant, so that if we ask
why God gives good things under it, there are two answers, on the two
levels. First, on the most basic level, everything He gives is unmerited,
unmeritable, for no creature by its own power can establish a claim on God.
And He cannot be moved at all. But then, on the secondary level, that is,
given the fact that the Father has freely created and entered into a
covenant, then if the human fulfills the condition set, the Father owes it
to Himself to give what He has promised. Really, even the death of Jesus
was on this secondary level. It did not move the Father: He could not be
moved, did not need to be moved. It was because the Father always loved us
that Jesus came, not that Jesus came and then the Father dropped His anger.
The old language on this subject often spoke much of meriting
redemption on a basis of justice. But we must never forget that no creature
at all can ever establish any kind of claim on God, whether in justice or
on a lesser level, by its own power. It can establish any sort of claim
only if God as it were says: "If you do this, I will do that." So St.
Augustine wrote well in saying to God ( 9. 5): "You deign to
even become a debtor by your promises to those to whom you forgive their
debts."
So there is no need to think of logical momenta in her cooperation, as
if she had to earn on a primary, basic level. No, as we saw, even the work
of Jesus, infinite though it was, was on the secondary level. It was, to
borrow an expression from St. Thomas, a (ST I. 19. 5. c)
"Vult hoc esse propter hoc, sed non propter hoc vult hoc. That is: God in
His love of good order, of all that is right, loves to have one thing in
place to serve as a reason or title for giving the second thing, even
though that title does not at all move Him. Again, we must not forget that
He cannot be moved, and needed not to be moved to love us.
I had a very indulgent grandfather who acted somewhat in this way.
Each year the day before New Year's Day he would tell me: "Now phone me
tomorrow. If you can say Happy New Year before I do, you win a dollar."
This of course was a setup. He arranged a condition which he did not at
all need, which did not at all earn the dollar. But in his generosity he
was trying to find a fine way to give. St. Irenaeus tells us (4. 14. 1):
"In the beginning God formed Adam not because He stood in need of man, but
that He might have someone to receive His benefits."
When we finally grasp this perspective, when we realize that even the
merits of His Son did not move the Father, who did not need to be moved,
who could not be moved, but who made a setup suited to His own purpose - we
already saw that that purpose entailed two things: His desire to fully
satisfy everything that was right, i.e. , to rebalance the scales of the
objective order, and, secondly to provide a means of giving to us, of
making us open to receive - then we think again of my grandfather on New
Year's Day.
Within, then, such a framework, with such an attitude on the part of
Our Father, if He, the supreme master who makes the covenant, wants to set
whatever condition it pleases Him to set, then if any human, even if it
were a mere, an ordinary human, if that human fulfills the covenant
condition, then the human is providing the Father with a reason for giving,
which the Father did not need, but yet willed for the two reasons just
reviewed. So if Our Lady joins in the condition set by the Father, there is
no problem at all: she is meeting the condition which His excessive
generosity liked to set, as a means of giving for a great New Year's Day.
Every comparison limps. Very true. And our does limp. But to limp
means to be partly parallel, partly not. So there is in our comparison a
lack of parallel in that what the Father in Heaven calls for is not just a
phone call, but the terrible suffering of His Son, and the incomprehensible
suffering of the Mother of that Son, so that even, as St. Paul says in Rom
8:17: "We are heirs provided we suffer with Him. . . ." But there is still
a great parallel in that in both cases the Father receives no benefit. What
is done at His request does not at all move Him: . The request made by the Father is still basically a means of giving
which He loves to have for the two reasons given above, that He loves all
objective goodness (here, rebalance), and that it is to benefit us His
children.
Now that all graces have been earned, once for all (cf. Hebrews
9:29), is there further role for Our Lady? The mere fact that she shared in
earning all graces -- for Calvary did not earn just some graces, but all
graces -- would all by itself warrant our calling her the Mediatrix of all
graces.
But there is much more. We saw above that Moses more than once
appealed to the merits of Abraham in asking God to grant forgiveness. Did
this mean that Abraham at the precise moment asked the Father to give
forgiveness? Before the death of Christ, Abraham would not have yet had the
beatific vision, in which He could see what Moses was asking and respond.
Yet in some way we may suppose God did take Abraham into account.
This could have been in two ways. First, The Father even without
giving Abraham the beatific vision could have made known to Abraham that
Moses was appealing for help. Then Moses could have responded. Second, even
if Abraham was not made aware of the request of Moses, yet the established
merit of Abraham would of itself provide a reason- a "hoc propter hoc" for
giving forgiveness.
We may speak in a parallel way about our Lady, except that there is no
doubt that she now sees all her spiritual children and all their needs in
the face to face vision of which St. Paul tells us in 1 Cor 13:12, the
beatific vision. That vision is of course, infinite. A creature will see in
it in proportion to the degree of grace with which that creature left this
life. But she was full of grace, grace was so great that "none greater
under God can be thought of, and only God can comprehend it" Or, as we saw,
her suffering with Her Divine Son was beyond our comprehension. So she even
now sees in that face to face vision all of her children and knows all of
their needs. She can then actively ask for them by way of intercessory
prayer. We are tremendously numerous, and our needs numerous, yet that is
not too much for her soul to take in, enlightened by a light proportioned
to her fullness of grace.
Secondly, even if she were not asking individually for our needs, yet
her merits, beyond our comprehension, provide a "hoc propter hoc", a reason
for the granting of what we need. The Father already wants to grant all
forgiveness and grace - He bound Himself by accepting the price of
redemption, which is infinite, to grant forgiveness and grace infinitely.
So there is no limit at all to that to which He has bound Himself to give.
The only limit is imposed by the receptivity or lack thereof on the part of
us individually. We recall that His commandments were given to tell us how
to be open to receive that which He so intensely wills to give.
So there are two scriptural reasons why we may and should call her
Mediatrix of all graces.
We add that she has a role in each Mass, the very heart of the
distribution of all graces. For a sacrifice has two elements, the outward
sign, and the interior disposition. As to the outward sign, the body and
blood on the altar are still those which she provided for her Son. As to
the interior disposition, just as His attitude of obedience to the Father
today is a continuation of that with which He left this world, so too her
acceptance of the Father's will which she had at Calvary, did not diminish
thereafter, and now is permanently continuing in the glory of heaven. John
Paul II confirmed these deductions in an address to the crowds in St.
Peter's square on Sunday Feb. 12, 1984 (, English
edition, Feb. 20, 1984, p. 10):"Today I wish to dwell with you on the
Blessed Virgin's presence in the celebration of the Liturgy. . . . Every
liturgical action. . . is an occasion of communion. . . and in a particular
way with Mary. . . . Because the Liturgy is the action of Christ and of the
Church. . . she is inseparable from one and the other. . . . Mary is
present in the memorial - the liturgical action - because she was present
at the saving event. . . . She is at every altar where the memorial of the
Passion and Resurrection is celebrated because she was present, faithful
with her whole being to the Father's plan, at the historic salvific
occasion of Christ's death."
Again, as before, we see if the magisterium confirms our Scriptural
understanding just given that she is Mediatrix of all graces. And we are
not disappointed.
Vatican II, in LG #62 did call her Mediatrix. It did not, however, add
the words "of all graces". The reason? First of all, it was not needed. For
as we said, the very fact that she shared in earning not just some but all
graces, means she shares in every grace that is given out. Secondly, there
was the unfortunate influence of Protestant observers at Vatican II. As C.
Balic, one of the drafters of Chapter 8, tells us (in "El Capitulo VIII de
la Constitucion 'Lumen gentium' comparado con el Primer Esquema de La B.
Virgen de la Iglesia" in 27, 1966, p. 174) Protestant
observers had said in advance that if the Church said too much, dialogue on
the topic would be ended.
But further, the Council itself added a footnote to its statement that
she is Mediatrix, referring us to texts of Leo XIII, St. Pius X, Pius XI,
and Pius XII, which call her Mediatrix of all graces. Really, there are
still more papal texts: Leo XIII (Encyclical, ) wrote: "nothing at all of that very great treasury of all
grace which the Lord brought us. . . is imparted to us except through Mary"
and again ( internal quote is from St.
Bernardine, n. 6): "'Every grace that
is communicated to this world has a threefold course. For by excellent
order, it is dispensed from God to Christ, from Christ to the Virgin, from
the Virgin to us. '" St. Pius X (, Feb. 2, 1904) called her
"Dispensatrix" of all the gifts which Jesus gained for us by His death."
And in , of August 27, 1910, he called her "the
treasurer of all graces." Pius XI three times also called her "treasurer of
all graces" (in AAS 14, 186; AAS 16, 152, and AAS 18. 213). Pius XII
(, May 13, 1946) said "nothing is excluded from her
dominion." John XXIII (, Jan 31, 1959)
wrote:"Did not the Lord will that we have everything through Mary" and in
II, 66:
"From her hands hope for all graces."
Her Son promised to send us a new Advocate (Jn 15:26; 16:7). He
Himself had been their Advocate and still is (1 Jn 2:1). She was and is, as
we saw, intimately associated with Him as advocate. Further, just as Israel
was considered the spouse of God (Is 54:5; Hos 2:19), and as St. Paul spoke
of the Church as the spouse of Christ (2 Cor 11:2; cf. Eph 5:25), so too we
could speak of her as the Spouse of the Holy Spirit to whom she is ever
most perfectly faithful, her soul ever responding to any slight breeze from
the Spirit sent through His Gifts.
In Isaiah 55:9 God said: "As the heavens are higher than the earth, so
are my ways higher than your ways, and my thoughts than your thoughts." On
hearing this a man might well wonder: How then can I understand God, how
know what He wills, how to deal with him? But In Jesus we have the answer.
He, though a Divine Person, has a fully human heart, which we can
understand. Pius XII in even says that Jesus has a love
of feeling in His human heart. But then, someone might still say: Yes, but
His heart is the heart of a Divine Person. However, her heart is purely,
entirely human, and yet it is completely in unison with His. So her
Immaculate Heart can and does assure us we have in heaven an Advocate whom
we can understand, who understands us. who loves us to the extent that like
the Father, she did not spare her only Son, but gave Him up for all of us.
In Apocalypse/Revelation 12 we find the image of the woman clothed
with the sun. Interpretation is debated. We have statements on it by
several Popes. St. Pius X (ASS 36. 458-59) said "No one of us does not know
that that woman signifies the Virgin Mary. . . . John saw the Most Holy
Mother of God already enjoying eternal happiness, and yet laboring from
some hidden birth With what birth? Surely ours." Pius XII( AAS 41. 762-63)
said: ". . the Scholastic doctors have considered the Assumption of the
Virgin Mother of God as signified not only in the various figures of the
Old Testament, but also in that woman clothed with the sun." Paul VI
(, May 13, 1967) said that this vision "is interpreted by
the sacred liturgy, not without foundation, as referring to the Most
Blessed Mary, the Mother of all men by the grace of Christ the Redeemer."
John Paul II ( #24) says the use of the word woman ties
together Gen 3:15, Cana, the foot of the cross, and this vision.
These Papal texts are not fully definite. But it seems that some
features of the vision do refer to Our Lady, others to the Church, in view
of the labor. Now there is a well known Hebrew pattern in which an
individual stands for and is identified with a collectivity. So this image
could stand for her as an individual, but as identified with the Church.
B. J Le Frois, in a dissertation for the Biblical Institute in Rome in
1954, suggests that if the image stands
for both, it might be a forecast that before the end the Church will take
on an especially Marian character, in an age of Mary. St. Louis de
Montfort, in #49 does predict an age of Mary.
So this might be taken as a scriptural image of her as the Church,
which is the spouse of Christ and/or the Holy Spirit, and so our Advocate.
23
-------------------------------------------------------------------
The electronic form of this document is copyrighted.
Copyright (c) Trinity Communications 1994.
Provided courtesy of:
The Catholic Resource Network
Trinity Communications
PO Box 3610
Manassas, VA 22110
Voice: 703-791-2576
Fax: 703-791-4250
Data: 703-791-4336
The Catholic Resource Network is a Catholic online information and
service system. To browse CRNET or join, set your modem to 8 data
bits, 1 stop bit and no parity, and call 1-703-791-4336.
------------------------------------------------------------------- | [
1,
4810,
4590,
1001,
8098,
2672,
5195,
2287,
3580,
29911,
2725,
13,
1609,
4693,
29889,
4667,
7849,
13,
3596,
4177,
29915,
29879,
9263,
267,
526,
634,
17196,
29892,
1951,
940,
338,
443,
3167,
519,
29889,
1105,
372,
338,
13,
5750,
1693,
393,
515,
599,
634,
824,
537,
940,
9263,
287,
278,
5528,
2753,
362,
29889,
1205,
769,
310,
13,
15775,
940,
12695,
9263,
287,
278,
21869,
1549,
6029,
372,
471,
304,
2125,
2058,
29892,
13,
473,
10040,
29889,
1105,
1183,
338,
634,
824,
635,
8772,
411,
18136,
491,
25616,
1602,
929,
29889,
13,
1576,
2114,
393,
1183,
471,
304,
367,
25836,
408,
1532,
408,
21869,
471,
13384,
13,
262,
278,
1407,
937,
3107,
354,
1270,
310,
278,
390,
2742,
25154,
29901,
376,
29902,
674,
1925,
427,
29885,
537,
1546,
366,
13,
392,
278,
6114,
29892,
1546,
596,
16717,
322,
902,
16717,
29889,
940,
4091,
19702,
895,
596,
2343,
13,
392,
366,
4091,
19702,
895,
670,
540,
295,
1213,
13,
14804,
14415,
545,
1364,
324,
1503,
9826,
25718,
896,
1284,
372,
2898,
304,
2274,
13,
1366,
1426,
29889,
2688,
1827,
727,
471,
871,
697,
6114,
18758,
472,
278,
931,
29892,
382,
345,
29889,
1105,
920,
13,
26680,
372,
367,
6182,
29973,
1205,
278,
22057,
29892,
851,
574,
873,
29892,
11098,
901,
1135,
6111,
13,
816,
324,
1503,
373,
445,
1426,
29889,
1334,
505,
12297,
16728,
10701,
29892,
323,
1191,
6762,
29889,
2688,
526,
13,
1433,
3304,
293,
6910,
29892,
11149,
3265,
3889,
29892,
310,
278,
438,
29911,
29889,
1334,
505,
3023,
1422,
13,
2873,
363,
278,
22901,
403,
987,
29889,
2688,
1235,
502,
1074,
920,
278,
22057,
297,
12297,
3064,
13,
5062,
9337,
1438,
3107,
354,
2478,
29889,
450,
22057,
1258,
451,
671,
376,
29882,
12772,
523,
742,
8790,
963,
13,
1319,
26940,
297,
2819,
29892,
6029,
896,
298,
630,
29889,
319,
2107,
16728,
21344,
310,
9826,
29892,
13,
24288,
711,
2448,
375,
1089,
29892,
4148,
310,
975,
29871,
29941,
29900,
29900,
8277,
373,
435,
6191,
1608,
29892,
1754,
263,
2107,
18994,
310,
13,
497,
16728,
2044,
886,
1156,
278,
6416,
310,
23204,
297,
29871,
29955,
29900,
11033,
29892,
297,
313,
29943,
441,
1253,
29892,
1963,
4233,
29889,
29871,
29896,
29929,
29947,
29946,
467,
940,
1476,
29892,
8509,
2197,
29892,
393,
701,
304,
278,
931,
13,
974,
278,
14525,
2904,
25813,
10288,
29885,
566,
29892,
29871,
29945,
29900,
29900,
448,
29871,
29953,
29900,
29900,
319,
29889,
360,
29889,
1919,
727,
471,
4120,
1711,
694,
13,
1639,
342,
297,
278,
11946,
21071,
29889,
1987,
4066,
4133,
297,
278,
10288,
29885,
566,
29892,
541,
278,
871,
13,
21355,
1298,
5276,
471,
393,
940,
471,
304,
367,
310,
278,
1196,
310,
4699,
29889,
512,
13,
9996,
579,
29892,
278,
323,
1191,
6762,
1074,
278,
11946,
21071,
297,
577,
1407,
1784,
26442,
29889,
2567,
372,
338,
13,
711,
2366,
29892,
393,
1438,
26442,
1033,
15155,
505,
1063,
13725,
313,
705,
1348,
278,
13,
29911,
1191,
6762,
937,
22856,
297,
470,
284,
883,
29897,
2645,
22830,
21726,
746,
727,
13,
11102,
4610,
1474,
694,
4066,
297,
278,
11946,
21071,
29889,
10133,
1906,
2011,
1080,
310,
278,
13,
29911,
1191,
6762,
1818,
748,
1250,
472,
3203,
1434,
29871,
29955,
29900,
319,
29889,
360,
29889,
1919,
3834,
1364,
324,
1503,
29892,
321,
29889,
330,
29889,
1919,
390,
29889,
13,
3226,
897,
1300,
1919,
313,
29934,
608,
29892,
13,
29933,
747,
506,
284,
8907,
29892,
29871,
29896,
29929,
29947,
29906,
29892,
6499,
29889,
29871,
29946,
29899,
29945,
29897,
1348,
278,
323,
1191,
6762,
937,
4689,
297,
278,
29871,
29945,
386,
13,
27371,
350,
29889,
315,
29889,
1919,
297,
278,
9088,
591,
1303,
1048,
297,
2448,
8008,
21071,
29871,
29947,
29901,
29947,
29889,
13,
2831,
3058,
278,
323,
1191,
6762,
526,
12297,
29892,
322,
1510,
502,
920,
278,
12297,
22057,
13,
5062,
9337,
1438,
3107,
354,
2478,
29889,
1105,
373,
5739,
29871,
29941,
29901,
29896,
29945,
29892,
2012,
310,
17928,
728,
368,
5934,
13,
5747,
372,
2794,
5866,
437,
451,
763,
5807,
6926,
1192,
408,
697,
19555,
3440,
653,
29892,
1286,
4083,
1192,
278,
323,
1191,
6762,
6363,
1568,
29889,
1152,
1342,
29889,
13,
29879,
1036,
29901,
376,
2855,
306,
674,
1925,
427,
29885,
1907,
1546,
366,
322,
278,
6114,
29892,
13,
392,
1546,
596,
18025,
322,
902,
18025,
29889,
1126,
372,
674,
3799,
29901,
746,
902,
18025,
3013,
13,
1552,
7927,
322,
1925,
964,
6944,
278,
1899,
1860,
310,
278,
7927,
29892,
366,
674,
12242,
472,
13,
392,
281,
618,
1075,
373,
278,
540,
295,
29892,
322,
1207,
1075,
4486,
29889,
1152,
902,
1487,
29892,
3138,
29892,
727,
13,
14043,
367,
263,
1083,
7584,
29892,
541,
363,
366,
29892,
724,
22825,
29892,
727,
674,
367,
694,
1083,
7584,
29889,
2688,
674,
13,
5675,
10776,
297,
278,
5434,
297,
278,
2462,
310,
4088,
11946,
21071,
1213,
13,
13985,
916,
323,
1191,
6762,
29892,
17646,
5333,
29899,
29967,
265,
11385,
322,
278,
19063,
653,
323,
1191,
398,
7726,
13,
29764,
368,
29892,
5174,
393,
896,
671,
278,
715,
3631,
29892,
18025,
29892,
2012,
310,
278,
13512,
29889,
13,
6246,
599,
2211,
7726,
310,
263,
1083,
7584,
363,
278,
1487,
470,
18025,
310,
278,
6114,
29892,
541,
451,
13,
1454,
278,
724,
22825,
29889,
13,
14804,
9826,
1298,
714,
393,
278,
1021,
18472,
3973,
9750,
338,
1304,
8951,
29892,
13,
1454,
278,
1487,
310,
278,
6114,
29191,
472,
278,
2343,
310,
278,
724,
22825,
29892,
322,
363,
278,
13,
643,
22825,
29191,
472,
670,
540,
295,
29889,
1105,
29892,
896,
1827,
29901,
694,
15354,
29892,
925,
263,
22134,
29889,
1205,
278,
13,
8463,
296,
22057,
6363,
2253,
29889,
2688,
6363,
727,
471,
263,
1083,
7584,
363,
278,
1487,
310,
278,
13,
29893,
2480,
29889,
739,
338,
1565,
29892,
896,
9570,
278,
7623,
263,
2586,
491,
11658,
292,
16831,
706,
29892,
577,
13,
9435,
472,
278,
931,
29892,
541,
3447,
278,
6996,
2643,
338,
2821,
29901,
278,
1487,
310,
278,
13,
29893,
2480,
674,
505,
263,
15354,
29889,
13,
6295,
278,
2320,
1531,
1974,
310,
278,
6291,
338,
3755,
1492,
297,
8790,
8680,
10040,
322,
13,
2276,
5791,
297,
445,
1426,
29892,
322,
8790,
963,
408,
6942,
297,
278,
15354,
975,
278,
13,
643,
22825,
29889,
13,
29963,
271,
2185,
1944,
17233,
873,
11520,
714,
29892,
13590,
310,
445,
1426,
322,
19899,
21071,
29871,
29955,
29901,
29896,
29946,
29901,
13,
29908,
1349,
968,
6019,
791,
10701,
29892,
408,
896,
526,
1303,
297,
278,
6291,
29892,
322,
526,
13,
5062,
9337,
297,
278,
3578,
310,
2678,
322,
2989,
20474,
362,
29892,
22020,
6963,
13,
11083,
502,
278,
4377,
310,
278,
21869,
310,
278,
390,
2742,
25154,
29889,
2296,
29892,
297,
445,
3578,
29892,
338,
13,
284,
2040,
27953,
300,
1711,
363,
12094,
6986,
287,
297,
278,
11640,
2183,
304,
1749,
11825,
29892,
13,
29888,
5442,
964,
4457,
29892,
310,
263,
337,
311,
25154,
313,
6854,
29889,
5739,
29871,
29941,
29889,
29871,
29896,
29945,
29889,
869,
869,
274,
29888,
29889,
1317,
29871,
29955,
29889,
29871,
29896,
29946,
467,
29908,
13,
29937,
29945,
29945,
2444,
304,
505,
18694,
393,
6060,
278,
5199,
13,
5150,
943,
310,
1438,
26442,
1122,
451,
505,
11098,
599,
393,
278,
6291,
1286,
29892,
13,
2541,
2989,
3578,
322,
27323,
310,
278,
17733,
20799,
29892,
338,
9615,
304,
1074,
29889,
8680,
13,
29931,
3714,
471,
27953,
300,
1711,
363,
12094,
6986,
287,
297,
278,
11640,
29889,
1105,
382,
345,
338,
278,
1134,
29892,
263,
13,
7728,
354,
1270,
310,
6182,
304,
2041,
29889,
1724,
385,
4221,
362,
393,
925,
408,
278,
937,
382,
345,
13,
276,
635,
26869,
304,
278,
18658,
310,
2441,
4457,
29892,
577,
278,
1570,
382,
345,
29892,
408,
278,
13,
29943,
19467,
577,
4049,
2000,
902,
29892,
723,
2289,
29126,
304,
18764,
292,
393,
13,
16846,
482,
29889,
13,
855,
29889,
306,
1267,
3660,
375,
29892,
23153,
8951,
491,
278,
8831,
373,
445,
4383,
297,
365,
29954,
396,
29945,
29955,
29892,
4446,
13,
1366,
2393,
5996,
4060,
29889,
940,
1584,
29892,
7404,
2222,
20603,
491,
278,
20799,
1058,
13,
305,
2575,
368,
5456,
278,
1426,
29892,
1497,
29892,
408,
278,
8831,
23153,
372,
29901,
376,
1349,
375,
769,
29892,
278,
13,
29895,
1333,
310,
278,
766,
711,
287,
5597,
310,
382,
345,
471,
443,
29873,
1000,
1549,
278,
704,
287,
5597,
310,
6182,
1213,
13,
4806,
4446,
393,
624,
29889,
306,
1267,
3660,
375,
3117,
471,
20603,
29892,
363,
925,
1434,
1438,
3838,
13,
354,
750,
282,
919,
2955,
599,
4457,
29892,
2441,
322,
7333,
29892,
408,
263,
18806,
839,
29892,
4280,
889,
327,
29889,
13,
11760,
372,
471,
393,
624,
29889,
306,
1267,
3660,
375,
2715,
29901,
376,
1349,
375,
769,
29892,
278,
889,
327,
310,
278,
13,
2218,
711,
287,
5597,
310,
382,
345,
29892,
471,
443,
29873,
1000,
17826,
278,
704,
287,
5597,
310,
6182,
1213,
1205,
448,
322,
13,
1366,
338,
2020,
591,
526,
5331,
304,
7755,
4266,
8681,
12232,
363,
317,
29889,
306,
1267,
3660,
375,
448,
278,
13,
29895,
1333,
471,
451,
443,
29873,
1000,
472,
278,
2889,
11173,
362,
29892,
278,
3256,
2225,
14889,
2662,
297,
278,
13,
4703,
310,
624,
29889,
306,
1267,
3660,
375,
29889,
1939,
29892,
278,
889,
327,
471,
451,
443,
29873,
1000,
2745,
278,
25616,
13,
29963,
919,
326,
10680,
714,
29901,
376,
3112,
338,
7743,
1213,
1105,
1203,
3598,
29892,
3117,
1728,
13,
6370,
5281,
372,
3654,
29892,
624,
29889,
306,
1267,
3660,
375,
2411,
2957,
1584,
902,
1302,
16453,
373,
3037,
29894,
653,
29889,
13,
3112,
338,
451,
714,
310,
2058,
304,
7755,
393,
263,
17852,
310,
278,
6291,
29892,
385,
13,
14748,
297,
278,
1361,
310,
278,
17733,
20799,
29892,
1795,
2436,
901,
1135,
540,
11098,
29889,
13,
1123,
635,
29892,
365,
29954,
3528,
2411,
2957,
393,
297,
396,
29945,
29945,
29892,
607,
591,
274,
1573,
2038,
29889,
1152,
372,
13,
513,
293,
630,
393,
6060,
278,
2441,
23550,
310,
5739,
6656,
29871,
29941,
29901,
29896,
29945,
322,
19899,
21071,
29871,
29955,
29901,
29896,
29946,
13,
18361,
451,
2274,
599,
393,
17733,
20799,
750,
297,
3458,
29892,
599,
393,
278,
6291,
13,
27765,
29892,
1090,
3600,
7572,
27323,
29892,
18553,
9436,
29889,
13,
8942,
2327,
368,
29892,
591,
1795,
1532,
12326,
393,
5677,
331,
21071,
278,
27953,
300,
297,
670,
13,
7728,
354,
1270,
310,
278,
716,
274,
9813,
424,
297,
29871,
29941,
29896,
29901,
29941,
29896,
600,
1258,
451,
1074,
599,
393,
278,
20799,
13,
524,
2760,
29889,
1152,
372,
723,
505,
1063,
1556,
5613,
363,
5677,
331,
21071,
304,
505,
297,
3458,
13,
1552,
704,
287,
5597,
310,
278,
2305,
29892,
408,
278,
4195,
310,
278,
716,
274,
9813,
424,
29889,
15175,
591,
13,
28385,
1532,
515,
6033,
550,
29871,
29945,
29901,
29896,
29929,
322,
365,
29954,
396,
29929,
393,
372,
471,
2289,
278,
704,
287,
5597,
310,
13,
29967,
267,
375,
393,
471,
3734,
29892,
451,
925,
393,
310,
278,
2305,
29889,
7440,
5677,
331,
21071,
1074,
13,
1366,
29973,
4177,
1033,
505,
17845,
372,
304,
1075,
29889,
1205,
393,
338,
3755,
17999,
29889,
13,
2855,
1286,
29892,
297,
6819,
29892,
1122,
591,
4953,
577,
14288,
408,
304,
4368,
263,
13,
28802,
4127,
29889,
7753,
2466,
278,
8831,
472,
278,
1369,
310,
16385,
29871,
29947,
310,
1497,
372,
1258,
451,
24042,
304,
3604,
280,
19341,
583,
297,
27161,
3002,
29892,
727,
13,
275,
2769,
304,
4658,
372,
5456,
901,
1135,
372,
16387,
29892,
1641,
763,
3538,
385,
13,
2611,
15461,
297,
278,
6567,
310,
4910,
457,
9133,
5084,
29889,
1205,
901,
373,
393,
2678,
29889,
13,
6295,
372,
338,
2821,
2307,
472,
278,
1369,
515,
5739,
29871,
29941,
29901,
29896,
29945,
393,
451,
871,
471,
1183,
13,
11102,
304,
367,
278,
21869,
310,
278,
390,
2742,
25154,
29892,
541,
884,
393,
1183,
471,
304,
367,
13,
21264,
630,
411,
18136,
297,
278,
15354,
975,
3290,
273,
29889,
1152,
349,
2482,
17172,
29892,
6257,
411,
13,
15462,
29871,
29941,
29901,
29896,
29945,
29892,
2769,
287,
393,
278,
15354,
975,
4457,
297,
607,
1183,
471,
304,
6232,
13,
29893,
483,
451,
367,
4866,
565,
1183,
750,
3926,
1063,
1090,
2441,
4457,
29892,
322,
297,
13,
16145,
278,
5023,
310,
278,
4007,
28069,
17503,
13,
265,
278,
2114,
393,
1183,
471,
6942,
411,
18136,
297,
278,
376,
10582,
1505,
280,
29908,
2750,
278,
13,
262,
571,
20809,
11103,
29892,
322,
577,
29892,
1951,
278,
21117,
471,
263,
664,
376,
262,
3619,
613,
278,
13,
29888,
9216,
727,
310,
29892,
3144,
272,
2450,
29892,
750,
304,
367,
22829,
297,
3619,
29901,
620,
20503,
428,
13,
392,
12066,
2673,
363,
18136,
29892,
11833,
363,
902,
29889,
13,
797,
6819,
591,
1795,
12020,
263,
1139,
29901,
565,
1584,
278,
380,
2593,
29899,
484,
384,
287,
22057,
13,
26680,
1074,
278,
5637,
310,
278,
11946,
21071,
297,
445,
1426,
29892,
769,
1183,
1058,
471,
2989,
310,
13,
3874,
346,
1818,
505,
3595,
393,
2114,
2086,
29889,
1126,
408,
591,
4091,
1074,
28681,
29892,
1183,
6363,
13,
2276,
5791,
471,
278,
11946,
21071,
29889,
1105,
29892,
1183,
471,
278,
6114,
363,
300,
1025,
29892,
304,
6232,
297,
278,
13,
29894,
919,
706,
29889,
8725,
29892,
1951,
278,
6291,
29892,
297,
278,
2022,
310,
349,
2482,
17172,
29892,
1033,
2769,
13,
5747,
445,
15354,
2411,
2957,
385,
5198,
562,
5987,
26192,
448,
1407,
2769,
2197,
29892,
363,
13,
1552,
937,
382,
345,
750,
385,
5198,
562,
5987,
1369,
29892,
363,
2441,
4457,
750,
451,
1063,
13,
262,
794,
287,
746,
1183,
937,
7470,
1919,
577,
278,
716,
382,
345,
881,
505,
278,
1021,
13,
6727,
562,
5987,
1369,
1192,
565,
769,
29892,
278,
6291,
1286,
18553,
278,
5198,
562,
5987,
26192,
13,
262,
445,
1426,
310,
5739,
29871,
29941,
29901,
29896,
29945,
29892,
769,
723,
451,
1749,
10040,
8735,
505,
3595,
278,
13,
17642,
8760,
29892,
411,
902,
2989,
2264,
310,
17659,
29973,
512,
916,
3838,
29892,
372,
2444,
1183,
6363,
13,
2276,
1914,
5198,
562,
5987,
26192,
29991,
13,
4806,
881,
788,
2086,
29901,
1784,
14415,
545,
1364,
324,
1503,
29892,
4249,
963,
20635,
2259,
3739,
13,
2687,
313,
396,
29871,
29906,
29946,
29897,
4658,
278,
671,
310,
278,
1734,
376,
29893,
2480,
613,
6060,
13,
273,
6920,
616,
10365,
358,
29892,
471,
1304,
297,
14415,
545,
304,
22134,
4208,
3023,
13,
3364,
1179,
29901,
5739,
29871,
29941,
29901,
29896,
29945,
29892,
278,
315,
1648,
382,
12907,
29892,
278,
9088,
472,
278,
3661,
310,
278,
11189,
29892,
13,
392,
278,
6114,
13950,
287,
411,
278,
6575,
297,
6225,
18642,
1478,
344,
29871,
29896,
29906,
29889,
1334,
12707,
297,
6819,
310,
13,
2276,
408,
2989,
310,
17659,
29889,
1334,
526,
1532,
9543,
393,
1784,
1873,
9826,
26506,
393,
13,
3286,
18411,
29892,
322,
4094,
372,
2215,
1623,
29892,
1316,
408,
376,
29888,
485,
4395,
697,
1213,
1205,
278,
6221,
13,
726,
310,
278,
6291,
29892,
278,
478,
352,
17062,
29892,
947,
505,
278,
15061,
2989,
310,
17659,
29889,
1126,
13,
1333,
1728,
2769,
29889,
624,
29889,
25556,
1304,
278,
12311,
1734,
1919,
263,
4922,
13,
3364,
573,
21933,
552,
29892,
607,
338,
263,
1407,
4549,
883,
29889,
8725,
29892,
278,
6996,
9750,
338,
13,
29889,
2567,
1147,
5824,
17140,
297,
883,
263,
770,
607,
297,
13,
17492,
2794,
304,
1925,
263,
2022,
470,
2655,
964,
278,
2106,
18694,
491,
278,
3876,
13,
974,
278,
9750,
29889,
321,
29889,
330,
1696,
454,
2679,
359,
29958,
2794,
4796,
29892,
2794,
304,
1207,
4796,
29889,
450,
13,
12676,
292,
310,
278,
3876,
310,
338,
7853,
470,
17659,
29889,
1105,
278,
9750,
2794,
304,
13,
649,
902,
964,
7853,
470,
17659,
29889,
1205,
591,
817,
304,
367,
16010,
29889,
960,
491,
7853,
591,
505,
13,
262,
3458,
871,
393,
4177,
408,
372,
892,
3290,
727,
322,
25156,
472,
902,
29892,
541,
4846,
902,
13,
28450,
29892,
591,
723,
505,
278,
15549,
351,
713,
902,
267,
29891,
29889,
1105,
591,
1795,
408,
1532,
671,
278,
13,
1742,
17659,
472,
278,
1369,
29892,
304,
12266,
263,
19797,
940,
4846,
29889,
12074,
4340,
29892,
278,
13,
29954,
26265,
3913,
297,
2058,
310,
902,
7333,
1024,
29892,
6182,
29889,
2193,
338,
263,
13,
21125,
5734,
519,
304,
1749,
4223,
4766,
297,
607,
591,
1795,
1827,
310,
4856,
13,
5747,
540,
338,
376,
20335,
29889,
29010,
613,
6593,
278,
8494,
6490,
297,
278,
7663,
310,
22556,
29889,
1105,
13,
6098,
1183,
723,
367,
4750,
23350,
29892,
278,
8494,
6490,
297,
278,
7663,
310,
17659,
29991,
13,
4806,
2609,
1371,
451,
18499,
2086,
393,
2466,
1784,
9826,
972,
29891,
393,
19899,
21071,
13,
29955,
29901,
29896,
29946,
7726,
29879,
310,
263,
10636,
5359,
12060,
448,
5998,
624,
29889,
22292,
4446,
372,
489,
3447,
1183,
1033,
13,
1333,
505,
13726,
372,
29889,
1152,
1183,
4446,
372,
1641,
6095,
26940,
297,
8735,
29889,
739,
338,
1565,
13,
1552,
323,
1191,
398,
408,
591,
1286,
505,
372,
1258,
451,
2791,
445,
13382,
408,
4473,
713,
293,
29889,
1205,
591,
13,
28385,
2020,
29892,
3969,
304,
777,
29528,
368,
15993,
5400,
16728,
1364,
324,
1503,
29901,
10968,
13,
8139,
375,
1089,
313,
6499,
29889,
29871,
29896,
29955,
29941,
322,
29871,
29896,
29929,
29900,
511,
3685,
1100,
951,
6950,
313,
29892,
18472,
3973,
7761,
6346,
29892,
29871,
29896,
29929,
29955,
29946,
29892,
282,
29892,
869,
29871,
29896,
29945,
29906,
322,
4443,
13,
29896,
29900,
511,
322,
379,
29889,
435,
29889,
1102,
7297,
567,
313,
29892,
3122,
1195,
2475,
29892,
13,
4819,
4233,
29892,
29871,
29896,
29929,
29953,
29896,
29892,
282,
29889,
29871,
29896,
29906,
29929,
1125,
2448,
375,
1089,
10603,
502,
313,
29886,
29889,
29871,
29896,
29929,
29900,
29897,
393,
746,
278,
22057,
1827,
278,
13,
305,
2021,
5834,
773,
445,
3107,
354,
1270,
29892,
896,
20043,
1250,
29892,
322,
1497,
372,
471,
451,
278,
13,
19058,
21071,
29889,
1205,
896,
4846,
6053,
3448,
29892,
363,
278,
323,
1191,
6762,
437,
2791,
19899,
21071,
29871,
29929,
29901,
29945,
29899,
13,
29953,
408,
11946,
713,
293,
29892,
322,
14332,
7336,
1169,
393,
278,
2278,
297,
1716,
29871,
29955,
29901,
29896,
29946,
322,
29871,
29929,
29901,
29945,
29899,
29953,
13,
275,
278,
1021,
2278,
29892,
363,
1716,
1209,
1179,
6852,
304,
825,
338,
15574,
2000,
278,
13,
2909,
310,
2812,
22670,
29889,
13,
4806,
674,
1074,
901,
1048,
19899,
21071,
29871,
29929,
29901,
29945,
29899,
29953,
2678,
373,
29889,
13,
1762,
6773,
29901,
3834,
650,
1795,
1532,
2244,
29901,
4001,
940,
750,
2041,
304,
337,
311,
331,
278,
13,
11526,
29892,
2020,
1258,
940,
18864,
1556,
310,
393,
931,
29892,
1048,
29871,
29941,
29900,
2440,
29892,
297,
263,
7934,
13,
19264,
29973,
450,
1234,
338,
2821,
29901,
940,
337,
311,
331,
292,
278,
3186,
1584,
769,
29889,
830,
635,
29892,
13,
29967,
267,
375,
2778,
1573,
363,
502,
451,
871,
373,
278,
4891,
29892,
541,
297,
3600,
3353,
2834,
29889,
450,
13,
29954,
7285,
383,
19467,
11098,
445,
7148,
1532,
411,
1009,
278,
3002,
310,
13,
14017,
936,
16624,
936,
7773,
279,
537,
29889,
2688,
6839,
393,
599,
5199,
537,
7190,
263,
5190,
29892,
263,
13,
2929,
333,
279,
537,
29889,
1987,
278,
5199,
537,
310,
2819,
5304,
304,
367,
760,
310,
393,
13,
2929,
333,
279,
537,
29889,
1205,
3600,
5199,
537,
338,
8772,
29892,
297,
278,
20107,
310,
3118,
5196,
29892,
411,
13,
1552,
4910,
13593,
29889,
7857,
29892,
408,
372,
892,
29892,
263,
4889,
470,
3081,
9677,
29879,
714,
515,
278,
13,
4563,
13593,
29892,
4822,
278,
5199,
537,
310,
2819,
322,
540,
1338,
278,
1791,
310,
5199,
537,
29889,
13,
4013,
471,
577,
9226,
297,
278,
27656,
310,
278,
16162,
383,
19467,
393,
624,
29889,
29094,
310,
13,
29940,
834,
713,
2256,
297,
670,
471,
2221,
304,
2769,
2750,
28017,
1915,
12260,
29901,
13,
29908,
5618,
940,
756,
451,
12023,
29892,
940,
756,
451,
540,
7943,
1213,
28017,
1915,
12260,
750,
1497,
2819,
13,
21312,
694,
5199,
17903,
10752,
29889,
23732,
278,
6890,
310,
9128,
16624,
936,
13,
2929,
333,
279,
537,
624,
29889,
29094,
1033,
27754,
393,
565,
940,
1258,
451,
5251,
263,
5199,
13,
29878,
1288,
10752,
29892,
540,
1258,
451,
540,
284,
5199,
17903,
3669,
3137,
29889,
13,
6295,
896,
6363,
393,
1584,
278,
937,
14426,
310,
3600,
5528,
2753,
362,
1033,
505,
13,
915,
264,
3307,
304,
6963,
1048,
278,
3353,
310,
4367,
331,
683,
29889,
14302,
940,
1063,
6345,
451,
297,
13,
29874,
13714,
29892,
541,
297,
263,
24369,
29892,
750,
940,
27661,
871,
19462,
29892,
1472,
3307,
304,
13,
20834,
6160,
3629,
8948,
29892,
306,
2041,
304,
437,
596,
674,
29892,
438,
29892,
4177,
29889,
869,
869,
869,
17852,
18879,
573,
963,
1699,
13,
5747,
723,
505,
1063,
385,
10362,
337,
2310,
683,
29892,
6421,
515,
385,
10362,
13,
10532,
29889,
450,
10929,
310,
3600,
3353,
2834,
471,
29901,
376,
3421,
9687,
338,
304,
437,
278,
674,
310,
18136,
13,
15970,
2665,
592,
613,
385,
2916,
322,
3133,
362,
310,
3600,
2847,
3838,
29901,
1522,
8948,
306,
2041,
13,
517,
437,
596,
674,
438,
4177,
1213,
13,
6295,
940,
10398,
1048,
29871,
29941,
29900,
714,
310,
3600,
29871,
29941,
29941,
2440,
297,
278,
409,
10085,
310,
263,
7934,
13,
19264,
29889,
1205,
1951,
393,
7934,
2834,
471,
2599,
278,
674,
310,
278,
4783,
29892,
372,
471,
13,
7192,
18639,
2778,
2105,
2738,
29889,
940,
5131,
304,
6860,
278,
995,
310,
263,
3942,
2834,
13,
5753,
3278,
304,
278,
17852,
29915,
29879,
3814,
29889,
13,
10454,
1183,
471,
8772,
411,
18136,
297,
599,
445,
29892,
322,
902,
760,
297,
599,
445,
471,
13,
1050,
2105,
2738,
29892,
451,
29047,
29892,
541,
5198,
575,
873,
29889,
1334,
2307,
4446,
393,
278,
1570,
382,
345,
13,
18193,
471,
11122,
297,
5739,
6656,
29871,
29941,
29901,
29896,
29945,
29889,
1105,
408,
1570,
382,
345,
902,
2778,
277,
471,
451,
925,
13,
5747,
310,
263,
2024,
2022,
29892,
541,
393,
310,
278,
697,
10658,
491,
278,
17852,
304,
13,
7122,
297,
18764,
292,
278,
18658,
2309,
491,
278,
2030,
382,
345,
29889,
13,
29925,
2300,
3739,
5473,
29892,
297,
385,
3211,
304,
278,
29871,
29896,
29941,
386,
3086,
11559,
310,
278,
10545,
13,
29943,
331,
262,
457,
7817,
373,
26319,
29889,
29871,
29896,
29906,
29892,
29871,
29896,
29929,
29953,
29953,
4846,
502,
263,
1407,
2600,
618,
3229,
29901,
13,
29908,
18687,
713,
13718,
322,
278,
6111,
3942,
9667,
263,
14731,
9063,
358,
29889,
13,
15597,
526,
451,
385,
4780,
982,
310,
6111,
2834,
29892,
1584,
2466,
278,
1556,
3619,
29892,
13,
1552,
697,
607,
278,
13638,
310,
278,
4344,
310,
4177,
526,
2000,
304,
9850,
29889,
13,
29934,
1624,
29892,
372,
338,
263,
1472,
2224,
11183,
9753,
312,
2450,
1213,
7753,
297,
278,
1206,
310,
13,
24310,
3581,
2701,
29892,
278,
2224,
11981,
11183,
9753,
312,
2450,
29892,
565,
896,
1044,
13,
5753,
3278,
304,
278,
17852,
29915,
29879,
3814,
29889,
739,
338,
4997,
3730,
9753,
312,
9215,
29892,
565,
372,
338,
13,
7635,
9424,
17503,
408,
2599,
278,
674,
310,
1749,
17852,
297,
22977,
29889,
8680,
17852,
13,
29895,
1482,
1532,
920,
304,
875,
625,
29892,
408,
372,
892,
29892,
2305,
304,
6036,
363,
445,
3236,
297,
13,
28455,
312,
2450,
29889,
940,
4240,
964,
502,
263,
13988,
1098,
13857,
304,
278,
11564,
7916,
29889,
13,
3644,
2305,
1101,
1549,
29892,
1156,
278,
2847,
953,
8194,
756,
1027,
1050,
287,
1623,
29892,
896,
13,
2886,
6053,
297,
263,
4766,
310,
2834,
607,
338,
451,
385,
4780,
697,
29892,
541,
607,
13,
276,
635,
338,
263,
1472,
2224,
7113,
9753,
312,
2450,
29889,
1152,
278,
12651,
310,
14263,
13,
392,
12944,
11643,
3002,
526,
14586,
355,
681,
29892,
577,
2107,
393,
1584,
411,
385,
10839,
13,
16589,
552,
448,
451,
2337,
304,
367,
1476,
448,
1269,
697,
1033,
1827,
15993,
368,
29901,
376,
29902,
505,
304,
13,
29887,
573,
297,
1556,
310,
278,
931,
304,
1207,
445,
664,
1213,
1126,
278,
1176,
359,
537,
322,
13,
1311,
2222,
2264,
310,
1584,
15311,
11825,
304,
1009,
4344,
338,
21863,
292,
29889,
3118,
13,
1144,
18541,
12128,
1925,
372,
445,
982,
29901,
376,
10401,
366,
505,
4344,
29892,
1009,
14433,
13,
915,
2763,
596,
14433,
1213,
13,
1576,
2989,
639,
20309,
322,
4457,
2222,
2264,
310,
13825,
278,
5791,
310,
6182,
29892,
322,
278,
13,
29764,
4457,
2222,
2264,
310,
3600,
21869,
322,
624,
29889,
6936,
723,
1207,
445,
14656,
13,
974,
4883,
2790,
1023,
12080,
2215,
3109,
29889,
15175,
6182,
322,
6936,
29892,
322,
1009,
5791,
29892,
6363,
13,
5747,
297,
8471,
445,
3942,
2834,
896,
892,
1494,
714,
278,
17852,
29915,
29879,
3814,
13,
1454,
767,
14380,
29889,
1126,
491,
1919,
896,
892,
29892,
408,
940,
1497,
2678,
472,
278,
13,
29967,
536,
273,
1699,
1319,
5589,
292,
599,
15426,
1213,
2688,
892,
2599,
825,
278,
17852,
281,
24455,
29889,
13,
6246,
372,
338,
697,
2655,
304,
1827,
393,
902,
8471,
393,
3942,
2834,
471,
13,
1050,
2105,
2738,
29892,
1790,
2655,
304,
1827,
393,
372,
471,
2778,
2105,
2738,
363,
1749,
8175,
29889,
1334,
13,
284,
2040,
11682,
393,
408,
1570,
382,
345,
1183,
471,
10658,
304,
1371,
2778,
277,
363,
599,
29889,
1205,
13,
12711,
338,
901,
29889,
13,
4806,
679,
263,
1369,
411,
278,
1371,
310,
624,
29889,
3739,
29892,
1058,
297,
29871,
29896,
2994,
29871,
29896,
29906,
29901,
29906,
29953,
5456,
29901,
13,
29908,
3644,
697,
4509,
9378,
414,
29892,
599,
8812,
4208,
29936,
565,
697,
4509,
338,
4207,
4395,
29892,
599,
13,
276,
2212,
625,
4208,
1213,
1334,
1284,
445,
1021,
2714,
448,
451,
851,
574,
873,
29892,
363,
3739,
408,
13,
3018,
1312,
408,
263,
16155,
5365,
448,
297,
263,
1426,
310,
317,
603,
265,
3856,
8317,
28690,
297,
278,
29871,
29906,
299,
6462,
29892,
297,
13,
1552,
29871,
29896,
29889,
29871,
29896,
29946,
29901,
376,
3868,
518,
1384,
650,
29962,
756,
19355,
263,
1301,
11476,
29901,
281,
7297,
304,
13,
26994,
29889,
940,
756,
260,
16242,
278,
6287,
304,
278,
2625,
310,
2553,
29873,
363,
3654,
322,
363,
278,
13,
11526,
29889,
940,
756,
8988,
714,
263,
1899,
358,
29901,
17065,
886,
373,
1075,
29889,
1152,
540,
756,
13,
2034,
2986,
278,
6287,
304,
278,
2625,
310,
2778,
277,
363,
3654,
322,
363,
278,
3186,
1213,
13,
29923,
854,
2466,
445,
1426,
14393,
263,
6462,
1156,
624,
29889,
3739,
29892,
278,
2969,
393,
13,
5223,
338,
263,
2553,
29873,
338,
577,
758,
791,
296,
4249,
278,
390,
8846,
275,
29892,
393,
591,
1122,
367,
24332,
372,
13,
11102,
727,
297,
3739,
29915,
29879,
2462,
2086,
29889,
830,
635,
278,
6964,
310,
4457,
263,
2553,
29873,
607,
278,
13,
19984,
3335,
310,
4177,
10753,
304,
505,
12530,
338,
1476,
599,
975,
278,
8198,
29198,
29892,
278,
13,
1639,
1688,
11491,
12845,
29892,
278,
1570,
29198,
29892,
278,
390,
8846,
275,
29892,
322,
278,
383,
19467,
13,
974,
278,
6291,
29889,
13,
3112,
338,
577,
4549,
393,
20708,
277,
12473,
29871,
29946,
5717,
363,
263,
28839,
304,
367,
12520,
363,
13,
11884,
1919,
385,
18500,
5367,
5537,
362,
310,
278,
4307,
29889,
450,
4168,
3335,
310,
4177,
13,
29893,
1934,
599,
393,
338,
1492,
304,
367,
2309,
29889,
512,
278,
1006,
1688,
11491,
12845,
29892,
363,
13,
4773,
29892,
591,
1303,
297,
29871,
29941,
29889,
29871,
29945,
29901,
376,
797,
18356,
2446,
304,
372,
526,
278,
13,
1279,
574,
1379,
29892,
1058,
11050,
322,
1207,
3107,
4812,
362,
304,
278,
6171,
363,
599,
278,
269,
1144,
13,
974,
16245,
749,
310,
278,
364,
1141,
371,
681,
29889,
1394,
278,
29871,
29941,
29901,
29947,
29899,
29929,
6160,
1576,
13,
29878,
1141,
371,
681,
767,
2145,
1474,
29645,
670,
3699,
304,
3349,
14401,
368,
518,
497,
29962,
13,
2172,
339,
537,
518,
15091,
29962,
491,
1075,
297,
1059,
29889,
940,
3732,
472,
265,
882,
363,
518,
29879,
1144,
310,
29962,
16245,
749,
13,
1609,
5172,
292,
322,
2756,
506,
1259,
670,
10752,
1213,
4186,
338,
278,
10929,
10225,
292,
278,
1570,
13,
3057,
1166,
29889,
512,
25556,
29871,
29896,
29906,
29901,
29871,
29946,
29955,
29899,
29946,
29947,
373,
278,
17186,
310,
8680,
6171,
18136,
1311,
29901,
376,
1576,
19532,
13,
15970,
6363,
670,
5835,
29915,
29879,
28688,
541,
1258,
451,
19012,
304,
6095,
5589,
963,
674,
679,
263,
13,
344,
9359,
367,
1218,
29936,
541,
278,
697,
1058,
1258,
451,
1073,
963,
29892,
541,
1258,
2712,
13,
29961,
3318,
3598,
29962,
16964,
1747,
13031,
29879,
674,
679,
1283,
411,
1238,
369,
10076,
5547,
1642,
624,
29889,
3739,
297,
13,
29896,
2994,
29871,
29946,
29901,
29946,
750,
445,
2656,
310,
2655,
297,
3458,
746,
540,
5456,
29901,
376,
29902,
505,
3078,
373,
13,
1357,
27688,
29892,
541,
393,
947,
451,
2099,
393,
306,
626,
925,
2164,
1213,
450,
297,
29871,
29906,
29889,
29871,
29941,
10603,
278,
2994,
22653,
5834,
29901,
376,
3492,
16116,
287,
714,
596,
13,
3179,
29879,
304,
278,
394,
29885,
523,
29891,
4177,
29892,
289,
968,
5309,
292,
1075,
304,
367,
3107,
277,
2738,
29892,
565,
366,
750,
13,
29879,
27464,
472,
599,
18500,
8873,
368,
1213,
512,
278,
11872,
332,
1927,
310,
624,
29889,
2259,
678,
18450,
520,
290,
727,
338,
13,
303,
453,
263,
1196,
1434,
278,
14055,
391,
280,
29901,
376,
29943,
990,
573,
502,
1432,
1283,
1947,
29892,
1716,
27081,
653,
13,
392,
5297,
1657,
653,
1213,
13,
6246,
408,
591,
1497,
29892,
372,
338,
697,
2655,
304,
1827,
1183,
2778,
1573,
1568,
2645,
278,
7934,
13,
19264,
29889,
1334,
2355,
1371,
515,
624,
29889,
3739,
304,
1369,
29889,
1205,
1286,
29892,
901,
17503,
29901,
591,
1303,
13,
344,
369,
284,
3064,
393,
6630,
267,
5929,
7943,
304,
278,
2778,
1169,
310,
24763,
29892,
28156,
29892,
322,
13,
24288,
711,
322,
27999,
2113,
18879,
20193,
363,
278,
4457,
1319,
2305,
29889,
512,
13,
29946,
29946,
29889,
29871,
29896,
29889,
390,
29889,
15316,
3856,
405,
801,
1171,
29875,
4083,
6630,
267,
8389,
297,
27402,
29871,
29946,
29900,
3841,
322,
29871,
29946,
29900,
13,
29876,
5861,
6721,
4177,
304,
18879,
573,
278,
4457,
310,
278,
22843,
1208,
29888,
29892,
541,
1728,
738,
13,
2914,
29889,
1205,
746,
540,
5276,
278,
2778,
1169,
310,
278,
285,
19467,
29892,
4177,
472,
2748,
13,
29888,
990,
1351,
963,
29889,
313,
29907,
29888,
29889,
319,
1085,
12257,
5465,
29892,
313,
29968,
6040,
29963,
29892,
29871,
29896,
29929,
29953,
29947,
29892,
869,
282,
29889,
29871,
29896,
29945,
29896,
467,
869,
869,
869,
869,
450,
2769,
338,
393,
24763,
471,
13,
1552,
17852,
310,
278,
3353,
2305,
29892,
322,
408,
1316,
29892,
670,
2778,
1169,
892,
310,
20847,
363,
13,
497,
29889,
13,
10454,
746,
1183,
11504,
20979,
902,
1919,
322,
3897,
278,
5637,
310,
278,
12252,
13,
974,
278,
22890,
936,
24928,
29892,
769,
474,
567,
29877,
2114,
29877,
29892,
408,
349,
2482,
17172,
8900,
29892,
297,
670,
2643,
13,
517,
278,
24236,
11559,
310,
13476,
10011,
29892,
7400,
29892,
373,
5306,
29871,
29896,
29929,
29892,
29871,
29896,
29929,
29946,
29955,
29901,
376,
6246,
746,
278,
13,
29880,
1992,
611,
333,
310,
11409,
598,
386,
14401,
287,
902,
304,
278,
2643,
310,
278,
2614,
295,
29889,
869,
869,
13,
11360,
3897,
451,
871,
278,
21869,
310,
4177,
297,
278,
9128,
1797,
310,
5469,
29892,
541,
13,
15189,
297,
278,
2428,
25047,
1797,
310,
17659,
1183,
3897,
278,
21869,
310,
599,
1058,
29889,
869,
13,
29889,
723,
367,
1754,
697,
1090,
278,
12252,
3527,
310,
902,
25616,
5791,
29889,
450,
21869,
310,
278,
13,
5494,
723,
367,
278,
21869,
310,
278,
5144,
29889,
450,
21869,
310,
278,
478,
457,
723,
367,
13,
1552,
21869,
310,
278,
14202,
1213,
1105,
2307,
373,
393,
2462,
310,
278,
2889,
11173,
362,
1183,
13,
19385,
420,
278,
5637,
310,
278,
5144,
310,
278,
22890,
936,
24928,
310,
607,
902,
5791,
13,
18687,
471,
278,
12252,
29889,
13,
6295,
372,
338,
6924,
29901,
565,
278,
2778,
1169,
310,
24763,
29115,
363,
599,
3600,
2305,
29892,
13,
578,
1258,
902,
2778,
1169,
2302,
363,
599,
1906,
310,
6029,
1183,
3897,
278,
20954,
13,
29885,
1228,
29889,
13,
6295,
925,
408,
940,
2778,
1573,
363,
599,
310,
502,
451,
871,
373,
278,
4891,
29892,
541,
884,
297,
13,
29950,
275,
3353,
8859,
2834,
29892,
577,
1183,
2086,
2778,
1573,
363,
599,
310,
502,
29889,
13,
13468,
1258,
445,
29892,
310,
3236,
29892,
451,
25499,
310,
18136,
29892,
541,
408,
3600,
21869,
322,
13,
14242,
29889,
2296,
29892,
297,
902,
3165,
1793,
471,
6446,
25531,
5241,
29877,
29915,
29879,
7623,
310,
13,
29909,
2634,
3391,
313,
29871,
29946,
29889,
29871,
29906,
29955,
29897,
1058,
376,
1609,
278,
7622,
403,
1781,
2264,
310,
13,
22880,
5613,
11549,
2187,
750,
16692,
263,
805,
609,
23584,
29892,
1583,
29899,
29873,
6482,
29892,
1583,
29899,
13,
13699,
9714,
27935,
1213,
13,
7058,
1734,
338,
297,
4486,
7853,
9826,
4249,
1784,
29892,
541,
372,
881,
451,
367,
13,
578,
29889,
319,
2778,
277,
338,
2289,
263,
5995,
304,
20751,
29889,
1205,
599,
310,
502,
11581,
263,
5995,
304,
263,
13,
276,
1328,
451,
491,
1749,
1914,
3081,
448,
451,
1584,
8680,
10040,
508,
437,
901,
448,
541,
297,
11625,
987,
13,
294,
591,
526,
5144,
310,
2819,
322,
763,
18136,
29889,
512,
6033,
550,
29871,
29947,
29901,
29896,
29955,
29901,
376,
3644,
4344,
29892,
13,
6098,
540,
12935,
29892,
540,
12935,
310,
4177,
29892,
10404,
540,
12935,
411,
2819,
29892,
4944,
591,
8812,
411,
13,
29950,
326,
297,
1797,
393,
591,
1122,
884,
367,
3144,
272,
2164,
411,
18136,
1213,
512,
393,
982,
29892,
322,
304,
13,
5747,
15834,
29892,
591,
11581,
263,
5995,
304,
263,
20751,
29889,
1763,
1925,
372,
1790,
982,
29901,
491,
17659,
13,
705,
526,
16356,
408,
18025,
310,
4177,
29892,
322,
1584,
2183,
263,
6232,
297,
3600,
1407,
25616,
13,
29876,
1535,
29892,
408,
29871,
29906,
5310,
29871,
29896,
29936,
29946,
10603,
502,
29889,
317,
787,
29892,
408,
18025,
29892,
437,
505,
263,
5995,
304,
367,
297,
13,
1552,
381,
17852,
29915,
29879,
3699,
29889,
739,
338,
871,
297,
445,
4060,
393,
591,
29892,
322,
1584,
1183,
29892,
2778,
277,
13,
354,
3496,
29889,
1105,
278,
8831,
310,
1605,
296,
313,
8452,
29871,
29896,
29945,
29941,
29906,
29897,
16187,
393,
591,
679,
925,
2450,
13,
14037,
738,
2778,
277,
472,
599,
373,
1749,
760,
29889,
1987,
29892,
278,
17715,
310,
393,
13,
5143,
2450,
29892,
1951,
372,
3732,
502,
18025,
310,
4177,
29892,
322,
528,
279,
414,
372,
278,
25616,
13,
29876,
1535,
29892,
4076,
502,
263,
5995,
304,
19546,
964,
278,
286,
550,
1080,
310,
1749,
17852,
313,
8452,
13,
29896,
29945,
29947,
29906,
29897,
5069,
18025,
591,
526,
29889,
319,
5995,
29892,
408,
591,
1497,
29892,
338,
278,
1021,
408,
263,
2778,
277,
29889,
1105,
372,
13,
275,
871,
297,
445,
4060,
393,
591,
2778,
277,
18356,
29889,
624,
29889,
3739,
25470,
7845,
701,
11071,
368,
13,
262,
6033,
550,
29871,
29953,
584,
29896,
29906,
29901,
376,
1576,
281,
1179,
310,
4457,
338,
4892,
29892,
541,
278,
3889,
19797,
310,
4177,
338,
13,
300,
17196,
2834,
1213,
4587,
3236,
29892,
2748,
591,
6176,
393,
18085,
537,
310,
18025,
322,
528,
279,
414,
13,
262,
278,
25616,
5469,
29892,
769,
1749,
1736,
2125,
373,
263,
2107,
18085,
537,
29892,
607,
5717,
13,
1454,
20751,
29901,
8452,
29871,
29896,
29945,
29947,
29906,
467,
13,
18650,
2778,
277,
373,
3037,
29894,
653,
471,
29892,
408,
591,
4091,
5649,
2678,
29892,
18719,
8724,
278,
13,
13519,
310,
738,
2869,
5923,
23940,
304,
15171,
355,
29889,
1205,
1584,
1434,
393,
13,
277,
471,
4120,
1711,
5645,
2222,
29889,
1152,
4249,
916,
2712,
29892,
727,
526,
2211,
13,
18732,
13879,
393,
6602,
920,
11180,
385,
3158,
338,
2778,
2105,
2738,
29901,
278,
13,
29881,
647,
537,
310,
278,
2022,
29892,
278,
664,
393,
338,
2309,
29892,
322,
278,
5360,
411,
607,
372,
338,
13,
15091,
29889,
13,
5618,
769,
310,
599,
393,
1183,
1258,
29892,
411,
278,
16452,
10362,
18085,
537,
310,
278,
13,
29924,
1228,
310,
4177,
29892,
408,
349,
2482,
18488,
5456,
29892,
297,
385,
12145,
506,
284,
3971,
363,
278,
29871,
29896,
29945,
29900,
29900,
386,
13,
812,
1536,
653,
310,
278,
8831,
310,
382,
561,
267,
375,
29892,
607,
3342,
902,
25616,
5637,
6614,
29901,
13,
29908,
4591,
445,
11203,
655,
310,
278,
25616,
5637,
6614,
408,
515,
278,
4079,
310,
263,
7934,
13,
29887,
21616,
6709,
29892,
24536,
278,
13512,
17659,
310,
6182,
322,
902,
18085,
537,
29892,
1473,
13,
6194,
304,
4177,
29889,
512,
2114,
29892,
408,
16020,
10189,
15873,
29901,
525,
1552,
350,
2222,
287,
9167,
29892,
515,
278,
2114,
13,
5747,
1183,
338,
278,
21869,
310,
4177,
29892,
756,
263,
2656,
310,
10362,
18085,
537,
515,
278,
13,
262,
18925,
1781,
393,
4177,
338,
1213,
13,
2887,
304,
278,
1736,
6053,
393,
1183,
8988,
714,
29892,
1183,
451,
871,
1258,
13,
24310,
2712,
297,
278,
7934,
2834,
29892,
541,
2712,
310,
28163,
14656,
13,
294,
591,
674,
4720,
5649,
29889,
13,
1576,
5360,
411,
607,
1183,
27320,
6839,
902,
26305,
304,
278,
674,
310,
4177,
29889,
13,
6246,
393,
26305,
29892,
607,
338,
278,
1021,
408,
8753,
3335,
29892,
471,
577,
2107,
393,
1584,
13,
271,
278,
1369,
310,
902,
2834,
29892,
408,
349,
2482,
16841,
5456,
297,
1919,
372,
471,
577,
13,
7979,
271,
393,
376,
9290,
7621,
1090,
4177,
508,
367,
2714,
310,
29892,
322,
694,
697,
541,
4177,
13,
3068,
15171,
355,
372,
1213,
4587,
3236,
29892,
4177,
1641,
599,
13988,
29892,
1033,
1653,
263,
13,
1037,
1535,
15390,
310,
8004,
902,
8753,
3335,
29914,
417,
345,
29889,
1205,
940,
756,
451,
2309,
13,
5747,
29889,
1105,
2869,
29892,
871,
4177,
18136,
1311,
508,
15171,
355,
372,
29889,
13,
797,
4880,
304,
278,
664,
29892,
278,
14656,
310,
278,
664,
2309,
11180,
16415,
13,
1050,
277,
29889,
739,
338,
451,
393,
14656,
408,
1316,
338,
7088,
3099,
29889,
2216,
472,
599,
29889,
1205,
13,
705,
505,
297,
502,
871,
697,
2655,
393,
338,
3889,
29892,
1749,
3889,
674,
29879,
29889,
7857,
565,
591,
13,
26680,
1207,
393,
3889,
674,
1993,
9186,
278,
674,
310,
278,
17852,
29892,
727,
338,
13,
28450,
1683,
304,
437,
29889,
14846,
639,
20309,
338,
1098,
7114,
29889,
1205,
746,
4856,
14741,
297,
13,
1552,
3700,
310,
2107,
14656,
29892,
769,
670,
29914,
2276,
674,
1818,
594,
4150,
304,
393,
674,
310,
13,
1552,
17852,
411,
599,
278,
7621,
4889,
29892,
470,
1683,
4418,
29889,
13,
3112,
338,
8031,
304,
25917,
17503,
920,
372,
338,
393,
14656,
13,
262,
1037,
2129,
393,
11509,
29892,
322,
16415,
2778,
277,
29889,
4001,
591,
526,
1754,
701,
310,
1023,
13,
20895,
29892,
3573,
322,
10752,
29892,
470,
4383,
322,
8548,
29892,
322,
1951,
278,
1023,
526,
577,
13,
11291,
873,
21351,
4208,
408,
304,
788,
701,
304,
697,
2022,
29892,
372,
4477,
393,
565,
591,
13,
17532,
263,
4195,
373,
2845,
697,
310,
278,
1023,
11192,
29892,
363,
10597,
2734,
727,
13,
9344,
367,
263,
8943,
4195,
373,
278,
916,
2625,
393,
4195,
269,
275,
2000,
13,
29874,
27396,
749,
29889,
1932,
372,
20074,
373,
278,
2625,
310,
278,
3573,
29892,
408,
338,
1556,
9670,
29892,
372,
338,
13,
13998,
1047,
2454,
27396,
749,
29889,
13,
10454,
599,
20954,
639,
20309,
12185,
297,
278,
26305,
310,
1749,
674,
29879,
304,
13,
1552,
674,
310,
4177,
29892,
363,
727,
338,
871,
393,
697,
3889,
1543,
297,
502,
29889,
1128,
338,
372,
13,
6098,
29892,
393,
591,
1033,
451,
925,
1207,
697,
1044,
310,
3544,
749,
310,
3600,
674,
322,
367,
13,
2611,
10835,
4922,
29973,
1670,
526,
9087,
368,
1023,
9590,
29901,
29871,
29896,
29897,
4806,
2609,
472,
5019,
13,
2230,
363,
968,
29872,
599,
393,
3600,
674,
1122,
2244,
310,
502,
1434,
278,
1095,
310,
1749,
12080,
29936,
13,
29906,
29897,
1552,
5849,
373,
278,
20954,
2625,
338,
21351,
304,
5849,
373,
278,
13,
22708,
2454,
2625,
29889,
1205,
3056,
1047,
2454,
5849,
4477,
278,
14243,
310,
278,
14321,
310,
13,
29890,
397,
583,
29901,
18577,
29892,
15006,
29892,
322,
4344,
6548,
451,
297,
263,
21003,
10597,
368,
13,
3780,
292,
11672,
29889,
390,
1624,
278,
4766,
338,
263,
4331,
3983,
29892,
19849,
310,
1472,
13,
2341,
1485,
29892,
411,
2319,
364,
4637,
297,
1546,
29889,
4956,
565,
3099,
508,
528,
1296,
786,
278,
13,
29890,
397,
2354,
2625,
29892,
278,
1047,
2454,
27396,
749,
29892,
769,
372,
338,
1950,
363,
20954,
13,
29887,
798,
386,
304,
367,
2919,
2012,
310,
297,
2319,
6576,
29889,
1932,
2712,
526,
5189,
29892,
13,
267,
25009,
746,
697,
1818,
4808,
373,
297,
278,
6501,
29892,
278,
14451,
29892,
565,
697,
947,
1532,
29892,
13,
3068,
367,
1407,
2919,
29889,
739,
471,
2919,
577,
4049,
297,
902,
2834,
29889,
10133,
902,
2107,
13,
29887,
798,
386,
29892,
263,
14321,
393,
1033,
1532,
367,
9401,
304,
26224,
410,
11476,
297,
13,
4716,
1269,
1353,
338,
6674,
2957,
491,
3528,
29892,
321,
29889,
330,
29892,
29871,
29906,
921,
29871,
29906,
353,
29871,
29946,
29936,
29871,
29946,
921,
29871,
29946,
353,
29871,
29896,
29953,
29892,
29871,
29896,
29953,
13,
29916,
29871,
29896,
29953,
353,
29871,
29906,
29945,
29953,
2992,
29889,
13,
3112,
338,
297,
1776,
310,
445,
393,
278,
17852,
4049,
15223,
12407,
297,
18845,
13,
3062,
896,
1818,
408,
372,
892,
4808,
373,
297,
278,
6501,
29889,
24763,
750,
1063,
5429,
491,
13,
29954,
397,
393,
540,
471,
304,
367,
278,
17852,
310,
263,
2107,
5233,
1549,
28156,
29889,
15175,
2678,
13,
29899,
591,
437,
451,
1073,
920,
1472,
372,
471,
448,
4177,
5429,
24763,
304,
12088,
393,
1487,
297,
13,
29879,
562,
25193,
29889,
24763,
1795,
1532,
505,
1497,
472,
393,
1298,
29901,
2567,
306,
17386,
366,
13,
29873,
1025,
592,
306,
626,
304,
367,
278,
17852,
310,
263,
2107,
5233,
1549,
445,
1487,
28156,
29889,
306,
13,
21969,
4658,
596,
1734,
29892,
322,
306,
437,
4658,
372,
29889,
1205,
1286,
366,
2649,
592,
304,
12088,
13,
26994,
1434,
596,
11640,
508,
3380,
304,
367,
6095,
26940,
29889,
1105,
3113,
2649,
592,
607,
13,
974,
278,
1023,
2712,
366,
674,
592,
304,
437,
29892,
322,
306,
674,
437,
372,
29889,
13,
6246,
24763,
1497,
3078,
310,
278,
2924,
29889,
940,
3763,
4687,
714,
29892,
1985,
13,
262,
278,
6501,
29892,
393,
338,
29892,
594,
2276,
292,
304,
278,
674,
310,
278,
17852,
746,
372,
6140,
13,
6463,
368,
9301,
304,
437,
825,
278,
17852,
26540,
29889,
1334,
1073,
278,
21957,
29889,
13,
2059,
10594,
24763,
964,
1316,
263,
5189,
2602,
29892,
4177,
5131,
24763,
13,
517,
21665,
8548,
1474,
297,
385,
18886,
681,
7426,
29889,
24763,
1258,
393,
29892,
322,
3600,
13,
5444,
389,
471,
263,
2778,
277,
363,
599,
670,
10368,
537,
29889,
13,
10454,
8680,
10040,
471,
1925,
964,
1316,
14656,
1784,
3064,
29889,
3824,
472,
278,
13,
812,
11173,
362,
29892,
1183,
6363,
472,
2748,
515,
278,
3838,
310,
278,
3190,
9477,
393,
902,
5791,
13,
11102,
304,
367,
278,
11946,
21071,
29889,
1152,
278,
2614,
295,
750,
5429,
902,
393,
902,
5791,
723,
20913,
13,
957,
278,
3699,
310,
10968,
22296,
29889,
29124,
1711,
599,
22057,
769,
13112,
393,
13,
6194,
278,
11946,
21071,
723,
20913,
22296,
29889,
15175,
1183,
6363,
278,
3107,
354,
1270,
310,
19899,
21071,
13,
29945,
29941,
1048,
278,
16403,
23164,
322,
4892,
310,
278,
11946,
21071,
29889,
16557,
3821,
22057,
13,
344,
331,
304,
505,
750,
2107,
14656,
411,
372,
29892,
304,
1316,
385,
15834,
393,
278,
13,
29911,
1191,
398,
373,
19899,
21071,
29871,
29945,
29941,
6077,
278,
592,
1416,
301,
1117,
964,
385,
564,
9102,
424,
26474,
272,
29889,
2296,
13,
29893,
483,
451,
437,
393,
29892,
1183,
723,
2274,
29889,
13,
18650,
1736,
892,
26630,
408,
1183,
471,
26630,
29889,
19899,
21071,
12355,
267,
304,
22884,
29901,
4177,
338,
13,
1552,
17733,
3118,
29889,
3091,
375,
29914,
29967,
14889,
1524,
29892,
9087,
7339,
310,
25549,
322,
9184,
29892,
471,
451,
577,
1568,
13,
6727,
11251,
408,
626,
11251,
29889,
940,
10600,
8724,
278,
6159,
310,
3036,
2877,
29889,
450,
27379,
310,
13,
29924,
267,
459,
327,
314,
423,
29892,
515,
377,
663,
278,
18472,
3973,
29879,
2996,
29892,
892,
4049,
310,
1568,
310,
278,
1021,
13,
12863,
29889,
6549,
278,
16457,
459,
327,
314,
713,
27379,
2665,
278,
2107,
5685,
397,
451,
304,
6035,
728,
278,
13,
6727,
272,
2877,
310,
278,
5199,
8175,
29892,
541,
3763,
714,
310,
377,
326,
448,
392,
769,
892,
13421,
13,
974,
372,
29892,
322,
274,
1680,
287,
373,
278,
8957,
944,
29879,
310,
18356,
2745,
372,
471,
975,
29889,
13,
5618,
263,
29191,
20474,
362,
471,
372,
769,
363,
278,
3186,
746,
10144,
17120,
29871,
29896,
29896,
29901,
29955,
13,
15439,
13190,
29901,
376,
29954,
397,
338,
322,
940,
12355,
267,
7048,
29874,
29939,
720,
1213,
940,
18136,
1311,
5366,
1960,
13,
12257,
2877,
29892,
322,
940,
12355,
267,
2712,
393,
526,
2309,
297,
15017,
411,
3036,
2877,
448,
1316,
13,
294,
278,
8820,
310,
13825,
322,
6182,
297,
278,
17733,
14662,
29889,
13,
7058,
1734,
17733,
29892,
607,
278,
2614,
1379,
17487,
368,
9580,
13190,
1434,
278,
13,
579,
265,
3276,
12642,
29872,
310,
19899,
21071,
29892,
2289,
6839,
393,
4177,
12355,
267,
599,
393,
338,
3036,
635,
13,
1266,
29889,
1334,
508,
1074,
445,
2114,
599,
975,
278,
8198,
29198,
29892,
278,
13,
1639,
1688,
11491,
2044,
886,
310,
278,
22057,
29892,
278,
1570,
29198,
29892,
278,
390,
8846,
275,
29892,
322,
13,
1552,
383,
19467,
310,
278,
6291,
29889,
13,
4806,
505,
21633,
1035,
1796,
287,
304,
278,
2969,
393,
727,
526,
2211,
9034,
787,
297,
13,
1552,
697,
4177,
29889,
1205,
297,
902,
9257,
29892,
322,
1584,
304,
902,
29892,
393,
2969,
471,
8515,
29892,
13,
262,
510,
1457,
26791,
1821,
29889,
4587,
3236,
372,
338,
2289,
297,
510,
1457,
26791,
1821,
304,
502,
2086,
29889,
739,
338,
13,
5143,
393,
591,
505,
21633,
701,
411,
372,
29892,
322,
577,
372,
2360,
1258,
505,
278,
10879,
372,
13,
29893,
483,
505,
746,
372,
937,
20887,
11483,
2501,
278,
3186,
29889,
13,
4806,
4446,
372,
338,
6924,
1183,
6363,
902,
5791,
471,
304,
367,
278,
11946,
21071,
29889,
2193,
13,
5062,
11235,
723,
367,
9213,
491,
5739,
6656,
29871,
29946,
29929,
29901,
29896,
29900,
29892,
263,
1196,
607,
1449,
29892,
577,
1784,
13,
29907,
10047,
1364,
324,
1503,
1284,
2898,
304,
2274,
29892,
1550,
2691,
22057,
1074,
372,
9436,
29889,
13,
1349,
375,
10968,
2448,
375,
1089,
313,
459,
29889,
7537,
29889,
1919,
282,
29889,
29871,
29906,
29946,
29906,
274,
3246,
393,
1196,
322,
769,
4083,
29901,
376,
3112,
338,
13,
12765,
3953,
304,
14034,
920,
5739,
29871,
29946,
29929,
29901,
29896,
29900,
1033,
505,
1063,
1303,
408,
916,
1135,
263,
13,
12062,
713,
293,
18988,
1213,
2216,
1472,
1434,
278,
2889,
11173,
362,
29892,
372,
471,
2821,
393,
13,
1552,
931,
363,
278,
3107,
354,
1270,
471,
472,
1361,
29889,
1152,
727,
750,
1063,
777,
2656,
310,
13,
29878,
8584,
515,
278,
29563,
310,
8660,
801,
599,
3412,
29892,
2745,
29871,
29946,
29896,
350,
29889,
315,
29889,
746,
9184,
527,
4752,
13,
18650,
397,
373,
963,
408,
323,
300,
10221,
29892,
322,
769,
297,
29871,
29941,
29955,
29892,
408,
4088,
29889,
2439,
397,
491,
12060,
471,
451,
13,
974,
278,
29563,
310,
8660,
801,
29892,
471,
4203,
10387,
29892,
4203,
5163,
2017,
273,
29889,
2448,
375,
1089,
884,
13676,
13,
29898,
29886,
29889,
29871,
29896,
29906,
29897,
393,
4473,
713,
293,
23227,
471,
17818,
344,
322,
1880,
472,
278,
931,
29889,
13,
9260,
1183,
884,
505,
304,
3700,
278,
5189,
17750,
297,
901,
1135,
697,
5196,
13,
262,
4177,
29973,
7440,
1183,
1073,
940,
471,
304,
367,
25616,
29973,
739,
338,
2898,
304,
10169,
393,
13,
535,
10085,
29889,
13,
6730,
278,
3190,
9477,
1497,
902,
5791,
471,
304,
367,
10628,
2347,
746,
278,
17733,
13,
5592,
14987,
723,
902,
29889,
2193,
1734,
471,
278,
1021,
1734,
1304,
297,
1222,
397,
375,
13,
29946,
29900,
29901,
29941,
29945,
363,
278,
25616,
10122,
977,
292,
278,
12297,
4434,
824,
6436,
297,
278,
18197,
29889,
13,
13468,
723,
5948,
25274,
393,
29889,
1987,
278,
3190,
9477,
7572,
1919,
278,
5791,
723,
367,
2000,
5791,
310,
4177,
29889,
530,
15311,
9576,
1033,
367,
13,
13998,
263,
1487,
310,
4177,
313,
6854,
29889,
379,
852,
29874,
29871,
29896,
29896,
29901,
29896,
511,
541,
445,
471,
451,
278,
9670,
4060,
29889,
940,
13,
11102,
304,
367,
2000,
5791,
310,
4177,
363,
278,
5412,
2769,
393,
940,
723,
367,
13,
535,
346,
2347,
491,
902,
1641,
10423,
411,
278,
4910,
457,
4360,
663,
29892,
763,
278,
11090,
824,
6436,
13,
974,
2030,
29889,
7849,
5517,
1183,
4446,
3600,
1933,
13593,
472,
445,
1298,
29889,
13,
6246,
727,
892,
1784,
6911,
11183,
8790,
393,
297,
278,
8198,
29198,
29889,
13,
6730,
29892,
19899,
21071,
29871,
29929,
29901,
29945,
29899,
29953,
29892,
607,
29892,
408,
278,
323,
1191,
398,
3697,
29892,
278,
22057,
6363,
471,
13,
19058,
713,
293,
29892,
1497,
278,
2278,
471,
304,
367,
1919,
4177,
278,
341,
523,
29891,
313,
354,
405,
2882,
13,
3259,
408,
376,
29954,
397,
29899,
29882,
1489,
29908,
338,
6446,
297,
1753,
575,
1821,
29892,
21110,
391,
1711,
322,
13,
1228,
3538,
29889,
2216,
1584,
5400,
16728,
6910,
310,
19899,
21071,
1207,
1316,
263,
13,
29885,
2132,
550,
18411,
29892,
2466,
896,
18180,
723,
864,
304,
4772,
278,
1933,
13593,
310,
13,
1552,
4473,
21071,
467,
450,
14656,
278,
22057,
750,
411,
445,
1196,
471,
13,
5062,
1689,
519,
29892,
363,
896,
750,
750,
1601,
10323,
1608,
16366,
1050,
287,
964,
963,
29889,
1105,
750,
1183,
29889,
13,
6246,
825,
278,
380,
2593,
29899,
484,
384,
287,
22057,
1258,
451,
3117,
1074,
29892,
1183,
29892,
2989,
310,
17659,
29892,
13,
29893,
483,
15155,
3052,
29889,
13,
2855,
727,
892,
5684,
6911,
297,
278,
438,
29911,
29892,
408,
591,
1497,
29901,
13,
797,
10144,
17120,
29871,
29947,
29900,
29889,
29871,
29896,
29945,
29899,
29896,
29947,
4177,
338,
4433,
304,
6493,
445,
325,
457,
376,
392,
278,
10961,
607,
13,
8066,
1492,
1361,
756,
8024,
287,
29889,
869,
869,
869,
2803,
596,
1361,
367,
2501,
278,
767,
310,
596,
13,
1266,
1361,
29892,
2501,
278,
1487,
310,
767,
6029,
366,
505,
9324,
6419,
363,
7535,
1213,
13,
22966,
1100,
951,
6950,
3861,
1244,
6589,
29901,
376,
3112,
13,
29893,
483,
2615,
393,
278,
323,
1191,
398,
4893,
278,
11946,
21071,
304,
367,
278,
1487,
310,
4177,
29892,
607,
13,
275,
1568,
2086,
24612,
1336,
16898,
322,
2819,
5996,
304,
367,
22691,
297,
16728,
13,
735,
387,
6656,
1213,
940,
11486,
393,
9561,
278,
8859,
3643,
278,
2678,
27127,
275,
3614,
701,
13,
1366,
19854,
491,
278,
323,
1191,
398,
29889,
390,
1624,
29892,
540,
4083,
393,
777,
310,
278,
2678,
13,
336,
1327,
275,
376,
18020,
3730,
1886,
261,
2821,
310,
738,
4473,
713,
293,
19854,
376,
491,
278,
13,
29911,
1191,
398,
1244,
29889,
313,
797,
6819,
29901,
591,
4443,
393,
1244,
278,
11946,
21071,
338,
2000,
5791,
310,
13,
2517,
14366,
13,
29943,
332,
721,
29892,
10144,
17120,
29871,
29946,
29945,
29889,
29871,
29955,
29899,
29947,
4083,
29901,
376,
10858,
27446,
29892,
438,
4177,
29892,
338,
3926,
322,
3926,
29889,
869,
13,
29889,
869,
4177,
596,
4177,
756,
385,
2461,
287,
366,
411,
278,
17182,
310,
19136,
18499,
1213,
7753,
2466,
13,
5372,
1348,
278,
10144,
17120,
471,
10039,
287,
491,
263,
15150,
13718,
29892,
278,
323,
1191,
398,
4446,
372,
13,
294,
4473,
713,
293,
29889,
951,
6950,
1584,
29360,
393,
278,
18472,
3973,
1734,
363,
6989,
297,
13,
874,
267,
29871,
29906,
29892,
29871,
29953,
29892,
29871,
29896,
29906,
29892,
29871,
29896,
29945,
29892,
322,
29871,
29896,
29953,
338,
11098,
408,
4177,
29889,
13,
8439,
338,
1603,
901,
297,
382,
11907,
709,
29871,
29941,
29946,
29889,
29871,
29896,
29896,
29901,
4177,
18136,
1311,
1497,
29901,
376,
2831,
4550,
13,
29879,
1036,
278,
6171,
4177,
29901,
1522,
8948,
306,
29892,
306,
674,
2740,
714,
590,
29735,
322,
16508,
963,
714,
1213,
13,
4806,
8369,
278,
10324,
376,
29902,
613,
607,
2444,
304,
22884,
278,
2714,
393,
4177,
13,
29950,
326,
1311,
723,
2041,
29889,
1205,
297,
23281,
29871,
29906,
29941,
310,
278,
1021,
16385,
29901,
376,
29902,
674,
731,
697,
13,
11360,
561,
2018,
975,
963,
29892,
590,
21649,
4699,
1213,
450,
323,
1191,
398,
20983,
947,
7539,
278,
13,
567,
17120,
408,
4473,
713,
293,
29889,
4587,
3236,
445,
338,
451,
21204,
3598,
2821,
29892,
541,
727,
13,
26680,
367,
385,
2411,
1414,
393,
278,
11946,
21071,
29892,
2000,
1244,
376,
1357,
21649,
4699,
29908,
13,
29893,
483,
367,
4177,
18136,
1311,
29889,
13,
14769,
475,
29892,
297,
5677,
331,
21071,
29871,
29906,
29941,
29889,
29871,
29941,
4177,
1497,
29901,
376,
392,
306,
6142,
4091,
11705,
278,
13,
1745,
21941,
310,
278,
590,
29735,
515,
599,
278,
12625,
304,
607,
306,
505,
18225,
963,
1213,
13,
6246,
297,
23281,
29871,
29945,
29901,
376,
29902,
674,
12020,
701,
363,
4699,
263,
364,
1141,
371,
681,
5443,
1213,
2193,
1734,
13,
29908,
17519,
29908,
338,
4049,
4586,
491,
278,
323,
1191,
6762,
304,
12266,
278,
11946,
21071,
29889,
10133,
13,
29911,
1191,
398,
20983,
373,
23281,
29871,
29945,
947,
671,
376,
29874,
364,
1141,
371,
681,
11946,
21071,
29908,
2012,
310,
13,
29908,
17519,
1642,
1987,
29892,
26800,
368,
29892,
297,
23281,
29871,
29953,
29901,
376,
2855,
445,
338,
278,
1024,
607,
940,
13,
845,
497,
1246,
1075,
29901,
278,
6171,
338,
1749,
364,
1141,
371,
681,
2264,
1213,
512,
278,
2678,
13370,
29878,
1161,
29892,
13,
29896,
29889,
29871,
29945,
29896,
591,
1303,
584,
29908,
5618,
338,
278,
1024,
310,
278,
4088,
11946,
21071,
29973,
13,
29934,
29889,
13896,
29874,
289,
29889,
476,
801,
1648,
1497,
29901,
525,
29950,
275,
1024,
338,
525,
1552,
6171,
29915,
1642,
512,
278,
18472,
3973,
1426,
310,
13,
5747,
13382,
29892,
278,
1734,
363,
6171,
338,
612,
801,
705,
29882,
29991,
739,
338,
8717,
12449,
304,
1284,
263,
2678,
13,
336,
14663,
2599,
1316,
263,
2655,
29889,
313,
6854,
29889,
951,
6950,
29892,
1015,
29889,
7537,
29892,
282,
29889,
29871,
29955,
29900,
467,
13,
855,
453,
1790,
13382,
5692,
297,
5677,
331,
21071,
29871,
29941,
29900,
29889,
29871,
29896,
29896,
29901,
376,
2831,
306,
626,
411,
366,
448,
13,
11347,
310,
612,
801,
705,
29882,
448,
304,
4078,
366,
1213,
450,
323,
1191,
398,
9436,
5717,
445,
13382,
13,
12062,
713,
293,
29889,
951,
6950,
451,
1575,
445,
29892,
322,
6589,
29901,
376,
262,
325,
29889,
29871,
29896,
29896,
278,
20295,
13,
9716,
1336,
14143,
310,
4177,
1641,
411,
11996,
29892,
297,
278,
9128,
4060,
338,
13,
2695,
6419,
491,
278,
671,
310,
278,
1734,
8133,
336,
29908,
448,
8133,
336,
338,
263,
20285,
1847,
1734,
297,
278,
13,
29911,
1191,
6762,
29892,
607,
2444,
297,
2498,
304,
2737,
304,
278,
4280,
1006,
1456,
1546,
13,
29954,
397,
29915,
29879,
1040,
6906,
322,
278,
22312,
2435,
404,
310,
3600,
2305,
448,
541,
263,
3064,
29892,
372,
2444,
304,
13,
12676,
4177,
18136,
1311,
29889,
313,
2951,
8133,
336,
274,
29888,
29889,
18885,
678,
309,
880,
29892,
1919,
13,
29954,
21051,
631,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
282,
29889,
301,
1403,
467,
13,
6295,
727,
892,
2999,
4221,
800,
310,
278,
1933,
13593,
310,
902,
5791,
29889,
1205,
29892,
408,
13,
705,
1497,
29892,
445,
723,
367,
263,
19253,
304,
902,
29892,
385,
10039,
363,
13587,
373,
297,
278,
13,
26031,
29889,
1152,
1183,
408,
591,
1497,
750,
750,
1601,
10323,
1608,
16366,
1050,
287,
964,
902,
29901,
541,
1286,
1183,
13,
1945,
1983,
393,
1603,
1790,
5196,
29892,
540,
5791,
29892,
338,
304,
367,
4177,
29991,
13,
13468,
1122,
1584,
505,
18691,
701,
278,
2114,
393,
278,
20799,
1058,
471,
304,
13,
957,
17505,
902,
471,
263,
5004,
5196,
29889,
739,
471,
9186,
2821,
393,
278,
20799,
13,
11102,
25616,
29892,
515,
278,
3957,
304,
1222,
397,
375,
29871,
29946,
29900,
29901,
29941,
29945,
408,
591,
1497,
29889,
13,
11760,
1183,
723,
505,
304,
1302,
412,
411,
263,
20474,
362,
1584,
310,
278,
1556,
17733,
13,
2308,
13593,
29889,
1334,
29892,
408,
591,
1497,
2038,
29892,
505,
21633,
701,
411,
278,
6964,
310,
12753,
13,
7435,
541,
871,
3118,
4177,
29889,
1205,
565,
1183,
18691,
701,
278,
2411,
1414,
591,
505,
13,
1182,
1774,
714,
29892,
372,
723,
367,
1554,
9186,
716,
393,
20887,
2501,
902,
472,
445,
13,
3149,
29889,
13,
4806,
508,
788,
29901,
2216,
263,
2846,
14342,
1372,
505,
1063,
2183,
278,
17659,
304,
4060,
278,
13,
4569,
663,
310,
13825,
297,
278,
382,
24059,
391,
297,
11090,
824,
23435,
29889,
2296,
1058,
471,
2989,
310,
13,
3874,
346,
29899,
920,
1033,
1183,
4418,
304,
4060,
278,
25616,
10122,
2629,
902,
29892,
363,
14183,
13,
10874,
29879,
29889,
1205,
769,
29892,
825,
24187,
663,
29889,
319,
4549,
27127,
262,
293,
11399,
29892,
6763,
13,
2541,
5241,
29877,
313,
29871,
29906,
29889,
29871,
29896,
29946,
29889,
29871,
29953,
29947,
29899,
29953,
29929,
29897,
4934,
393,
6630,
267,
1156,
670,
937,
13,
3977,
5336,
411,
4177,
297,
263,
18551,
29892,
2360,
1033,
6963,
3654,
304,
505,
7916,
1449,
13,
2541,
670,
6532,
29889,
1724,
24187,
663,
29892,
825,
29403,
2778,
277,
297,
902,
1058,
750,
451,
925,
263,
13,
4924,
29892,
541,
278,
9128,
10122,
310,
278,
4910,
457,
5791,
2629,
902,
363,
14183,
13,
10874,
29879,
29991,
512,
6819,
29892,
920,
1033,
777,
9826,
23222,
304,
1348,
1183,
1818,
505,
750,
13,
344,
369,
284,
5684,
18025,
322,
29215,
1156,
13825,
29892,
746,
1584,
6630,
267,
1033,
13,
1333,
6963,
3654,
304,
393,
1156,
925,
697,
18551,
29889,
1126,
825,
310,
6936,
29892,
901,
13,
5391,
29891,
1135,
6630,
267,
29991,
13,
29956,
294,
372,
4780,
29892,
6060,
1584,
451,
5181,
363,
902,
304,
505,
10847,
1156,
13,
14565,
263,
18551,
29973,
2216,
472,
599,
29889,
2296,
408,
591,
4446,
29892,
750,
304,
4808,
373,
297,
278,
6501,
304,
13,
6596,
2418,
1556,
5189,
2712,
29889,
1126,
4340,
29892,
1156,
3600,
12060,
29892,
322,
2645,
599,
13,
1552,
7934,
2834,
29892,
727,
723,
367,
263,
4868,
1067,
1161,
1546,
1023,
28848,
29892,
408,
372,
13,
29893,
406,
29892,
278,
7314,
310,
902,
10847,
14509,
902,
393,
445,
2278,
338,
25616,
29892,
322,
278,
13,
14917,
310,
902,
4771,
267,
14509,
902,
393,
940,
23880,
763,
925,
738,
15311,
2278,
29892,
13,
392,
1584,
756,
4226,
24354,
4225,
29991,
13,
2951,
18055,
964,
445,
3186,
29892,
408,
18472,
3973,
29879,
1497,
313,
29896,
29900,
29901,
29955,
511,
940,
1497,
29901,
376,
3629,
8948,
29892,
13,
29902,
2041,
304,
437,
596,
674,
29892,
438,
4177,
1213,
450,
6291,
6860,
267,
29892,
2466,
577,
1784,
972,
29891,
372,
29892,
13,
5747,
515,
278,
937,
14426,
310,
26192,
3600,
5199,
10752,
750,
278,
18551,
310,
13,
29954,
397,
29892,
297,
607,
599,
7134,
338,
2198,
29889,
349,
2482,
17172,
1584,
6790,
29892,
297,
670,
13,
2369,
8798,
506,
284,
313,
8452,
29871,
29941,
29947,
29896,
29906,
29897,
393,
472,
393,
1298,
376,
8256,
925,
4520,
13,
262,
278,
281,
3424,
310,
278,
21869,
310,
4177,
29892,
940,
756,
599,
278,
5144,
310,
278,
22890,
936,
13,
8434,
3133,
5794,
322,
25722,
1474,
2198,
304,
18136,
1311,
29892,
322,
953,
2634,
778,
9736,
411,
13,
19585,
29894,
928,
5360,
29889,
450,
1021,
20635,
10324,
670,
18819,
297,
13,
29898,
29896,
29929,
29945,
29896,
360,
29903,
29871,
29941,
29929,
29900,
29945,
29897,
322,
1603,
1449,
297,
313,
29896,
29929,
29945,
29953,
29892,
360,
29903,
29871,
29941,
29929,
29906,
29946,
467,
448,
1334,
13,
1202,
393,
3099,
16187,
28424,
373,
278,
15311,
2320,
1531,
1974,
3233,
338,
13,
7192,
284,
492,
569,
29889,
1105,
445,
18880,
338,
29889,
448,
739,
338,
6924,
393,
599,
10106,
3600,
2834,
13,
3868,
17654,
385,
2543,
728,
515,
278,
7134,
310,
599,
393,
940,
471,
304,
8812,
29889,
940,
13,
24622,
502,
304,
1074,
2768,
18136,
1311,
29892,
408,
372,
892,
29892,
297,
25556,
29871,
29896,
29906,
29901,
29945,
29900,
6160,
29902,
505,
263,
13,
29890,
2156,
1608,
304,
367,
27257,
1891,
411,
29892,
322,
920,
626,
306,
1040,
22042,
2745,
372,
338,
13,
562,
510,
572,
3276,
3850,
940,
6839,
940,
6363,
940,
750,
304,
367,
715,
686,
287,
964,
278,
10809,
29879,
310,
13,
357,
11710,
23164,
29892,
322,
471,
408,
372,
892,
297,
263,
19932,
9758,
29892,
1033,
451,
679,
13,
510,
3921,
519,
2745,
372,
723,
367,
975,
411,
29889,
940,
1235,
502,
1106,
1449,
297,
2259,
13,
29896,
29906,
29901,
29906,
29955,
29901,
376,
10454,
338,
590,
10752,
7458,
29881,
29889,
1126,
825,
4091,
306,
1827,
29973,
17852,
4078,
592,
515,
13,
1366,
7234,
1213,
1126,
769,
297,
402,
621,
12846,
3270,
278,
11747,
295,
549,
4646,
29885,
598,
12624,
701,
411,
13,
29950,
326,
29892,
322,
940,
1033,
451,
281,
9424,
18136,
1311,
491,
263,
885,
1633,
304,
1284,
372,
871,
263,
12561,
29889,
13,
3782,
29892,
372,
471,
727,
29892,
322,
940,
22830,
7901,
630,
10416,
29892,
408,
278,
2117,
453,
4314,
13,
26859,
16648,
304,
278,
7901,
271,
330,
5252,
5796,
415,
2955,
515,
278,
9301,
13290,
260,
2673,
13,
392,
7446,
1127,
714,
1009,
2654,
260,
680,
2466,
1906,
470,
928,
267,
29889,
940,
1584,
18860,
13,
12841,
5281,
8866,
29892,
408,
4485,
29871,
29896,
29946,
29901,
29941,
29946,
10603,
502,
29889,
1152,
3600,
5199,
537,
471,
29892,
491,
278,
674,
13,
974,
278,
17852,
322,
3600,
1914,
14161,
296,
1583,
29899,
6310,
292,
313,
4819,
309,
29871,
29906,
29901,
29955,
29897,
443,
24681,
13,
1609,
25616,
7788,
515,
278,
5613,
27721,
310,
577,
16403,
263,
13,
1457,
4924,
29889,
1105,
940,
471,
1584,
6153,
304,
1812,
278,
17852,
304,
1235,
278,
521,
284,
625,
1209,
29889,
13,
1123,
635,
29892,
372,
1033,
505,
4502,
29892,
322,
727,
1603,
723,
505,
1063,
385,
10362,
13,
276,
2310,
683,
29892,
1951,
738,
1044,
310,
278,
4177,
29899,
1171,
29892,
408,
591,
4446,
2038,
29892,
471,
310,
10362,
13,
1050,
277,
29892,
10362,
297,
337,
862,
362,
29889,
350,
3477,
278,
17852,
281,
24455,
393,
940,
881,
13748,
13,
1552,
289,
1524,
521,
284,
625,
1584,
304,
278,
270,
1727,
29879,
29892,
304,
1510,
278,
29403,
5645,
448,
2289,
13,
296,
533,
368,
8724,
5645,
448,
310,
3600,
5360,
29889,
13,
13468,
4689,
304,
8812,
411,
18136,
322,
577,
304,
2778,
277,
363,
502,
472,
278,
13,
812,
11173,
362,
29892,
363,
769,
408,
591,
1497,
29892,
1183,
6363,
278,
16403,
3107,
354,
1270,
310,
19899,
21071,
13,
29945,
29941,
29889,
2296,
6363,
10144,
17120,
29871,
29906,
29906,
607,
940,
471,
304,
1162,
568,
373,
278,
4891,
29901,
376,
15597,
505,
13,
29886,
631,
1133,
590,
6567,
322,
590,
6900,
29908,
29898,
29906,
29906,
29901,
29896,
29953,
467,
2296,
6363,
278,
4475,
3107,
354,
1270,
310,
13,
24625,
3090,
21071,
29871,
29896,
29906,
29901,
29896,
29900,
29901,
376,
15597,
4091,
1106,
373,
6029,
896,
505,
9307,
1133,
29892,
322,
896,
13,
845,
497,
286,
2905,
363,
408,
697,
286,
473,
1983,
363,
385,
871,
1487,
1213,
7753,
278,
390,
7597,
8866,
29879,
304,
13,
9482,
278,
1090,
21354,
11504,
1309,
29879,
408,
278,
18472,
3973,
756,
963,
29889,
1205,
278,
2643,
338,
13,
24595,
29901,
1552,
697,
1058,
338,
9307,
1133,
338,
25616,
1699,
1004,
1769,
392,
376,
29950,
326,
29908,
14637,
304,
278,
11946,
21071,
13,
294,
565,
1790,
2022,
29889,
13,
3596,
20954,
639,
20309,
12185,
297,
7595,
292,
697,
29915,
29879,
674,
411,
278,
674,
310,
13,
1552,
17852,
29889,
1126,
746,
825,
940,
13686,
3598,
674,
29879,
338,
2998,
29892,
372,
338,
3734,
393,
13,
650,
13686,
3598,
674,
825,
278,
17852,
674,
29879,
29889,
1105,
1183,
408,
2000,
2501,
1584,
515,
13,
1552,
1369,
310,
902,
15477,
411,
278,
23164,
11946,
21071,
304,
674,
825,
1183,
13,
29895,
1482,
278,
17852,
281,
24455,
29892,
825,
1183,
6363,
902,
5791,
281,
24455,
29889,
2296,
12707,
902,
13,
517,
599,
393,
29892,
6060,
451,
8072,
16387,
472,
278,
1407,
3256,
310,
278,
13,
812,
11173,
362,
29892,
3447,
18880,
2198,
304,
902,
10752,
408,
1183,
282,
8417,
287,
599,
1438,
13,
386,
886,
297,
902,
5192,
29892,
2778,
11407,
5198,
575,
873,
3412,
411,
18136,
29889,
13,
3664,
1584,
278,
302,
28157,
9088,
29892,
411,
278,
4823,
310,
278,
2614,
1379,
29892,
471,
429,
3456,
13,
3166,
3367,
1338,
29889,
3600,
9942,
29883,
2459,
29892,
278,
937,
28453,
8497,
310,
3600,
10416,
29892,
471,
6788,
1319,
13,
517,
18136,
322,
5480,
304,
902,
408,
1532,
29889,
13,
29950,
275,
24329,
297,
278,
17567,
471,
1556,
5189,
29901,
591,
1795,
1532,
1246,
372,
13,
1552,
5957,
29873,
706,
310,
278,
2107,
28839,
29889,
5901,
11825,
18093,
1009,
18025,
1250,
13,
3166,
278,
2669,
310,
4177,
29889,
2296,
322,
940,
29892,
297,
704,
287,
5597,
304,
278,
4307,
29892,
3512,
1549,
13,
5747,
1021,
10421,
950,
29889,
1205,
896,
6363,
372,
471,
451,
1321,
5414,
18136,
1250,
29889,
390,
1624,
29892,
372,
471,
13,
29887,
4357,
18136,
975,
29889,
1152,
940,
29892,
1951,
940,
750,
750,
393,
25616,
18551,
297,
3600,
10752,
13,
3166,
278,
1369,
322,
472,
278,
1369,
750,
1497,
29901,
376,
3629,
8948,
29892,
306,
2041,
304,
437,
596,
674,
438,
13,
29954,
397,
613,
940,
23011,
287,
393,
27032,
769,
29892,
470,
3265,
29892,
940,
7572,
372,
29892,
411,
393,
13,
1482,
4603,
310,
372,
29889,
2296,
2086,
29892,
3133,
292,
902,
1919,
2916,
287,
393,
27032,
13,
974,
3600,
29889,
13,
29933,
720,
6363,
825,
393,
2411,
2957,
29892,
825,
372,
471,
304,
6963,
29889,
7753,
2466,
372,
471,
13,
5872,
2998,
297,
6564,
29892,
3447,
304,
2869,
748,
1549,
445,
27032,
1818,
505,
13,
915,
264,
6788,
1319,
6200,
29889,
13,
1576,
3107,
354,
1270,
310,
317,
603,
265,
22829,
29892,
1584,
2466,
372,
27769,
287,
694,
716,
13,
19678,
304,
902,
29892,
3447,
372,
723,
367,
6788,
1319,
304,
505,
304,
8293,
9479,
393,
13,
29874,
22378,
723,
9307,
346,
902,
10752,
408,
940,
723,
367,
278,
12565,
373,
6029,
777,
723,
13,
303,
15563,
322,
6416,
29892,
2466,
777,
723,
14451,
29889,
13,
29903,
6150,
727,
2996,
278,
28469,
304,
3600,
2834,
515,
2439,
397,
29889,
910,
471,
297,
263,
982,
13,
303,
3881,
6200,
29901,
940,
29892,
278,
11946,
21071,
29892,
6029,
1183,
1556,
5517,
6363,
304,
367,
1584,
13,
4563,
457,
29892,
1033,
940,
451,
12566,
18136,
1311,
29973,
1205,
6936,
322,
6182,
26449,
287,
278,
2614,
295,
13,
392,
3512,
964,
429,
488,
964,
12892,
29889,
13,
4178,
5046,
29871,
29896,
29906,
1554,
8515,
9559,
29889,
940,
6068,
3600,
11825,
304,
367,
297,
13,
629,
2575,
322,
1320,
1253,
363,
2211,
3841,
29892,
1550,
25738,
379,
1888,
29892,
304,
1284,
18136,
297,
278,
13,
1356,
552,
29889,
3600,
8908,
29901,
376,
9260,
366,
451,
1073,
393,
306,
1818,
367,
1048,
590,
17852,
29915,
29879,
13,
8262,
3335,
29973,
1192,
445,
20285,
839,
963,
29889,
739,
817,
451,
2099,
896,
1258,
451,
1073,
1058,
940,
13,
11102,
29889,
390,
1624,
29892,
372,
338,
13602,
393,
3600,
982,
310,
4010,
292,
471,
1316,
263,
24818,
13,
311,
1595,
545,
515,
3600,
9670,
2924,
322,
2050,
403,
982,
29889,
739,
338,
393,
896,
1033,
13,
1333,
2274,
29892,
322,
577,
750,
304,
4808,
373,
297,
278,
6501,
29892,
411,
29403,
2778,
277,
29892,
13,
29305,
278,
3578,
27470,
287,
29889,
13,
29928,
3864,
278,
1472,
2440,
310,
393,
7934,
2834,
29892,
5199,
368,
1183,
1795,
1532,
505,
13,
29893,
8417,
287,
29901,
746,
674,
940,
3380,
278,
10655,
363,
607,
940,
2996,
29973,
1126,
3447,
29892,
1183,
13,
29893,
483,
1284,
278,
2714,
310,
393,
10655,
2898,
304,
11460,
29892,
363,
1183,
6363,
599,
2086,
13,
5872,
304,
825,
372,
723,
3275,
29889,
13,
4178,
278,
1369,
310,
3600,
970,
2834,
2996,
278,
14837,
8497,
472,
315,
1648,
29889,
2296,
29892,
4457,
263,
13,
276,
635,
21991,
457,
982,
29892,
1258,
451,
2244,
18136,
304,
437,
3099,
29892,
1183,
13586,
13182,
287,
29892,
13,
20834,
292,
29901,
2688,
505,
694,
19006,
29889,
3600,
2933,
471,
1316,
408,
304,
4556,
1449,
385,
13,
15693,
7002,
310,
13587,
373,
297,
278,
6501,
363,
902,
29892,
411,
263,
8825,
363,
2107,
13,
1028,
14987,
950,
2778,
277,
322,
14321,
29889,
1152,
278,
3838,
376,
5618,
338,
372,
304,
366,
322,
304,
592,
29908,
297,
13,
1552,
8198,
29198,
437,
451,
8677,
263,
7853,
519,
2927,
29889,
1670,
526,
1023,
4072,
310,
13,
1366,
8744,
29889,
3118,
338,
297,
278,
4060,
310,
1699,
5618,
1258,
306,
437,
304,
6963,
445,
373,
3026,
13,
1252,
9422,
526,
297,
8660,
2710,
29871,
29896,
29896,
29901,
29896,
29906,
29936,
29871,
29906,
15336,
29871,
29941,
29945,
29901,
29906,
29896,
322,
29871,
29896,
21701,
29871,
29896,
29955,
29901,
29896,
29947,
29889,
450,
916,
13,
1853,
338,
1048,
278,
1021,
408,
5934,
29901,
376,
4013,
338,
596,
26195,
29892,
451,
7903,
1213,
1222,
9422,
13,
598,
1476,
297,
29871,
29896,
21701,
29871,
29941,
29901,
29896,
29941,
322,
379,
852,
29874,
29871,
29896,
29946,
29901,
29947,
29889,
13,
13468,
1258,
4808,
373,
1532,
297,
278,
6501,
29892,
408,
591,
508,
1074,
515,
902,
3838,
304,
278,
13,
10685,
414,
29901,
1938,
6514,
940,
10603,
366,
29889,
1126,
278,
21957,
11827,
902,
10847,
471,
451,
13,
29885,
11936,
433,
1133,
29889,
739,
6296,
3600,
1407,
937,
3737,
10792,
29892,
278,
937,
1722,
1342,
310,
278,
13,
13519,
310,
902,
1006,
985,
291,
411,
18136,
29889,
940,
12862,
278,
7234,
29889,
3834,
1348,
393,
13,
1742,
2337,
14637,
304,
278,
7234,
310,
3600,
4892,
29889,
1205,
393,
723,
451,
472,
599,
6216,
13,
4150,
29889,
390,
1624,
29892,
372,
338,
278,
931,
940,
750,
731,
363,
6763,
3600,
286,
3055,
7799,
29889,
830,
635,
29892,
13,
11884,
577,
940,
1258,
451,
1735,
278,
931,
29901,
297,
3907,
3600,
10608,
1434,
769,
408,
13,
517,
746,
278,
931,
723,
2869,
2041,
29892,
940,
750,
4586,
964,
3633,
297,
6564,
13,
2276,
1006,
985,
291,
29889,
13932,
902,
1006,
985,
291,
29892,
278,
931,
723,
505,
1063,
13,
5372,
5816,
2678,
29889,
13,
4806,
1795,
1348,
310,
6721,
29901,
4001,
1183,
471,
2989,
310,
17659,
472,
278,
1369,
29892,
920,
13,
26680,
1183,
6548,
29973,
450,
1234,
338,
393,
9753,
312,
9215,
17659,
338,
3763,
278,
11509,
13,
517,
2125,
297,
278,
18551,
310,
4177,
3700,
304,
3700,
297,
278,
3186,
304,
2041,
29889,
4001,
393,
13,
4924,
338,
10362,
29892,
322,
591,
526,
577,
8093,
29892,
1749,
13284,
508,
2337,
7910,
29889,
13,
4178,
278,
1369,
29892,
769,
29892,
1183,
471,
2989,
310,
17659,
29892,
297,
393,
1183,
750,
599,
278,
11509,
13,
974,
607,
902,
10752,
471,
15390,
472,
393,
1298,
29889,
1205,
393,
2117,
3097,
1033,
13,
17263,
749,
29892,
7148,
491,
2599,
2712,
393,
892,
5189,
29892,
1316,
408,
13587,
373,
13,
262,
278,
6501,
29889,
13,
6295,
902,
2778,
277,
363,
502,
29892,
322,
902,
7333,
14321,
3512,
373,
472,
263,
270,
466,
1537,
292,
13,
3535,
29889,
11454,
29892,
591,
1795,
7252,
372,
304,
263,
26224,
410,
11476,
29889,
13,
4806,
1795,
367,
25782,
287,
304,
1348,
393,
1546,
278,
1900,
310,
317,
787,
322,
278,
13,
13318,
310,
341,
720,
414,
29892,
4129,
723,
367,
14225,
2264,
322,
3578,
29889,
1334,
2307,
4446,
13,
1552,
8515,
12720,
310,
9138,
297,
278,
18057,
472,
5046,
29871,
29896,
29906,
29892,
263,
1206,
393,
13,
12403,
13587,
373,
297,
278,
6501,
29889,
1334,
4446,
1790,
472,
315,
1648,
29889,
2567,
591,
1074,
777,
13,
1201,
26800,
4251,
29889,
1094,
25556,
29871,
29896,
29896,
29901,
29906,
29955,
10603,
502,
29901,
376,
2855,
372,
9559,
29892,
746,
940,
13,
4977,
333,
1438,
2712,
29892,
263,
6114,
297,
278,
19174,
10425,
902,
7314,
322,
1497,
304,
18136,
29901,
13,
29933,
2222,
287,
338,
278,
281,
3424,
393,
23888,
366,
29892,
322,
278,
2078,
19416,
393,
366,
480,
384,
287,
29889,
1205,
940,
13,
4977,
333,
29901,
350,
2222,
287,
3265,
526,
1906,
1058,
8293,
278,
1734,
310,
4177,
322,
3013,
372,
1213,
13,
1576,
2714,
338,
1568,
278,
1021,
297,
1790,
13382,
29892,
515,
4485,
29871,
29941,
29901,
29906,
29900,
29899,
29941,
29945,
29889,
13,
9526,
310,
1906,
1048,
18136,
29892,
8790,
940,
758,
3791,
577,
938,
2705,
393,
940,
723,
451,
13,
9847,
304,
17545,
29892,
2714,
18136,
714,
310,
3600,
3458,
29892,
322,
3512,
714,
304,
2125,
18136,
491,
13,
10118,
29889,
1987,
1192,
565,
6200,
278,
15134,
338,
17168,
1189,
1711,
7180,
1192,
278,
13,
7588,
5707,
1497,
940,
471,
23013,
714,
2906,
2719,
491,
278,
2906,
2719,
29889,
8084,
29892,
3600,
21869,
322,
13,
2674,
5056,
2996,
304,
263,
19174,
988,
940,
471,
13590,
29889,
739,
471,
9326,
304,
18136,
29889,
13,
3379,
1479,
310,
2437,
11407,
902,
297,
322,
14509,
278,
19174,
29901,
306,
864,
366,
304,
5870,
590,
13,
29924,
1228,
29892,
940,
10352,
376,
22110,
526,
590,
5637,
322,
590,
21383,
29973,
1126,
3063,
2820,
13,
265,
1906,
1058,
3290,
1048,
18136,
940,
1497,
29901,
2266,
526,
590,
21869,
322,
590,
8099,
29889,
13,
22110,
1310,
947,
278,
674,
310,
4177,
338,
590,
8099,
322,
9883,
29892,
322,
5637,
1213,
13,
29933,
720,
5528,
16719,
925,
5276,
451,
871,
437,
451,
7213,
895,
470,
3544,
902,
29892,
541,
13,
344,
331,
304,
12560,
470,
304,
1925,
902,
1623,
29889,
18585,
368,
29892,
1716,
892,
5189,
26108,
13,
1454,
29403,
2778,
277,
310,
13587,
373,
297,
278,
6501,
29889,
739,
723,
367,
871,
491,
282,
8417,
292,
13,
262,
902,
5192,
393,
1183,
1033,
1284,
278,
1492,
19854,
29889,
13,
29963,
271,
2185,
1944,
28075,
278,
1959,
8004,
297,
365,
29954,
396,
29945,
29947,
29901,
376,
797,
278,
3236,
13,
974,
3600,
758,
9733,
29892,
1183,
4520,
278,
3838,
297,
607,
902,
5791,
7213,
3368,
1906,
1058,
13,
354,
538,
278,
1734,
310,
4177,
322,
8126,
372,
29892,
408,
1183,
471,
10847,
3730,
2599,
29892,
901,
1135,
13,
1552,
9590,
322,
289,
13788,
310,
28610,
322,
10416,
1213,
2193,
338,
29892,
940,
471,
3907,
263,
13,
510,
20941,
310,
1023,
7190,
310,
2107,
2264,
29901,
393,
310,
1641,
278,
21869,
310,
4177,
448,
13,
4716,
408,
591,
4446,
29892,
338,
263,
16452,
29899,
262,
18925,
18085,
537,
448,
322,
22514,
322,
12515,
278,
13,
1742,
310,
4177,
29889,
450,
1473,
7663,
338,
7621,
1135,
278,
937,
29889,
1205,
1183,
471,
472,
13,
1552,
19224,
297,
1716,
13997,
29889,
2296,
750,
6200,
4520,
278,
10803,
310,
4177,
472,
278,
13,
812,
11173,
362,
29892,
322,
27999,
4520,
278,
10803,
1754,
28610,
29892,
322,
4340,
1183,
750,
13,
446,
415,
3600,
3838,
10847,
3730,
29892,
408,
478,
271,
2185,
1944,
1497,
29889,
2193,
471,
1584,
297,
902,
263,
13,
7979,
1008,
18085,
537,
1135,
393,
310,
278,
21869,
310,
4177,
29889,
13,
3664,
871,
373,
278,
26108,
925,
5276,
29892,
541,
599,
10106,
3600,
13,
3597,
2834,
29892,
746,
940,
4520,
278,
1035,
8342,
310,
278,
11660,
6289,
29892,
1183,
297,
3165,
1793,
13,
21312,
9488,
297,
278,
3239,
29889,
13,
6246,
7113,
278,
1095,
29892,
278,
22468,
793,
29892,
322,
577,
1784,
723,
505,
1063,
2221,
304,
13,
4149,
940,
471,
297,
9703,
310,
4892,
29889,
1670,
1122,
367,
263,
13182,
310,
393,
297,
4485,
29871,
29896,
29900,
29901,
29941,
29906,
29901,
13,
19562,
526,
373,
278,
6520,
304,
23204,
29892,
322,
376,
29967,
267,
375,
471,
22049,
14432,
310,
963,
29936,
13,
392,
896,
892,
21863,
287,
29892,
322,
1906,
1058,
5643,
892,
13421,
1213,
838,
2040,
1472,
13,
11083,
445,
1298,
3600,
22595,
750,
11527,
304,
4486,
18136,
29889,
2688,
892,
13421,
304,
13,
2749,
342,
18136,
1722,
368,
29892,
363,
278,
11660,
6289,
5545,
18136,
263,
27953,
300,
29889,
1205,
940,
29892,
1584,
13,
14037,
278,
18551,
297,
3600,
5199,
10752,
29892,
925,
18180,
29892,
1033,
505,
3595,
445,
13,
11506,
29889,
1126,
1183,
2086,
1818,
505,
3595,
372,
6421,
29889,
15175,
925,
408,
940,
3512,
14432,
29892,
13,
29893,
424,
292,
304,
6095,
5589,
3600,
337,
2310,
415,
573,
28839,
29892,
577,
2086,
723,
1183,
29889,
13,
10401,
940,
471,
297,
946,
2592,
297,
278,
16423,
29892,
1183,
1818,
505,
2998,
1584,
565,
472,
13,
5372,
5418,
29889,
1152,
727,
2444,
304,
367,
1316,
263,
2655,
408,
429,
10678,
575,
706,
13,
546,
1441,
29892,
607,
338,
3117,
925,
263,
5613,
27791,
265,
29889,
1105,
1784,
505,
750,
13,
277,
29892,
322,
372,
5304,
7148,
304,
25550,
414,
746,
1009,
18025,
526,
297,
9703,
29889,
1105,
13,
11360,
1818,
505,
17189,
2347,
3600,
946,
2592,
29892,
322,
3133,
292,
902,
723,
505,
13,
29893,
24455,
825,
1183,
6363,
278,
17852,
281,
24455,
29889,
13,
11760,
940,
471,
24383,
29892,
322,
4129,
471,
599,
2086,
6924,
29889,
2296,
29892,
408,
591,
13,
4977,
333,
29892,
750,
878,
342,
368,
322,
3165,
29890,
368,
9488,
297,
278,
3239,
746,
940,
471,
13,
5753,
13190,
491,
278,
11660,
6289,
29889,
1205,
1286,
29892,
746,
278,
16403,
4628,
2264,
2996,
975,
13,
7856,
29894,
653,
29892,
1183,
6153,
714,
310,
278,
528,
23626,
322,
964,
393,
23490,
29892,
304,
6232,
3600,
13,
2218,
3874,
346,
29892,
304,
2778,
277,
411,
18136,
29892,
1584,
2466,
310,
3236,
871,
297,
1014,
536,
3381,
304,
13,
29950,
326,
29889,
13,
3112,
338,
451,
3307,
304,
1827,
393,
940,
337,
311,
22580,
502,
491,
27116,
29889,
4587,
3236,
393,
13,
275,
1565,
29889,
1205,
591,
1603,
2244,
29901,
1128,
1258,
393,
21994,
29973,
1670,
526,
2211,
21420,
304,
13,
1552,
337,
2310,
683,
29901,
716,
274,
9813,
424,
29892,
28839,
29892,
19179,
310,
2553,
29873,
470,
337,
5521,
749,
310,
13,
1552,
12091,
1797,
29889,
2296,
7258,
297,
263,
13512,
982,
297,
599,
21420,
29892,
491,
902,
13,
711,
287,
5597,
304,
278,
674,
310,
278,
17852,
29889,
13,
6730,
372,
471,
263,
716,
274,
9813,
424,
29889,
2180,
317,
1099,
29875,
29892,
4177,
750,
22399,
7853,
411,
13,
711,
287,
5597,
408,
278,
4195,
29889,
5677,
331,
21071,
29871,
29941,
29896,
29901,
29941,
29896,
29899,
29941,
29941,
750,
363,
300,
1025,
263,
716,
274,
9813,
424,
29892,
13,
351,
475,
411,
704,
287,
5597,
408,
278,
4195,
29889,
21606,
5677,
331,
21071,
1258,
451,
1074,
393,
13,
1552,
704,
287,
5597,
471,
304,
367,
393,
310,
278,
25616,
11946,
21071,
322,
3600,
21869,
29889,
15175,
393,
13,
11102,
304,
367,
372,
29889,
2180,
278,
9208,
2166,
2496,
29892,
940,
1497,
975,
278,
521,
284,
625,
29901,
376,
4013,
338,
278,
13,
305,
284,
625,
310,
590,
10416,
29892,
278,
716,
322,
634,
17196,
274,
9813,
424,
29892,
607,
338,
304,
367,
28453,
363,
13,
6293,
322,
363,
599,
577,
393,
269,
1144,
1122,
367,
18879,
5428,
1213,
3869,
29892,
278,
17852,
29915,
29879,
5360,
310,
13,
3318,
573,
1781,
2264,
1258,
451,
6398,
304,
18879,
573,
269,
1144,
1728,
263,
337,
5521,
749,
310,
278,
13,
29885,
11251,
1797,
29889,
1105,
3600,
10416,
471,
304,
367,
28453,
376,
578,
393,
269,
1144,
1795,
367,
13,
29888,
990,
5428,
1213,
6246,
408,
591,
1497,
278,
4195,
310,
393,
716,
274,
9813,
424,
471,
704,
287,
5597,
29892,
13,
4102,
3600,
704,
287,
5597,
1584,
304,
4892,
29889,
1205,
884,
902,
704,
287,
5597,
297,
17762,
825,
13,
1552,
17852,
281,
24455,
29889,
2296,
750,
1063,
10658,
304,
445,
664,
408,
278,
1570,
382,
345,
29892,
408,
13,
1552,
697,
363,
300,
1025,
297,
5739,
6656,
29871,
29941,
29901,
29896,
29945,
408,
19383,
297,
278,
21117,
322,
278,
15354,
13,
957,
4457,
322,
4892,
29889,
13,
11863,
368,
29892,
372,
408,
278,
2107,
28839,
29889,
2296,
471,
1584,
4824,
1711,
2198,
13,
271,
372,
29889,
512,
19899,
21071,
29871,
29906,
29929,
29901,
29896,
29941,
4177,
750,
15313,
1312,
6160,
4013,
2305,
4207,
943,
592,
411,
1009,
13,
492,
567,
29892,
541,
1009,
26490,
526,
2215,
515,
1205,
1286,
278,
940,
5708,
310,
13825,
322,
3600,
13,
29924,
1228,
892,
451,
2215,
515,
278,
674,
310,
278,
17852,
29889,
390,
1624,
29892,
896,
29892,
13797,
825,
13,
3868,
281,
24455,
29892,
281,
24455,
278,
1021,
489,
599,
9753,
312,
1598,
408,
591,
1497,
11624,
297,
14670,
537,
13,
974,
697,
29915,
29879,
674,
411,
278,
674,
310,
278,
17852,
29889,
1126,
746,
278,
10752,
1073,
825,
940,
13,
1066,
277,
3598,
674,
29879,
29892,
769,
372,
1818,
322,
674,
13686,
3598,
674,
29889,
372,
29889,
1105,
1183,
769,
472,
13,
326,
27352,
3438,
29892,
1258,
1584,
674,
393,
940,
762,
29892,
762,
769,
29892,
762,
577,
4029,
1091,
368,
29889,
13,
3868,
373,
18055,
964,
278,
3186,
750,
12520,
393,
29901,
1522,
8948,
306,
2041,
304,
437,
596,
13,
14043,
438,
4177,
29889,
2296,
297,
443,
2285,
310,
17778,
756,
1497,
902,
607,
1183,
451,
871,
13,
484,
369,
3240,
1461,
287,
29892,
541,
12838,
873,
7572,
29892,
1584,
304,
278,
11189,
29889,
450,
14656,
13,
974,
17762,
3600,
4892,
338,
22830,
8724,
1749,
15171,
2673,
29889,
1152,
304,
437,
393,
13,
11102,
304,
748,
1556,
4153,
21138,
304,
902,
5360,
363,
18136,
29889,
1128,
2107,
471,
372,
29973,
13,
5015,
919,
368,
8724,
278,
15171,
2673,
310,
5019,
541,
4177,
18136,
1311,
29889,
1126,
445,
338,
13,
3242,
18719,
1565,
29892,
338,
694,
15187,
364,
9188,
272,
293,
29889,
1152,
591,
4446,
2307,
393,
349,
2482,
16841,
29892,
13,
262,
16184,
278,
1954,
8628,
5987,
1281,
1441,
29892,
750,
1497,
393,
902,
8753,
3335,
472,
278,
13,
2962,
471,
577,
2107,
393,
376,
9290,
7621,
1090,
4177,
508,
367,
2714,
310,
29892,
322,
694,
13,
650,
541,
4177,
508,
15171,
355,
372,
1213,
6246,
29892,
297,
6944,
29892,
8753,
3335,
322,
5360,
310,
4177,
13,
598,
1006,
3167,
519,
4958,
29889,
7857,
29892,
902,
5360,
29892,
263,
5882,
5645,
310,
902,
13,
29879,
3043,
292,
29892,
471,
2289,
8724,
278,
11509,
310,
738,
2869,
5923,
23940,
13,
517,
15171,
355,
29889,
1334,
1497,
376,
627,
1474,
5923,
23940,
29908,
1951,
310,
3236,
4177,
13,
915,
292,
394,
29885,
523,
29891,
29892,
1033,
505,
2825,
263,
23940,
15390,
310,
15171,
2548,
902,
13,
29903,
265,
29889,
1205,
408,
263,
4383,
310,
2114,
29892,
940,
756,
451,
2309,
393,
29889,
1105,
871,
4177,
1033,
13,
510,
1457,
29882,
355,
902,
5360,
29892,
322,
14161,
2705,
29892,
902,
23164,
29889,
910,
471,
2309,
297,
13,
13094,
310,
674,
29889,
739,
471,
393,
704,
287,
5597,
310,
674,
607,
4846,
599,
278,
995,
304,
13,
29950,
275,
28839,
29889,
13932,
393,
372,
723,
505,
1063,
263,
1020,
3192,
29891,
29892,
451,
263,
28839,
29889,
13,
3112,
723,
505,
1063,
408,
4069,
408,
393,
310,
607,
4177,
15313,
1312,
297,
19899,
21071,
13,
29906,
29929,
29901,
29896,
29941,
29889,
1205,
1183,
491,
902,
704,
287,
5597,
29892,
472,
3438,
8724,
1749,
15171,
2673,
29892,
8772,
13,
262,
393,
674,
607,
4846,
599,
278,
995,
304,
3600,
28839,
29889,
2296,
1258,
372,
408,
278,
13,
1482,
382,
345,
29892,
408,
278,
697,
363,
300,
1025,
408,
19383,
297,
278,
15354,
975,
4457,
322,
4892,
29889,
13,
1576,
4654,
9565,
338,
393,
310,
278,
337,
5521,
749,
310,
278,
12091,
1797,
29892,
470,
13,
1552,
19179,
310,
278,
2553,
29873,
310,
4457,
29889,
1334,
4446,
393,
278,
4168,
3335,
310,
4177,
2289,
13,
1004,
550,
3600,
5360,
310,
599,
393,
338,
1203,
3598,
1492,
29889,
317,
16697,
750,
4586,
515,
278,
13,
19529,
267,
29892,
408,
372,
892,
448,
591,
17386,
278,
3838,
310,
317,
603,
265,
3856,
8317,
28690,
448,
825,
896,
13,
21312,
694,
1492,
304,
2125,
29889,
940,
29892,
322,
1183,
297,
9833,
411,
18136,
29892,
1716,
8152,
292,
3078,
29892,
13,
29891,
300,
4846,
701,
29892,
1925,
1250,
901,
1135,
599,
269,
16697,
310,
599,
24646,
4208,
750,
4586,
13,
21694,
29889,
910,
471,
263,
1583,
29899,
6310,
292,
19182,
310,
297,
12325,
5834,
29871,
29906,
29901,
29955,
29889,
910,
471,
278,
13,
29879,
562,
25193,
393,
1754,
1749,
10776,
322,
2113,
599,
18879,
20193,
322,
17659,
29892,
2748,
363,
13,
497,
29889,
13,
4806,
505,
1063,
1985,
8830,
411,
14415,
545,
7432,
304,
1510,
278,
2114,
13,
974,
8680,
10040,
29915,
29879,
16800,
1302,
16453,
297,
278,
12091,
337,
2310,
683,
29892,
491,
982,
310,
13,
711,
287,
5597,
29892,
607,
471,
760,
310,
278,
274,
9813,
424,
4195,
29892,
310,
278,
18853,
13,
1639,
1611,
27963,
310,
278,
28839,
29892,
470,
337,
5521,
19985,
278,
12091,
1797,
29889,
13,
4013,
23994,
7970,
411,
278,
6860,
886,
310,
278,
2320,
1531,
1974,
29889,
1670,
526,
29871,
29896,
29955,
13,
3225,
29879,
29892,
515,
1432,
20635,
515,
22533,
16714,
304,
2259,
3739,
1944,
20978,
573,
29892,
2298,
13,
29963,
271,
2185,
1944,
393,
6860,
445,
8760,
29889,
13,
1762,
28475,
29892,
591,
1106,
472,
396,
29953,
29896,
29901,
376,
1576,
350,
2222,
287,
9167,
29892,
13,
11965,
342,
1312,
515,
634,
824,
537,
3412,
411,
278,
5528,
2753,
362,
310,
278,
25616,
10803,
408,
13,
1552,
21869,
310,
4177,
29892,
491,
2874,
310,
25616,
9133,
5084,
471,
278,
2646,
8802,
21869,
13,
974,
278,
25616,
390,
2742,
25154,
29892,
297,
263,
13512,
982,
901,
1135,
4045,
29892,
322,
278,
13,
4738,
681,
25836,
322,
3165,
569,
1361,
655,
333,
310,
278,
6171,
29889,
512,
10628,
4357,
2819,
29892,
13,
262,
20794,
18136,
11483,
29892,
297,
302,
473,
14424,
18136,
29892,
297,
2198,
292,
18136,
304,
278,
17852,
13,
262,
278,
17567,
29892,
297,
23164,
411,
902,
5791,
408,
940,
6423,
373,
278,
11189,
29892,
1183,
13,
1111,
3372,
630,
297,
278,
664,
310,
278,
9583,
1611,
29892,
297,
385,
19148,
13512,
982,
29892,
491,
13,
711,
287,
5597,
29892,
10847,
29892,
4966,
322,
25535,
5360,
29892,
304,
17749,
2428,
25047,
2834,
304,
13,
29879,
283,
3137,
29889,
1094,
263,
1121,
29892,
1183,
338,
1749,
21869,
297,
278,
1797,
310,
17659,
1213,
13,
7058,
338,
6200,
263,
29154,
296,
1426,
29889,
739,
16410,
408,
591,
1258,
29892,
411,
902,
9833,
13,
2541,
18136,
297,
278,
634,
17196,
1602,
929,
363,
278,
9266,
2753,
362,
29889,
739,
7726,
29879,
310,
902,
13,
21264,
362,
411,
18136,
10106,
599,
3600,
2834,
29892,
322,
7148,
297,
278,
2107,
13,
29879,
562,
25193,
3528,
29889,
739,
4083,
1183,
1258,
445,
297,
263,
13512,
982,
448,
607,
2794,
393,
13,
11884,
2466,
624,
29889,
2259,
471,
2198,
472,
278,
11189,
29892,
540,
471,
451,
297,
278,
2602,
13,
262,
607,
1183,
471,
29892,
278,
1570,
382,
345,
29892,
3600,
25836,
29892,
278,
697,
10658,
376,
1609,
2874,
13,
974,
4910,
457,
9133,
5084,
29908,
304,
1044,
4550,
29889,
739,
851,
15322,
7148,
393,
902,
6297,
471,
13,
650,
310,
704,
287,
5597,
29889,
365,
29954,
396,
29945,
29953,
750,
8951,
1497,
902,
6297,
471,
24799,
491,
13,
711,
287,
5597,
29892,
297,
12814,
304,
278,
766,
711,
287,
5597,
310,
278,
937,
382,
345,
29892,
304,
563,
29877,
825,
13,
1552,
937,
382,
345,
750,
3216,
491,
766,
711,
287,
5597,
29889,
2259,
3739,
1944,
297,
396,
29896,
29929,
13384,
278,
1021,
8760,
12567,
2705,
1699,
294,
263,
19383,
297,
278,
13,
29879,
562,
25193,
310,
2819,
448,
278,
716,
11783,
448,
372,
7415,
297,
263,
3058,
4060,
278,
13,
11808,
1129,
895,
304,
278,
766,
711,
287,
5597,
322,
766,
6596,
2575,
7232,
397,
1000,
297,
278,
4457,
310,
1749,
13,
4102,
11825,
29889,
6549,
6860,
278,
383,
19467,
310,
278,
6291,
322,
7148,
624,
29889,
13,
29902,
1267,
3660,
375,
29892,
23153,
491,
278,
20063,
584,
525,
1576,
889,
327,
310,
382,
345,
29915,
29879,
13,
2218,
711,
287,
5597,
471,
443,
29873,
1000,
491,
6182,
29915,
29879,
704,
287,
5597,
29889,
869,
869,
869,
18793,
13,
8439,
338,
1554,
2289,
22567,
393,
451,
14332,
756,
10548,
13,
4150,
29889,
2180,
278,
1369,
310,
393,
23040,
29871,
29947,
310,
278,
8831,
750,
13,
4977,
333,
372,
1258,
451,
24042,
304,
3604,
280,
2553,
1078,
297,
27161,
3002,
29889,
15175,
591,
4658,
372,
338,
13,
8551,
393,
372,
1258,
3604,
280,
278,
9087,
27836,
29889,
10506,
263,
2655,
338,
1407,
1950,
29889,
13,
4806,
4446,
2038,
393,
297,
365,
29954,
396,
29945,
29945,
278,
8831,
18694,
393,
6060,
278,
5199,
13,
8231,
414,
310,
5739,
29871,
29941,
29901,
29896,
29945,
322,
1317,
29871,
29955,
29901,
29896,
29946,
1258,
451,
2274,
599,
393,
278,
6291,
1286,
29892,
13,
2543,
2618,
491,
278,
17733,
20799,
29892,
756,
22020,
2041,
304,
1074,
29889,
1334,
11682,
372,
338,
5517,
13,
5747,
5677,
331,
21071,
1258,
451,
8072,
2274,
670,
3107,
354,
1270,
310,
278,
716,
274,
9813,
424,
29889,
1334,
13,
29879,
1450,
393,
624,
29889,
306,
1267,
3660,
375,
2411,
2957,
901,
1135,
540,
338,
5517,
304,
505,
3595,
29892,
297,
670,
13,
9303,
1048,
278,
889,
327,
29892,
274,
1573,
491,
278,
8831,
29889,
1105,
2086,
278,
8831,
29892,
385,
13,
2611,
15461,
297,
278,
6567,
310,
4910,
457,
9133,
5084,
29892,
8959,
1033,
29892,
565,
4177,
577,
13,
29893,
24455,
29892,
2436,
901,
1135,
372,
4446,
29889,
13,
10454,
1434,
278,
8831,
727,
892,
1023,
11909,
1048,
902,
1302,
16453,
373,
13,
7856,
29894,
653,
29901,
29871,
29896,
29897,
1576,
5332,
6368,
310,
6136,
337,
1547,
2068,
29892,
297,
607,
1183,
723,
29892,
408,
13,
277,
892,
29892,
13586,
1925,
11483,
902,
1361,
518,
4925,
29962,
322,
5839,
701,
825,
1183,
750,
694,
13,
13653,
297,
20811,
518,
276,
1547,
2068,
1822,
29871,
29906,
29897,
1576,
2602,
310,
9160,
979,
24813,
322,
13,
21264,
1078,
29892,
5034,
304,
607,
1183,
7258,
491,
2778,
11407,
29892,
393,
338,
29892,
13,
21570,
17068,
304,
10127,
292,
263,
5995,
304,
599,
18879,
20193,
322,
17659,
29889,
10133,
297,
13,
29931,
29954,
396,
29953,
29896,
322,
29871,
29945,
29953,
278,
8831,
1497,
29892,
2211,
3064,
29892,
393,
1183,
7258,
491,
704,
287,
5597,
29889,
13,
6246,
408,
591,
505,
10824,
29892,
704,
287,
5597,
338,
19383,
297,
278,
274,
9813,
424,
4195,
29892,
13,
845,
4362,
297,
278,
13290,
27963,
607,
4846,
599,
967,
995,
304,
278,
2107,
13,
29879,
562,
25193,
29892,
704,
287,
5597,
338,
337,
5521,
19985,
278,
12091,
1797,
310,
5146,
292,
278,
2553,
29873,
13,
262,
2764,
1127,
491,
278,
766,
711,
287,
5597,
310,
1749,
937,
11825,
29892,
322,
599,
916,
25618,
29889,
4587,
13,
15775,
393,
338,
451,
13586,
5839,
292,
701,
1554,
607,
1183,
750,
694,
6232,
297,
13,
5498,
3277,
313,
517,
1827,
393,
338,
2289,
263,
24760,
273,
278,
3002,
310,
337,
2310,
683,
29901,
13586,
13,
932,
6649,
1218,
467,
1939,
29892,
1183,
7258,
1044,
3598,
297,
278,
5837,
18694,
29889,
13,
5328,
1044,
3598,
29973,
3139,
10752,
881,
13686,
3598,
674,
825,
278,
17852,
674,
29879,
29889,
13,
23036,
727,
338,
297,
502,
871,
697,
3889,
2655,
29892,
1749,
3889,
674,
29879,
29892,
304,
7595,
393,
13,
14043,
411,
278,
674,
310,
278,
17852,
338,
599,
278,
639,
20309,
6858,
29889,
2296,
297,
13,
5747,
21005,
7234,
6363,
825,
278,
13515,
721,
281,
24455,
29892,
393,
902,
5791,
762,
29892,
762,
769,
29892,
13,
16217,
577,
4029,
1091,
368,
29889,
1105,
1183,
471,
2000,
2501,
451,
304,
925,
1209,
3598,
10695,
583,
346,
29892,
13,
4187,
304,
1044,
3598,
674,
825,
278,
17852,
281,
24455,
29991,
2296,
1258,
393,
29892,
13444,
1711,
29892,
322,
13,
18361,
372,
2675,
6795,
304,
902,
5360,
29892,
607,
471,
577,
2107,
393,
29892,
5034,
304,
13,
29908,
9290,
7621,
1090,
4177,
508,
367,
2714,
310,
29892,
322,
694,
697,
13,
4187,
4177,
508,
15171,
355,
372,
1213,
313,
12707,
310,
902,
8753,
3335,
448,
4187,
13,
5391,
3335,
322,
5360,
526,
297,
6944,
1006,
3167,
519,
4958,
467,
1105,
902,
23164,
13,
275,
22830,
8724,
1749,
15171,
2673,
29892,
8724,
393,
310,
738,
2869,
5923,
13,
1037,
1535,
313,
3592,
4177,
1033,
1653,
263,
23940,
304,
15171,
355,
372,
29892,
541,
2869,
13,
3868,
756,
451,
2309,
577,
467,
11454,
29892,
2259,
3739,
1944,
29892,
297,
1919,
1156,
13,
20834,
292,
297,
393,
540,
9146,
304,
6483,
264,
278,
278,
3002,
310,
13,
29963,
271,
2185,
1944,
373,
902,
10847,
29892,
5456,
297,
396,
29896,
29947,
29901,
376,
5328,
2107,
29892,
920,
13444,
293,
29892,
769,
29892,
338,
278,
13,
29915,
711,
287,
5597,
310,
10847,
29915,
518,
29934,
290,
29871,
29896,
29901,
29945,
29962,
4318,
491,
6182,
297,
278,
3700,
310,
4177,
29915,
29879,
13,
29915,
348,
4478,
519,
6577,
29887,
1860,
29915,
29991,
1128,
6446,
1183,
525,
370,
392,
787,
8735,
304,
4177,
29915,
13,
14037,
23986,
29892,
525,
974,
571,
292,
278,
2989,
1223,
296,
310,
278,
18715,
322,
278,
674,
29915,
13,
517,
1075,
5069,
525,
1994,
526,
297,
10526,
9246,
4286,
869,
869,
869,
2180,
278,
3661,
310,
278,
11189,
6182,
13,
845,
5114,
1549,
10847,
297,
278,
19253,
292,
29236,
310,
445,
1583,
29899,
6310,
292,
518,
6854,
29889,
13,
4819,
309,
29871,
29906,
29901,
29945,
29899,
29947,
1822,
910,
338,
6060,
278,
6483,
342,
525,
1717,
19263,
29915,
297,
5199,
13,
18434,
29889,
17044,
10847,
278,
21869,
29358,
297,
278,
4892,
310,
902,
5791,
29892,
297,
670,
13,
276,
311,
331,
292,
4892,
29889,
869,
869,
869,
29908,
2567,
1951,
5034,
304,
624,
29889,
3739,
29892,
10847,
6858,
13,
6596,
2575,
297,
4177,
29915,
29879,
1734,
29892,
16420,
297,
3600,
27584,
29892,
322,
2038,
599,
29892,
278,
13,
29915,
711,
287,
5597,
310,
10847,
29915,
518,
6854,
29889,
6033,
29871,
29896,
29901,
29945,
29962,
393,
338,
29892,
278,
2989,
22239,
310,
5199,
13,
14043,
411,
278,
674,
310,
278,
17852,
29892,
577,
1183,
491,
902,
10847,
7258,
297,
278,
13,
711,
287,
5597,
393,
338,
278,
274,
9813,
424,
4195,
29892,
297,
278,
13290,
27963,
310,
13,
1552,
28839,
29892,
297,
278,
337,
5521,
19985,
310,
278,
12091,
1797,
470,
5146,
292,
278,
2553,
29873,
13,
974,
599,
4457,
29892,
607,
338,
2289,
278,
1021,
408,
278,
8666,
310,
337,
2310,
683,
518,
6854,
29889,
29871,
29896,
2994,
13,
29953,
29901,
29906,
29900,
29936,
29871,
29955,
29901,
29906,
29941,
1822,
13,
2776,
3236,
29892,
445,
338,
2215,
8724,
738,
15187,
376,
4925,
337,
1547,
2068,
1642,
13,
4806,
508,
1074,
393,
8760,
491,
14415,
545,
29892,
408,
591,
505,
2309,
29892,
491,
278,
3838,
310,
13,
29963,
271,
2185,
1944,
29892,
322,
491,
278,
12145,
506,
284,
869,
13,
10454,
1048,
278,
704,
6929,
393,
1951,
1183,
750,
304,
367,
337,
311,
22580,
29892,
1183,
1033,
451,
13,
1111,
3372,
403,
297,
278,
337,
2310,
683,
29892,
607,
723,
3160,
902,
1914,
337,
2310,
683,
29892,
591,
13,
17532,
1023,
1634,
3687,
29901,
13,
29896,
29897,
1552,
3561,
1531,
1974,
756,
16187,
28424,
29892,
577,
4049,
408,
304,
1040,
12356,
385,
13,
7192,
284,
492,
569,
18819,
29892,
393,
1183,
1258,
577,
1302,
3372,
403,
29889,
1334,
4446,
2038,
920,
18378,
13,
392,
2821,
445,
18819,
338,
29892,
591,
4446,
372,
2609,
367,
4586,
408,
1554,
13586,
13,
417,
852,
470,
25160,
29892,
7148,
1951,
365,
29954,
444,
29945,
29953,
669,
29871,
29953,
29896,
750,
1497,
2211,
3064,
393,
1183,
13,
12366,
491,
704,
287,
5597,
29892,
278,
274,
9813,
424,
4195,
29892,
322,
393,
607,
4846,
967,
995,
13,
11884,
304,
3600,
28839,
29889,
349,
2482,
17172,
29892,
297,
278,
16772,
26384,
368,
16184,
278,
13,
465,
28069,
29892,
750,
1584,
7695,
577,
2215,
408,
304,
7726,
310,
902,
6297,
373,
3037,
29894,
653,
408,
263,
13,
1287,
376,
262,
3619,
29908,
411,
18136,
29889,
7753,
565,
591,
1033,
451,
5649,
278,
920,
29892,
591,
881,
13,
303,
453,
4658,
385,
3041,
284,
492,
569,
18819,
29889,
450,
5934,
338,
1407,
1565,
29901,
263,
10405,
13,
12765,
3953,
583,
437,
451,
788,
701,
304,
697,
7404,
29892,
746,
278,
1223,
18541,
310,
278,
8760,
338,
13,
8159,
29889,
13,
29906,
29897,
6716,
4655,
9565,
310,
278,
337,
2310,
683,
338,
393,
372,
338,
263,
716,
274,
9813,
424,
29889,
7803,
13,
21032,
373,
393,
29901,
13,
29874,
29897,
3868,
1058,
3732,
263,
274,
9813,
424,
947,
451,
2244,
29892,
817,
451,
2244,
310,
263,
7972,
13,
29883,
9813,
424,
272,
29901,
4683,
366,
24717,
304,
6095,
1777,
445,
4195,
29892,
577,
393,
565,
366,
437,
13,
1366,
29892,
306,
674,
437,
393,
29973,
1939,
29892,
278,
697,
1058,
3732,
278,
274,
9813,
424,
756,
278,
577,
369,
7577,
13,
1266,
304,
731,
6514,
4958,
322,
5855,
940,
28688,
29892,
322,
304,
6755,
1058,
1310,
13,
354,
28688,
408,
263,
274,
9813,
424,
18096,
29892,
7148,
746,
278,
3978,
1061,
310,
278,
13,
29883,
9813,
424,
338,
4177,
18136,
1311,
29889,
830,
635,
29892,
940,
1033,
505,
731,
408,
263,
4195,
363,
278,
13,
15970,
280,
310,
337,
2310,
683,
385,
13019,
28839,
491,
738,
15311,
5199,
29892,
322,
505,
13,
11884,
3216,
18136,
1311,
491,
6564,
11640,
304,
3544,
372,
29889,
13,
29890,
29897,
8439,
526,
1023,
11174,
2629,
278,
716,
274,
9813,
424,
29892,
577,
393,
565,
591,
2244,
13,
14606,
4177,
4076,
1781,
2712,
1090,
372,
29892,
727,
526,
1023,
6089,
29892,
373,
278,
1023,
13,
5563,
29879,
29889,
3824,
29892,
373,
278,
1556,
6996,
3233,
29892,
4129,
940,
4076,
338,
443,
1050,
1573,
29892,
13,
348,
1050,
8270,
29892,
363,
694,
23940,
491,
967,
1914,
3081,
508,
10127,
263,
5995,
373,
4177,
29889,
13,
2855,
940,
2609,
367,
6153,
472,
599,
29889,
1205,
769,
29892,
373,
278,
16723,
3233,
29892,
393,
338,
29892,
13,
29887,
5428,
278,
2114,
393,
278,
17852,
756,
28472,
2825,
322,
7802,
964,
263,
13,
29883,
9813,
424,
29892,
769,
565,
278,
5199,
6095,
5589,
29879,
278,
4195,
731,
29892,
278,
17852,
8152,
267,
372,
13,
517,
18136,
1311,
304,
2367,
825,
940,
756,
22399,
29889,
830,
635,
29892,
1584,
278,
4892,
310,
13825,
13,
11102,
373,
445,
16723,
3233,
29889,
739,
1258,
451,
4337,
278,
17852,
29901,
940,
1033,
451,
367,
13,
29885,
8238,
29892,
1258,
451,
817,
304,
367,
6153,
29889,
739,
471,
1363,
278,
17852,
2337,
18012,
502,
13,
5747,
13825,
2996,
29892,
451,
393,
13825,
2996,
322,
769,
278,
17852,
13700,
3600,
27343,
29889,
13,
1576,
2030,
4086,
373,
445,
4967,
4049,
12707,
1568,
310,
2778,
11407,
13,
276,
2310,
683,
373,
263,
8405,
310,
15426,
29889,
1205,
591,
1818,
2360,
9566,
393,
694,
23940,
13,
271,
599,
508,
3926,
10127,
738,
2924,
310,
5995,
373,
4177,
29892,
3692,
297,
15426,
470,
13,
265,
263,
3109,
261,
3233,
29892,
491,
967,
1914,
3081,
29889,
739,
508,
10127,
738,
2656,
310,
5995,
13,
6194,
565,
4177,
408,
372,
892,
4083,
29901,
376,
3644,
366,
437,
445,
29892,
306,
674,
437,
393,
1213,
1105,
624,
29889,
13,
26197,
457,
5456,
1532,
297,
5934,
304,
4177,
313,
29871,
29929,
29889,
29871,
29945,
1125,
376,
3492,
316,
647,
304,
13,
11884,
4953,
263,
2553,
7345,
491,
596,
27584,
304,
1906,
304,
6029,
366,
18879,
573,
1009,
13,
16529,
1372,
1213,
13,
6295,
727,
338,
694,
817,
304,
1348,
310,
16667,
3256,
29874,
297,
902,
1302,
16453,
29892,
408,
13,
361,
1183,
750,
304,
2326,
29876,
373,
263,
7601,
29892,
6996,
3233,
29889,
1939,
29892,
408,
591,
4446,
29892,
1584,
278,
664,
13,
974,
13825,
29892,
10362,
2466,
372,
471,
29892,
471,
373,
278,
16723,
3233,
29889,
739,
471,
29892,
304,
13,
4089,
798,
385,
4603,
515,
624,
29889,
5569,
29892,
263,
313,
1254,
306,
29889,
29871,
29896,
29929,
29889,
29871,
29945,
29889,
274,
29897,
13,
29908,
29963,
499,
298,
542,
831,
344,
3107,
357,
298,
542,
29892,
7048,
1661,
3107,
357,
298,
542,
325,
499,
298,
542,
29889,
2193,
338,
29901,
4177,
297,
13,
29950,
275,
5360,
310,
1781,
1797,
29892,
310,
599,
393,
338,
1492,
29892,
12355,
267,
304,
505,
697,
2655,
297,
13,
6689,
304,
9080,
408,
263,
2769,
470,
3611,
363,
6820,
278,
1473,
2655,
29892,
1584,
13,
3592,
393,
3611,
947,
451,
472,
599,
4337,
18136,
29889,
11454,
29892,
591,
1818,
451,
9566,
393,
13,
3868,
2609,
367,
6153,
29892,
322,
4312,
451,
304,
367,
6153,
304,
5360,
502,
29889,
13,
29902,
750,
263,
1407,
29156,
5362,
4595,
22212,
1058,
27320,
10579,
297,
445,
982,
29889,
13,
9760,
1629,
278,
2462,
1434,
1570,
8905,
29915,
29879,
8373,
540,
723,
2649,
592,
29901,
376,
10454,
9008,
592,
13,
15135,
22396,
29889,
960,
366,
508,
1827,
28569,
1570,
8905,
1434,
306,
437,
29892,
366,
5401,
263,
11232,
279,
1213,
13,
4013,
310,
3236,
471,
263,
6230,
29889,
940,
21050,
263,
4195,
607,
540,
1258,
451,
472,
13,
497,
817,
29892,
607,
1258,
451,
472,
599,
2326,
29876,
278,
11232,
279,
29889,
1205,
297,
670,
1176,
359,
537,
540,
13,
11102,
1811,
304,
1284,
263,
2691,
982,
304,
2367,
29889,
624,
29889,
306,
1267,
3660,
375,
10603,
502,
313,
29946,
29889,
29871,
29896,
29946,
29889,
29871,
29896,
1125,
13,
29908,
797,
278,
6763,
4177,
8429,
11783,
451,
1363,
940,
8389,
297,
817,
310,
767,
29892,
541,
13,
5747,
940,
1795,
505,
4856,
304,
7150,
3600,
23633,
1213,
13,
10401,
591,
7146,
25274,
445,
18520,
29892,
746,
591,
16289,
393,
1584,
278,
13,
1050,
1169,
310,
3600,
5791,
1258,
451,
4337,
278,
17852,
29892,
1058,
1258,
451,
817,
304,
367,
6153,
29892,
13,
15970,
1033,
451,
367,
6153,
29892,
541,
1058,
1754,
263,
6230,
480,
1573,
304,
3600,
1914,
6437,
448,
591,
13,
284,
2040,
4446,
393,
393,
6437,
875,
29874,
2356,
1023,
2712,
29901,
3600,
13521,
304,
8072,
13,
29879,
27685,
29891,
4129,
393,
471,
1492,
29892,
474,
29889,
29872,
29889,
1919,
304,
337,
5521,
749,
278,
23431,
310,
278,
13,
3318,
573,
1797,
29892,
322,
29892,
1473,
368,
304,
3867,
263,
2794,
310,
6820,
304,
502,
29892,
310,
13,
28990,
502,
1722,
304,
7150,
448,
769,
591,
1348,
1449,
310,
590,
4595,
22212,
373,
1570,
13,
12883,
29915,
29879,
8373,
29889,
13,
3047,
262,
29892,
769,
29892,
1316,
263,
6890,
29892,
411,
1316,
385,
26309,
373,
278,
760,
310,
13,
29949,
332,
17852,
29892,
565,
940,
29892,
278,
22747,
1004,
5835,
1058,
3732,
278,
274,
9813,
424,
29892,
10753,
304,
731,
13,
1332,
5564,
4195,
372,
5644,
2129,
18136,
304,
731,
29892,
769,
565,
738,
5199,
29892,
1584,
565,
372,
13,
29893,
406,
263,
15187,
29892,
385,
15311,
5199,
29892,
565,
393,
5199,
6095,
5589,
29879,
278,
274,
9813,
424,
13,
16122,
29892,
769,
278,
5199,
338,
13138,
278,
17852,
411,
263,
2769,
363,
6820,
29892,
13,
4716,
278,
17852,
1258,
451,
817,
29892,
541,
3447,
281,
24455,
363,
278,
1023,
9590,
925,
13,
27828,
287,
29889,
1105,
565,
8680,
10040,
26205,
297,
278,
4195,
731,
491,
278,
17852,
29892,
727,
338,
13,
1217,
1108,
472,
599,
29901,
1183,
338,
11781,
278,
4195,
607,
3600,
19163,
573,
13,
4738,
359,
537,
23289,
304,
731,
29892,
408,
263,
2794,
310,
6820,
363,
263,
2107,
1570,
8905,
29915,
29879,
8373,
29889,
13,
26526,
10230,
2485,
567,
29889,
18064,
1565,
29889,
1126,
1749,
947,
2485,
29886,
29889,
1205,
304,
2485,
29886,
13,
1004,
550,
304,
367,
22669,
8943,
29892,
22669,
451,
29889,
1105,
727,
338,
297,
1749,
10230,
263,
13,
2364,
310,
8943,
297,
393,
825,
278,
17852,
297,
22977,
5717,
363,
338,
451,
925,
263,
13,
6710,
1246,
29892,
541,
278,
16403,
23164,
310,
3600,
5791,
29892,
322,
278,
297,
510,
1457,
26791,
1821,
13,
29879,
3043,
292,
310,
278,
21869,
310,
393,
5791,
29892,
577,
393,
1584,
29892,
408,
624,
29889,
3739,
4083,
297,
6033,
13,
29947,
29901,
29896,
29955,
29901,
376,
4806,
526,
540,
12935,
4944,
591,
8812,
411,
18136,
29889,
869,
869,
869,
29908,
1205,
727,
338,
1603,
13,
29874,
2107,
8943,
297,
393,
297,
1716,
4251,
278,
17852,
20586,
694,
14169,
29889,
1724,
13,
275,
2309,
472,
3600,
2009,
947,
451,
472,
599,
4337,
18136,
29901,
869,
450,
2009,
1754,
491,
278,
17852,
338,
1603,
8830,
263,
2794,
310,
6820,
13,
4716,
940,
12355,
267,
304,
505,
363,
278,
1023,
9590,
2183,
2038,
29892,
393,
940,
12355,
267,
599,
13,
3318,
573,
1781,
2264,
313,
4150,
29892,
337,
5521,
749,
511,
322,
393,
372,
338,
304,
14169,
502,
3600,
13,
11991,
29889,
13,
10454,
393,
599,
2646,
778,
505,
1063,
20591,
29892,
2748,
363,
599,
313,
6854,
29889,
18472,
3973,
29879,
13,
29929,
29901,
29906,
29929,
511,
338,
727,
4340,
6297,
363,
8680,
10040,
29973,
450,
15187,
2114,
393,
1183,
7258,
297,
13,
799,
1076,
599,
2646,
778,
1192,
363,
3037,
29894,
653,
1258,
451,
2326,
29876,
925,
777,
2646,
778,
29892,
541,
599,
13,
3874,
778,
1192,
723,
599,
491,
3528,
1370,
21867,
1749,
5432,
902,
278,
3436,
7163,
2126,
310,
599,
13,
3874,
778,
29889,
13,
6246,
727,
338,
1568,
901,
29889,
1334,
4446,
2038,
393,
6630,
267,
901,
1135,
2748,
13,
29065,
7943,
304,
278,
2778,
1169,
310,
24763,
297,
6721,
4177,
304,
16690,
18879,
20193,
29889,
7440,
13,
1366,
2099,
393,
24763,
472,
278,
18378,
3256,
4433,
278,
17852,
304,
2367,
13,
29888,
990,
20193,
29973,
10949,
278,
4892,
310,
2819,
29892,
24763,
723,
451,
505,
3447,
750,
278,
13,
915,
271,
928,
18551,
29892,
297,
607,
940,
1033,
1074,
825,
6630,
267,
471,
6721,
322,
10049,
29889,
13,
29979,
300,
297,
777,
982,
591,
1122,
7755,
4177,
1258,
2125,
24763,
964,
3633,
29889,
13,
4013,
1033,
505,
1063,
297,
1023,
5837,
29889,
3824,
29892,
450,
17852,
1584,
1728,
13,
29887,
4357,
24763,
278,
16646,
928,
18551,
1033,
505,
1754,
2998,
304,
24763,
393,
13,
29924,
15806,
471,
5929,
12818,
363,
1371,
29889,
1987,
6630,
267,
1033,
505,
10049,
287,
29889,
6440,
29892,
1584,
13,
361,
24763,
471,
451,
1754,
9543,
310,
278,
2009,
310,
6630,
267,
29892,
3447,
278,
7841,
13,
1050,
277,
310,
24763,
723,
310,
3528,
3867,
263,
2769,
29899,
263,
376,
29882,
542,
3107,
357,
298,
542,
29908,
363,
13,
29887,
4357,
18879,
20193,
29889,
13,
4806,
1122,
7726,
297,
263,
8943,
982,
1048,
1749,
10040,
29892,
5174,
393,
727,
338,
694,
13,
29881,
283,
3116,
393,
1183,
1286,
18553,
599,
902,
20954,
4344,
322,
599,
1009,
4225,
297,
13,
1552,
3700,
304,
3700,
18551,
310,
607,
624,
29889,
3739,
10603,
502,
297,
29871,
29896,
2994,
29871,
29896,
29941,
29901,
29896,
29906,
29892,
278,
13,
915,
271,
928,
18551,
29889,
2193,
18551,
338,
310,
3236,
29892,
10362,
29889,
319,
23940,
674,
1074,
297,
13,
277,
297,
18618,
304,
278,
7426,
310,
17659,
411,
607,
393,
23940,
2175,
445,
13,
19264,
29889,
1205,
1183,
471,
2989,
310,
17659,
29892,
17659,
471,
577,
2107,
393,
376,
9290,
7621,
13,
5062,
4177,
508,
367,
2714,
310,
29892,
322,
871,
4177,
508,
15171,
355,
372,
29908,
1394,
29892,
408,
591,
4446,
29892,
13,
2276,
23164,
411,
2439,
4910,
457,
5791,
471,
8724,
1749,
15171,
2673,
29889,
1105,
1183,
1584,
13,
3707,
18553,
297,
393,
3700,
304,
3700,
18551,
599,
310,
902,
4344,
322,
9906,
599,
310,
13,
1552,
381,
4225,
29889,
2296,
508,
769,
1044,
3598,
2244,
363,
963,
491,
982,
310,
1006,
985,
706,
13,
29886,
764,
261,
29889,
1334,
526,
14586,
355,
5794,
12727,
29892,
322,
1749,
4225,
12727,
29892,
3447,
393,
338,
13,
1333,
2086,
1568,
363,
902,
10752,
304,
2125,
297,
29892,
427,
4366,
6419,
491,
263,
3578,
18618,
287,
13,
517,
902,
2989,
2264,
310,
17659,
29889,
13,
11863,
368,
29892,
1584,
565,
1183,
892,
451,
6721,
29689,
363,
1749,
4225,
29892,
3447,
13,
2276,
2778,
1169,
29892,
8724,
1749,
15171,
2673,
29892,
3867,
263,
376,
29882,
542,
3107,
357,
298,
542,
613,
263,
2769,
13,
1454,
278,
16690,
292,
310,
825,
591,
817,
29889,
450,
17852,
2307,
10753,
304,
16690,
599,
13,
29888,
990,
20193,
322,
17659,
448,
940,
3216,
18136,
1311,
491,
25967,
278,
8666,
310,
13,
276,
2310,
683,
29892,
607,
338,
10362,
29892,
304,
16690,
18879,
20193,
322,
17659,
29047,
29889,
13,
6295,
727,
338,
694,
4046,
472,
599,
304,
393,
304,
607,
940,
756,
3216,
18136,
1311,
304,
2367,
29889,
13,
1576,
871,
4046,
338,
527,
4752,
491,
278,
337,
1547,
2068,
470,
10225,
727,
974,
373,
278,
760,
310,
13,
375,
29689,
29889,
1334,
17386,
393,
3600,
1899,
1860,
892,
2183,
304,
2649,
502,
920,
13,
517,
367,
1722,
304,
7150,
393,
607,
940,
577,
12838,
873,
674,
29879,
304,
2367,
29889,
13,
6295,
727,
526,
1023,
2471,
3631,
9590,
2020,
591,
1122,
322,
881,
1246,
902,
13,
19302,
7163,
2126,
310,
599,
2646,
778,
29889,
13,
4806,
788,
393,
1183,
756,
263,
6297,
297,
1269,
7360,
29892,
278,
1407,
5192,
310,
278,
13,
27691,
310,
599,
2646,
778,
29889,
1152,
263,
28839,
756,
1023,
3161,
29892,
278,
714,
1328,
13,
4530,
29892,
322,
278,
13290,
27963,
29889,
1094,
304,
278,
714,
1328,
1804,
29892,
278,
3573,
322,
13,
14073,
397,
373,
278,
5272,
279,
526,
1603,
1906,
607,
1183,
4944,
363,
902,
5791,
29889,
1094,
304,
13,
1552,
13290,
27963,
29892,
925,
408,
3600,
26309,
310,
704,
287,
5597,
304,
278,
17852,
13,
27765,
338,
263,
3133,
362,
310,
393,
411,
607,
940,
2175,
445,
3186,
29892,
577,
2086,
902,
13,
16044,
749,
310,
278,
17852,
29915,
29879,
674,
607,
1183,
750,
472,
3037,
29894,
653,
29892,
1258,
451,
22964,
728,
13,
12711,
7045,
29892,
322,
1286,
338,
9410,
2705,
3133,
292,
297,
278,
26080,
310,
18356,
29889,
2259,
13,
18275,
1944,
16725,
1438,
21049,
1953,
297,
385,
3211,
304,
278,
11660,
6289,
297,
624,
29889,
13,
23686,
29915,
29879,
6862,
373,
16340,
26319,
29889,
29871,
29896,
29906,
29892,
29871,
29896,
29929,
29947,
29946,
313,
29892,
4223,
13,
287,
654,
29892,
26319,
29889,
29871,
29906,
29900,
29892,
29871,
29896,
29929,
29947,
29946,
29892,
282,
29889,
29871,
29896,
29900,
1125,
29908,
29911,
397,
388,
306,
6398,
304,
24013,
411,
366,
373,
278,
13,
29933,
2222,
287,
9167,
29915,
29879,
10122,
297,
278,
10894,
362,
310,
278,
21395,
332,
1927,
29889,
869,
869,
869,
7569,
13,
19411,
2007,
936,
3158,
29889,
869,
869,
338,
385,
10039,
310,
3817,
291,
29889,
869,
869,
322,
297,
263,
3153,
13,
1582,
411,
6182,
29889,
869,
869,
869,
7311,
278,
21395,
332,
1927,
338,
278,
3158,
310,
2819,
322,
310,
278,
13,
1451,
2458,
29889,
869,
869,
1183,
338,
297,
25048,
519,
515,
697,
322,
278,
916,
29889,
869,
869,
869,
6182,
338,
13,
6338,
297,
278,
2626,
9020,
448,
278,
11872,
2007,
936,
3158,
448,
1363,
1183,
471,
2198,
13,
271,
278,
14238,
1741,
29889,
869,
869,
869,
2296,
338,
472,
1432,
5272,
279,
988,
278,
2626,
9020,
310,
278,
13,
7129,
291,
322,
2538,
20503,
428,
338,
26301,
1363,
1183,
471,
2198,
29892,
27057,
13,
2541,
902,
3353,
1641,
304,
278,
17852,
29915,
29879,
3814,
29892,
472,
278,
22879,
24754,
928,
13,
15693,
7002,
310,
2819,
29915,
29879,
4892,
1213,
13,
14769,
475,
29892,
408,
1434,
29892,
591,
1074,
565,
278,
2320,
1531,
1974,
12388,
1516,
1749,
14415,
3631,
13,
5062,
11235,
925,
2183,
393,
1183,
338,
3436,
7163,
2126,
310,
599,
2646,
778,
29889,
1126,
591,
526,
13,
1333,
23451,
287,
29889,
13,
29963,
271,
2185,
1944,
29892,
297,
365,
29954,
396,
29953,
29906,
1258,
1246,
902,
3436,
7163,
2126,
29889,
739,
1258,
451,
29892,
3138,
29892,
788,
13,
1552,
3838,
376,
974,
599,
2646,
778,
1642,
450,
2769,
29973,
3824,
310,
599,
29892,
372,
471,
451,
4312,
29889,
1152,
13,
294,
591,
1497,
29892,
278,
1407,
2114,
393,
1183,
7258,
297,
2326,
1076,
451,
925,
777,
541,
599,
13,
3874,
778,
29892,
2794,
1183,
29358,
297,
1432,
17659,
393,
338,
2183,
714,
29889,
6440,
368,
29892,
727,
13,
11102,
278,
443,
6477,
403,
9949,
310,
21723,
424,
5366,
874,
472,
478,
271,
2185,
1944,
29889,
1094,
315,
29889,
13,
22031,
293,
29892,
697,
310,
278,
7482,
906,
29879,
310,
23040,
29871,
29947,
29892,
10603,
502,
313,
262,
376,
6489,
22009,
7207,
15682,
316,
13,
433,
5798,
277,
28762,
525,
29931,
14170,
8116,
1974,
29915,
5734,
912,
378,
560,
1588,
4193,
3423,
339,
2603,
316,
997,
350,
29889,
13,
29963,
381,
1885,
316,
425,
12815,
17516,
29908,
297,
29871,
29906,
29955,
29892,
29871,
29896,
29929,
29953,
29953,
29892,
282,
29889,
29871,
29896,
29955,
29946,
29897,
21723,
424,
13,
711,
643,
874,
750,
1497,
297,
6564,
393,
565,
278,
6291,
1497,
2086,
1568,
29892,
7928,
434,
373,
13,
1552,
11261,
723,
367,
9698,
29889,
13,
6246,
4340,
29892,
278,
8831,
3528,
2715,
263,
3661,
6812,
304,
967,
3229,
393,
13,
11360,
338,
3436,
7163,
2126,
29892,
16811,
502,
304,
26442,
310,
22533,
16714,
29892,
624,
29889,
349,
2482,
1060,
29892,
349,
2482,
18488,
29892,
13,
392,
349,
2482,
17172,
29892,
607,
1246,
902,
3436,
7163,
2126,
310,
599,
2646,
778,
29889,
830,
635,
29892,
727,
526,
13,
303,
453,
901,
3500,
284,
26442,
29901,
22533,
16714,
313,
2369,
8798,
506,
284,
29892,
1723,
5456,
29901,
376,
28450,
472,
599,
310,
393,
1407,
2107,
2578,
294,
2857,
310,
599,
13,
3874,
346,
607,
278,
6171,
6296,
502,
29889,
869,
869,
338,
527,
1595,
287,
304,
502,
5174,
1549,
6182,
29908,
13,
392,
1449,
313,
7463,
14978,
338,
515,
624,
29889,
13,
29933,
824,
538,
457,
29892,
302,
29889,
29871,
29953,
1125,
13577,
26526,
17659,
393,
13,
275,
7212,
630,
304,
445,
3186,
756,
263,
2211,
8771,
3236,
29889,
1152,
491,
15129,
13,
2098,
29892,
372,
338,
12272,
21144,
515,
4177,
304,
2819,
29892,
515,
2819,
304,
278,
9167,
29892,
515,
13,
1552,
9167,
304,
502,
29889,
18793,
624,
29889,
349,
2482,
1060,
313,
29892,
26319,
29889,
29871,
29906,
29892,
29871,
29896,
29929,
29900,
29946,
29897,
2000,
902,
13,
29908,
4205,
29886,
575,
271,
2126,
29908,
310,
599,
278,
330,
17741,
607,
13825,
17515,
363,
502,
491,
3600,
4892,
1213,
13,
2855,
297,
1919,
310,
3111,
29871,
29906,
29955,
29892,
29871,
29896,
29929,
29896,
29900,
29892,
540,
2000,
902,
376,
1552,
13,
2484,
294,
9945,
310,
599,
2646,
778,
1213,
349,
2482,
18488,
2211,
3064,
884,
2000,
902,
376,
2484,
294,
9945,
310,
13,
497,
2646,
778,
29908,
313,
262,
319,
3289,
29871,
29896,
29946,
29892,
29871,
29896,
29947,
29953,
29936,
319,
3289,
29871,
29896,
29953,
29892,
29871,
29896,
29945,
29906,
29892,
322,
319,
3289,
29871,
29896,
29947,
29889,
29871,
29906,
29896,
29941,
467,
349,
2482,
17172,
13,
29898,
29892,
2610,
29871,
29896,
29941,
29892,
29871,
29896,
29929,
29946,
29953,
29897,
1497,
376,
28450,
338,
429,
13347,
515,
902,
13,
24130,
291,
1213,
2259,
6193,
5287,
313,
29892,
2627,
29871,
29941,
29896,
29892,
29871,
29896,
29929,
29945,
29929,
29897,
13,
29893,
4859,
6160,
9260,
451,
278,
6171,
674,
393,
591,
505,
4129,
1549,
6182,
29908,
322,
297,
13,
2687,
29892,
29871,
29953,
29953,
29901,
13,
29908,
4591,
902,
6567,
4966,
363,
599,
2646,
778,
1213,
13,
18650,
5791,
22399,
304,
3638,
502,
263,
716,
25215,
542,
403,
313,
29967,
29876,
29871,
29896,
29945,
29901,
29906,
29953,
29936,
29871,
29896,
29953,
29901,
29955,
467,
940,
13,
29950,
326,
1311,
750,
1063,
1009,
25215,
542,
403,
322,
1603,
338,
313,
29896,
435,
29876,
29871,
29906,
29901,
29896,
467,
2296,
471,
322,
338,
29892,
408,
13,
705,
4446,
29892,
938,
15084,
6942,
411,
18136,
408,
22545,
403,
29889,
8725,
29892,
925,
408,
11996,
13,
11102,
5545,
278,
805,
1709,
310,
4177,
313,
3624,
29871,
29945,
29946,
29901,
29945,
29936,
379,
359,
29871,
29906,
29901,
29896,
29929,
511,
322,
408,
624,
29889,
3739,
12707,
13,
974,
278,
6291,
408,
278,
805,
1709,
310,
2819,
313,
29906,
2994,
29871,
29896,
29896,
29901,
29906,
29936,
274,
29888,
29889,
382,
561,
29871,
29945,
29901,
29906,
29945,
511,
577,
2086,
591,
13,
26680,
7726,
310,
902,
408,
278,
1706,
1709,
310,
278,
17733,
20799,
304,
6029,
1183,
338,
3926,
13,
3242,
7970,
27057,
29892,
902,
10752,
3926,
10049,
292,
304,
738,
7248,
289,
929,
911,
515,
13,
1552,
20799,
2665,
1549,
3600,
402,
17741,
29889,
13,
797,
19899,
21071,
29871,
29945,
29945,
29901,
29929,
4177,
1497,
29901,
376,
2887,
278,
14200,
575,
526,
6133,
1135,
278,
8437,
29892,
577,
13,
598,
590,
5837,
6133,
1135,
596,
5837,
29892,
322,
590,
13133,
1135,
596,
13133,
1213,
1551,
13,
354,
4362,
445,
263,
767,
1795,
1532,
4997,
29901,
1128,
769,
508,
306,
2274,
4177,
29892,
920,
13,
28385,
825,
940,
674,
29879,
29892,
920,
304,
5376,
411,
1075,
29973,
1205,
512,
13825,
591,
505,
278,
1234,
29889,
13,
3868,
29892,
2466,
263,
4910,
457,
5196,
29892,
756,
263,
8072,
5199,
5192,
29892,
607,
591,
508,
13,
5062,
1689,
29889,
349,
2482,
17172,
297,
1584,
4083,
393,
13825,
756,
263,
5360,
13,
974,
11223,
297,
3600,
5199,
5192,
29889,
1205,
769,
29892,
4856,
1795,
1603,
1827,
29901,
3869,
29892,
541,
13,
29950,
275,
5192,
338,
278,
5192,
310,
263,
4910,
457,
5196,
29889,
2398,
29892,
902,
5192,
338,
24837,
29892,
13,
296,
533,
368,
5199,
29892,
322,
3447,
372,
338,
6446,
297,
443,
2285,
411,
3600,
29889,
1105,
902,
13,
1888,
8628,
5987,
17778,
508,
322,
947,
1223,
545,
502,
591,
505,
297,
18356,
385,
25215,
542,
403,
6029,
13,
705,
508,
2274,
29892,
1058,
2274,
29879,
502,
29889,
1058,
12355,
267,
502,
304,
278,
15834,
393,
763,
13,
1552,
17852,
29892,
1183,
1258,
451,
29337,
902,
871,
5791,
29892,
541,
4846,
18136,
701,
363,
599,
310,
502,
29889,
13,
797,
6225,
18642,
1478,
344,
29914,
1123,
955,
362,
29871,
29896,
29906,
591,
1284,
278,
1967,
310,
278,
6114,
13950,
287,
13,
2541,
278,
6575,
29889,
4124,
19819,
362,
338,
2553,
630,
29889,
1334,
505,
9506,
373,
372,
491,
13,
344,
369,
284,
6977,
267,
29889,
624,
29889,
349,
2482,
1060,
313,
22933,
29871,
29941,
29953,
29889,
29871,
29946,
29945,
29947,
29899,
29945,
29929,
29897,
1497,
376,
3782,
697,
310,
502,
947,
451,
1073,
13,
5747,
393,
6114,
1804,
11057,
278,
9167,
6182,
29889,
869,
869,
869,
2259,
4446,
278,
7849,
17733,
13,
29924,
1228,
310,
4177,
2307,
11418,
5414,
634,
17196,
22722,
29892,
322,
3447,
10212,
292,
515,
13,
5372,
7934,
12060,
2973,
825,
12060,
29973,
18585,
368,
1749,
29879,
1213,
349,
2482,
17172,
29898,
319,
3289,
29871,
29946,
29896,
29889,
29871,
29955,
29953,
29906,
29899,
29953,
29941,
29897,
13,
4977,
333,
29901,
11393,
869,
278,
1102,
324,
6288,
437,
14359,
505,
5545,
278,
4007,
28069,
310,
278,
13,
29963,
381,
5359,
21869,
310,
4177,
408,
1804,
2164,
451,
871,
297,
278,
5164,
13994,
310,
278,
13,
21648,
29198,
29892,
541,
884,
297,
393,
6114,
13950,
287,
411,
278,
6575,
1213,
3739,
5473,
13,
29898,
29892,
2610,
29871,
29896,
29941,
29892,
29871,
29896,
29929,
29953,
29955,
29897,
1497,
393,
445,
18551,
376,
275,
21551,
491,
13,
1552,
26546,
11872,
332,
1927,
29892,
451,
1728,
22778,
29892,
408,
16811,
304,
278,
7849,
13,
29933,
2222,
287,
6182,
29892,
278,
21869,
310,
599,
1757,
491,
278,
17659,
310,
2819,
278,
390,
2742,
25154,
1213,
13,
11639,
3739,
1944,
313,
396,
29906,
29946,
29897,
4083,
278,
671,
310,
278,
1734,
6114,
260,
583,
13,
29873,
12966,
5739,
29871,
29941,
29901,
29896,
29945,
29892,
315,
1648,
29892,
278,
3661,
310,
278,
4891,
29892,
322,
445,
18551,
29889,
13,
1349,
968,
8579,
284,
26442,
526,
451,
8072,
24860,
29889,
1205,
372,
2444,
393,
777,
13,
22100,
310,
278,
18551,
437,
2737,
304,
8680,
10040,
29892,
4045,
304,
278,
6291,
29892,
297,
1776,
13,
974,
278,
10212,
29889,
2567,
727,
338,
263,
1532,
2998,
18472,
3973,
4766,
297,
607,
385,
13,
513,
23352,
15028,
363,
322,
338,
15659,
411,
263,
6314,
2068,
29889,
1105,
445,
1967,
13,
26680,
2317,
363,
902,
408,
385,
5375,
29892,
541,
408,
15659,
411,
278,
6291,
29889,
13,
29933,
29889,
435,
951,
25022,
275,
29892,
297,
263,
766,
1940,
362,
363,
278,
19864,
506,
284,
8907,
297,
9184,
297,
13,
29896,
29929,
29945,
29946,
29892,
14661,
393,
565,
278,
1967,
15028,
13,
1454,
1716,
29892,
372,
1795,
367,
263,
29821,
579,
393,
1434,
278,
1095,
278,
6291,
674,
2125,
13,
265,
385,
7148,
24236,
2931,
29892,
297,
385,
5046,
310,
6182,
29889,
624,
29889,
5899,
316,
13,
24665,
3921,
29892,
297,
396,
29946,
29929,
947,
8500,
385,
5046,
310,
6182,
29889,
13,
6295,
445,
1795,
367,
4586,
408,
263,
2471,
3631,
1967,
310,
902,
408,
278,
6291,
29892,
13,
4716,
338,
278,
805,
1709,
310,
2819,
322,
29914,
272,
278,
17733,
20799,
29892,
322,
577,
1749,
25215,
542,
403,
29889,
13,
29906,
29941,
13,
2683,
2683,
2683,
2683,
5634,
13,
1576,
27758,
883,
310,
445,
1842,
338,
3509,
1266,
287,
29889,
13,
11882,
1266,
313,
29883,
29897,
1605,
13593,
22365,
800,
29871,
29896,
29929,
29929,
29946,
29889,
13,
1184,
29894,
2618,
2085,
2167,
29891,
310,
29901,
13,
1576,
11865,
18981,
8527,
13,
2308,
13593,
22365,
800,
13,
13152,
11773,
29871,
29941,
29953,
29896,
29900,
13,
2517,
465,
294,
29892,
478,
29909,
29871,
29906,
29906,
29896,
29896,
29900,
13,
29963,
29877,
625,
29901,
29871,
29955,
29900,
29941,
29899,
29955,
29929,
29896,
29899,
29906,
29945,
29955,
29953,
13,
29943,
1165,
29901,
29871,
29955,
29900,
29941,
29899,
29955,
29929,
29896,
29899,
29946,
29906,
29945,
29900,
13,
1469,
29901,
29871,
29955,
29900,
29941,
29899,
29955,
29929,
29896,
29899,
29946,
29941,
29941,
29953,
13,
1576,
11865,
18981,
8527,
338,
263,
11865,
7395,
2472,
322,
13,
5509,
1788,
29889,
1763,
3347,
344,
15600,
6006,
470,
5988,
29892,
731,
596,
4464,
29885,
304,
29871,
29947,
848,
13,
14836,
29892,
29871,
29896,
5040,
2586,
322,
694,
610,
537,
29892,
322,
1246,
29871,
29896,
29899,
29955,
29900,
29941,
29899,
29955,
29929,
29896,
29899,
29946,
29941,
29941,
29953,
29889,
13,
2683,
2683,
2683,
2683,
5634
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Evidence of a collateralized climbing fiber projection from the inferior olive to the flocculus and vestibular nuclei in rabbits.
In albino rabbits, horseradish peroxidase injections confined to vestibular nuclei retrogradely labeled neurons in the dorsal cap of the contralateral inferior olive. Mapping with stimulating electrodes revealed that stimulation of the lateral aspect of the medial vestibular nucleus and the medial aspect of the inferior vestibular nucleus evoked field potentials representing antidromic activation of contralateral dorsal cap neurons. These responses interfered with the antidromic response evoked from the contralateral flocculus and orthodromic responses evoked from the contralateral retina, suggesting that dorsal cap neurons which both receive retinal input and project to the flocculus send collaterals to vestibular nuclei. | [
1,
7298,
5084,
310,
263,
5321,
1008,
284,
1891,
10784,
10549,
5713,
495,
18246,
515,
278,
20773,
288,
9258,
304,
278,
5685,
617,
14999,
322,
16779,
747,
1070,
11205,
16301,
297,
27127,
1169,
29889,
13,
797,
27234,
1789,
27127,
1169,
29892,
4029,
643,
328,
728,
639,
2251,
333,
559,
297,
24247,
1970,
1312,
304,
16779,
747,
1070,
11205,
16301,
24877,
5105,
873,
301,
24025,
26808,
787,
297,
278,
270,
943,
284,
2117,
310,
278,
4313,
284,
1008,
284,
20773,
288,
9258,
29889,
341,
20304,
411,
20436,
18099,
28118,
2783,
17845,
393,
20436,
2785,
310,
278,
2678,
284,
9565,
310,
278,
1612,
616,
16779,
747,
1070,
22699,
375,
322,
278,
1612,
616,
9565,
310,
278,
20773,
16779,
747,
1070,
22699,
375,
3415,
12504,
1746,
7037,
29879,
15783,
3677,
333,
456,
293,
26229,
310,
4313,
284,
1008,
284,
270,
943,
284,
2117,
26808,
787,
29889,
4525,
20890,
1006,
571,
287,
411,
278,
3677,
333,
456,
293,
2933,
3415,
12504,
515,
278,
4313,
284,
1008,
284,
5685,
617,
14999,
322,
14219,
397,
456,
293,
20890,
3415,
12504,
515,
278,
4313,
284,
1008,
284,
3240,
1099,
29892,
26233,
393,
270,
943,
284,
2117,
26808,
787,
607,
1716,
7150,
3240,
979,
1881,
322,
2060,
304,
278,
5685,
617,
14999,
3638,
5321,
1008,
1338,
304,
16779,
747,
1070,
11205,
16301,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Syrian swimmer Saleh Mohammad is scheduled to participate in the 2014 circuit of the FINA 10km Marathon Swimming World Cup due in Canada on July 26th.
Mohammad won the second position in 88 km Barana swimming marathon in Argentina within the World Swimming Cup.
He told SANA that he will exert all efforts to achieve a remarkable level at the marathon and achieve positive outcomes.
Mohammad won Republic Championship Cub since 1998 and three gold medals in the Arab Championship in Jordan in 2002, two gold medals in 5 km and 10 km in the Asian Beach games in Indonesia in 2008 and the best athlete in Asia in the same championship as well as he was qualified for Beijing Olympic Games in 2008.
Mohammed also won a gold medal in the 5km and 10 km in the Asian Beach Games in Oman in 2010 and the gold medal in10 km and a silver medal in 5 km in Asia Championship in Kazakhstan in 2013. | [
1,
8713,
6392,
2381,
19400,
317,
744,
29882,
12929,
4850,
328,
338,
21467,
304,
5221,
403,
297,
278,
29871,
29906,
29900,
29896,
29946,
11369,
310,
278,
383,
1177,
29909,
29871,
29896,
29900,
8848,
1085,
25206,
3925,
25217,
2787,
6536,
2861,
297,
7400,
373,
5468,
29871,
29906,
29953,
386,
29889,
13,
13,
29924,
1148,
4850,
328,
2113,
278,
1473,
2602,
297,
29871,
29947,
29947,
2383,
2261,
1648,
2381,
25217,
1766,
25206,
297,
13798,
2629,
278,
2787,
3925,
25217,
6536,
29889,
13,
13,
3868,
5429,
317,
2190,
29909,
393,
540,
674,
429,
814,
599,
14231,
304,
6176,
263,
22567,
3233,
472,
278,
1766,
25206,
322,
6176,
6374,
714,
26807,
29889,
13,
13,
29924,
1148,
4850,
328,
2113,
8063,
8972,
28618,
1951,
29871,
29896,
29929,
29929,
29947,
322,
2211,
7684,
1612,
1338,
297,
278,
10387,
8972,
297,
18284,
297,
29871,
29906,
29900,
29900,
29906,
29892,
1023,
7684,
1612,
1338,
297,
29871,
29945,
2383,
322,
29871,
29896,
29900,
2383,
297,
278,
20021,
17594,
8090,
297,
16704,
423,
297,
29871,
29906,
29900,
29900,
29947,
322,
278,
1900,
17622,
2810,
297,
14325,
297,
278,
1021,
22401,
408,
1532,
408,
540,
471,
18698,
363,
1522,
823,
292,
19025,
12482,
297,
29871,
29906,
29900,
29900,
29947,
29889,
13,
13,
29924,
1148,
28913,
884,
2113,
263,
7684,
12807,
297,
278,
29871,
29945,
8848,
322,
29871,
29896,
29900,
2383,
297,
278,
20021,
17594,
12482,
297,
438,
1171,
297,
29871,
29906,
29900,
29896,
29900,
322,
278,
7684,
12807,
297,
29896,
29900,
2383,
322,
263,
13283,
12807,
297,
29871,
29945,
2383,
297,
14325,
8972,
297,
15198,
19426,
14411,
297,
29871,
29906,
29900,
29896,
29941,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
9.08.2015
i see you fall
three weeks ago yesterday, my father-in-law had a mild stroke. he spent the first week in ICU after enduring surgery to repair the blockage and then he spent another week in rehab. we all feel blessed with how his recovery is coming along and extremely grateful that he was able to return to his own home.
always on my mind is photography and i rarely leave home without my camera bag, but the past few weeks have been a blur and really amazingly hot, so my memory card is sad and lonely. thankfully, i still have some photos from earlier this summer that i can share here.
but as i sit here typing, the weather is changing. fall is literally watching me through the open window on our screened in porch and reminding me how much i adore "her" by sending in a cool breeze every few minutes to brush up against my skin. "hello fall, i see you. i feel you."
i picked up the newest issue of "bella grace" yesterday and as always, it's gorgeous. it's also filled with many new artists, which is like a breath of fresh air. i found it at joann fabrics, which just happens to be in my top five of most irritating stores ever, but i actually got through the store, including the fabric cutting line, without any injuries. i know, right?
unless you love that store, then you have no idea what i'm even talking about and it would now be your turn to tell me what store or stores irritate you. see, i'm fair like that :)
i read it
9 comments:
Love your pics! So happy that father in law is doing better. May his recovery continue smoothly.Hate the lines at joann's too. I have been known to arrive at the registers see the line and drop my basket and walk out.I can't believe fall is here. Missing the seasons a lot. Still feels like Florida summer here, hot and daily thunderstorms. Ready for the ac to be off and the windows to open. Sending love your way, dear one!
First of all, very sorry about your father in law and I'm glad to hear the recovery is moving along -- that, at least, is a good thing.
I've been trying to wring the last bits out of summer. I love fall but not what comes after, so I'm all for delaying as long as possible. To that end, I have been a slacker visitor, for which I apologize! I'm barely keeping up on comments to the Gypsy and one good thing about fall is more time for things that I love like connecting.
I'm none too fond of Joann's either but at least they have stuff I like there. Michael's is somewhat the same but I have to go there to get my Golden stuff. You want to see me go crazy, though, send me to Walmart or a big box store.
So glad your father-in-law is doing better. How scary. My most irritating stores are large department stores with the perfumey stuff at the entrance. I avoid them as much as possible. No JoAnne's nearby anymore, but I remember them and how slow the people that work in them can be. Gorgeous summer photos, oh but the colors of fall I am delighting in them.
Saying prayers for your father-in-law for a full and complete recovery. How scary it must have been for him and all of his loved ones.And the worst store EVER on my list is Toys R Us. It's pure torture. Joann's is definitely on my top 5 list along with Home Depot, Mall Food Courts with kids gyms that are dirty (and loud), and Active W judge. Active Wear stores that only have super skinny sales people who judge ;-)xoxo jj
copyright 2016-beth's photography-all rights reserved
Sometimes it might not look like it, but I've worked really hard on my photography and the writing that I share here. After all, it is my blog. So if there is something you see of mine that you'd like to use, copy or share, PLEASE PLEASE PLEASE ask for my permission first. Thank you ! | [
1,
29871,
29929,
29889,
29900,
29947,
29889,
29906,
29900,
29896,
29945,
13,
13,
29875,
1074,
366,
6416,
13,
13,
17536,
11405,
8020,
22600,
29892,
590,
4783,
29899,
262,
29899,
10653,
750,
263,
286,
789,
19782,
29889,
540,
10398,
278,
937,
4723,
297,
18340,
29965,
1156,
1095,
3864,
25300,
708,
304,
26032,
278,
2908,
482,
322,
769,
540,
10398,
1790,
4723,
297,
337,
7308,
29889,
591,
599,
4459,
1999,
11517,
411,
920,
670,
24205,
338,
6421,
3412,
322,
14154,
28656,
393,
540,
471,
2221,
304,
736,
304,
670,
1914,
3271,
29889,
13,
13,
21936,
373,
590,
3458,
338,
6731,
5275,
322,
474,
23703,
5967,
3271,
1728,
590,
10656,
19548,
29892,
541,
278,
4940,
2846,
11405,
505,
1063,
263,
1999,
332,
322,
2289,
21863,
11687,
7375,
29892,
577,
590,
3370,
5881,
338,
14610,
322,
23123,
873,
29889,
6452,
3730,
29892,
474,
1603,
505,
777,
20612,
515,
8859,
445,
11801,
393,
474,
508,
6232,
1244,
29889,
13,
13,
4187,
408,
474,
7845,
1244,
19229,
29892,
278,
14826,
338,
6480,
29889,
6416,
338,
22830,
21217,
592,
1549,
278,
1722,
3474,
373,
1749,
4315,
287,
297,
1277,
305,
322,
1083,
4015,
592,
920,
1568,
474,
594,
487,
376,
2276,
29908,
491,
9348,
297,
263,
12528,
289,
929,
911,
1432,
2846,
6233,
304,
1506,
1878,
701,
2750,
590,
19309,
29889,
376,
12199,
6416,
29892,
474,
1074,
366,
29889,
474,
4459,
366,
1213,
13,
13,
29875,
18691,
701,
278,
716,
342,
2228,
310,
376,
29890,
3547,
17659,
29908,
22600,
322,
408,
2337,
29892,
372,
29915,
29879,
330,
3890,
681,
29889,
372,
29915,
29879,
884,
10423,
411,
1784,
716,
17906,
29892,
607,
338,
763,
263,
16172,
310,
10849,
4799,
29889,
474,
1476,
372,
472,
2958,
812,
10135,
10817,
29892,
607,
925,
5930,
304,
367,
297,
590,
2246,
5320,
310,
1556,
3805,
768,
1218,
14422,
3926,
29892,
541,
474,
2869,
2355,
1549,
278,
3787,
29892,
3704,
278,
18187,
28967,
1196,
29892,
1728,
738,
10899,
14886,
29889,
474,
1073,
29892,
1492,
29973,
13,
13,
28952,
366,
5360,
393,
3787,
29892,
769,
366,
505,
694,
2969,
825,
474,
29915,
29885,
1584,
9963,
1048,
322,
372,
723,
1286,
367,
596,
2507,
304,
2649,
592,
825,
3787,
470,
14422,
3805,
768,
403,
366,
29889,
1074,
29892,
474,
29915,
29885,
6534,
763,
393,
4248,
13,
13,
29875,
1303,
372,
13,
13,
29929,
6589,
29901,
13,
13,
29931,
994,
596,
282,
1199,
29991,
1105,
9796,
393,
4783,
297,
4307,
338,
2599,
2253,
29889,
2610,
670,
24205,
6773,
10597,
368,
29889,
29950,
403,
278,
3454,
472,
2958,
812,
29915,
29879,
2086,
29889,
306,
505,
1063,
2998,
304,
18331,
472,
278,
28975,
1074,
278,
1196,
322,
5768,
590,
25972,
322,
6686,
714,
29889,
29902,
508,
29915,
29873,
4658,
6416,
338,
1244,
29889,
4750,
292,
278,
20084,
263,
3287,
29889,
12074,
23880,
763,
13813,
11801,
1244,
29892,
7375,
322,
14218,
266,
5062,
303,
555,
29879,
29889,
830,
3714,
363,
278,
1274,
304,
367,
1283,
322,
278,
5417,
304,
1722,
29889,
317,
2548,
5360,
596,
982,
29892,
9425,
697,
29991,
13,
13,
6730,
310,
599,
29892,
1407,
7423,
1048,
596,
4783,
297,
4307,
322,
306,
29915,
29885,
10932,
304,
8293,
278,
24205,
338,
8401,
3412,
1192,
393,
29892,
472,
3203,
29892,
338,
263,
1781,
2655,
29889,
13,
13,
29902,
29915,
345,
1063,
1811,
304,
2358,
292,
278,
1833,
9978,
714,
310,
11801,
29889,
306,
5360,
6416,
541,
451,
825,
5304,
1156,
29892,
577,
306,
29915,
29885,
599,
363,
9055,
292,
408,
1472,
408,
1950,
29889,
1763,
393,
1095,
29892,
306,
505,
1063,
263,
269,
2364,
261,
27682,
29892,
363,
607,
306,
27746,
675,
29991,
306,
29915,
29885,
16079,
368,
12515,
701,
373,
6589,
304,
278,
12842,
567,
29891,
322,
697,
1781,
2655,
1048,
6416,
338,
901,
931,
363,
2712,
393,
306,
5360,
763,
16791,
29889,
13,
13,
29902,
29915,
29885,
5642,
2086,
6299,
310,
3650,
812,
29915,
29879,
2845,
541,
472,
3203,
896,
505,
6433,
306,
763,
727,
29889,
5765,
29915,
29879,
338,
10579,
278,
1021,
541,
306,
505,
304,
748,
727,
304,
679,
590,
16108,
6433,
29889,
887,
864,
304,
1074,
592,
748,
12220,
1537,
29892,
2466,
29892,
3638,
592,
304,
5260,
28402,
470,
263,
4802,
3800,
3787,
29889,
13,
13,
6295,
10932,
596,
4783,
29899,
262,
29899,
10653,
338,
2599,
2253,
29889,
1128,
885,
653,
29889,
1619,
1556,
3805,
768,
1218,
14422,
526,
2919,
14311,
14422,
411,
278,
23895,
398,
1032,
6433,
472,
278,
19546,
29889,
306,
4772,
963,
408,
1568,
408,
1950,
29889,
1939,
3650,
2744,
484,
29915,
29879,
20810,
15128,
29892,
541,
306,
6456,
963,
322,
920,
5232,
278,
2305,
393,
664,
297,
963,
508,
367,
29889,
402,
3890,
681,
11801,
20612,
29892,
9360,
541,
278,
11955,
310,
6416,
306,
626,
15319,
292,
297,
963,
29889,
13,
13,
29903,
388,
292,
12475,
414,
363,
596,
4783,
29899,
262,
29899,
10653,
363,
263,
2989,
322,
4866,
24205,
29889,
1128,
885,
653,
372,
1818,
505,
1063,
363,
1075,
322,
599,
310,
670,
18012,
6743,
29889,
2855,
278,
17322,
3787,
382,
5348,
373,
590,
1051,
338,
1763,
952,
390,
10783,
29889,
739,
29915,
29879,
8296,
16263,
545,
29889,
3650,
812,
29915,
29879,
338,
11630,
373,
590,
2246,
29871,
29945,
1051,
3412,
411,
8778,
10034,
327,
29892,
23809,
25453,
6325,
1372,
411,
413,
4841,
330,
962,
29879,
393,
526,
26616,
313,
392,
22526,
511,
322,
10731,
399,
16833,
29889,
10731,
399,
799,
14422,
393,
871,
505,
2428,
19309,
1460,
16538,
2305,
1058,
16833,
2056,
15805,
29916,
2251,
29877,
432,
29926,
13,
13,
8552,
1266,
29871,
29906,
29900,
29896,
29953,
29899,
29890,
621,
29915,
29879,
6731,
5275,
29899,
497,
10462,
21676,
13,
13,
29903,
14618,
372,
1795,
451,
1106,
763,
372,
29892,
541,
306,
29915,
345,
3796,
2289,
2898,
373,
590,
6731,
5275,
322,
278,
5007,
393,
306,
6232,
1244,
29889,
2860,
599,
29892,
372,
338,
590,
12618,
29889,
1105,
565,
727,
338,
1554,
366,
1074,
310,
7903,
393,
366,
29915,
29881,
763,
304,
671,
29892,
3509,
470,
6232,
29892,
349,
14063,
349,
14063,
349,
14063,
2244,
363,
590,
10751,
937,
29889,
3374,
366,
1738
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
07 August 2008
We settled two lawsuits this quarter. In neither had there been medical negligence. It's pretty galling to settle cases like these, but it's smart. The deck is stacked against us, and you have to make the good decisions, even when it is bitter.
Both cases were quite straightforward. In one, there was a DVT diagnosed and treated according to hospital protocol -- low molecular weight heparin and transition to warfarin. The patient went on to have a pulmonary embolus and recovered uneventfully with no adverse sequelae. We only settled because it was cheaper than going to trial. As galling as it was to pay, we did have the satisfaction of knowing that the plaintiff's attorney took a loss on the case. (It was a very small payout, and his preparatory expenses were considerable.)
The other case is more maddening. A very young child was dropped on his head, suffered an epidural hematoma, which was diagnosed on CT, and the child was transferred to a regional trauma center. He recovered, though with some degree of neurologic disability. The plaintiffs waited ten years to file (!) and alleged that some minor delays in CT and transfer were the cause of the bad outcome. This is obviously bogus. But we knew they were going to wheel a brain-damaged kid in front of the jury. The likelihood of losing this case was significant for that reason alone, and the risk of a big payout was significant. So we settled in the mid six figures. I hated to settle, and struggled with the decision, but with juries making decisions, it's a crap shoot, and they consistently rule in favor of sympathetic plaintiffs.
What can we do? When you are at Yellowstone, they tell you not to feed the bears because it just encourages them. But that metaphor doesn't work when the alternative is to let the bear maul you and hope that he won't get all of your food.
The real problem isn't that these suits were frivolous. I don't really know what that word means. I do know they were baseless. The problem is that the newspapers are replete with cases where there is a huge jury award in cases where there was no malpractice. This is what induces us, and lord knows how many other medical groups, to settle cases which were well-handled. When there is no correlation between whether negligence occurred and whether you win or lose, the only viable strategy is to pick your fights very very carefully.
Simply: Lay juries are not qualified to make determination of causation.
What typically happens is that the two sides present dueling expert witnesses who assert fundamentally incompatible standards. The jury is then left to decide which was more credible. How the hell are they supposed to decide which of two eminent, respected academicians is right? When medical experts disagree, how on earth can uneducated laypersons decide accurately what constitutes negligent behavior? If the plaintiff died or was severly imparied as an outcome, that inarguably biases a jury to assume that "something must have gone wrong," and their verdicts do tend to correlate.
I am also aware that the defense prevails in many or most malpractice actions. To me, this is not an indication that the system works. Quite the opposite. There have been cases of which I was personally aware in which the care was clearly substandard but the defense experts were more convincing and the jury went along. The problem is not that doctors win 87% of the time, nor that awards are out of control. The problem is that juries are unpredictable and commonly make very wrong decisions. The result of this is that in many cases patients who were injured go uncompensated (especially if they are not sympathetic victims), and that doctors who were not culpable wind up losing.
When there is not good correlation between causation and verdicts, the system falls apart. I think that tort reform is essential. But I do not particularly favor caps. Caps are clumsy and heavy-handed. Moreover, caps on awards do not get at the heart of the problem, which is the arbitrary and capricious decision-making patterns of juries. It's just as well, because caps are as dead as a doornail, politically speaking. I would like to see an alternative solution. I would prefer special health care courts or some other system which attempts to improve the accuracy of judgements.
27 comments:
It appears that many of these lawsuits are pursued by the plaintiffs to somehow compensate them for the emotional pain of having a family member with a disability. Which by the way, in the company of thousands of dollars, is not diminished in any way, shape or form but for some reason gives them a potential concrete reason for the disability rather than having to hinge their pain on the existential question of why. Unfortunate and terrible for the folks who did their very best in caring for the person only to get slapped in the face by folks who can't deal.
1. "The deck is stacked against us." That is unequivocally false. If anyone, the deck is stacked against the plaintiff, regardless of the legitimacy of the claim. You would think a plaintiff with a good claim would simply be paid by the offending party or their insurer and move on. But even in cases of clear liability that's not the case. First, the provider will clam up, hoping the short statute of limitations will run. So now they have to find a lawyer, which they hopefully don't wait too long to do because if it's within 90 days of the statute running (and most laypeople have no idea when it runs) they will have extreme difficulty finding an attorney. Then they probably have to go through several attys because few do med mal. Next they have to wait while the atty gets a consulting expert to review the case - not a testifying one - just someone to review and say "hey, there's enough here to consider going forward." This is the first person that ever tells the plaintiff anything about what actually happened, and they often say no case.
Next, the attorney has to put the insurer on notice, who instead of settling, will deny liability regardless of fault typically. Especially if there are large damages. Next, the attorney has to, in some states, find an expert willing to go on record as saying it was malpractice, and one who is a decent witness. No matter how poor of skills the physician community thinks one of their own has, they certainly would never testify against each other.
Then the plaintiff will go through at least written discovery and most likely a deposition that covers every angle of his life, from birth to the date of depo. THen the insurer will want mediation where they'll come in and explain why he's fine and their insured is saintly.
And if the plaintiff does get a trial, the physician still wins 75% of the time. Oh yeah, and all this time if he/she can't work their bills are piling up and they may be facing bankruptcy, not to mention the stress and pain from the injury. So how exactly is the deck stacked against the doc?
2. "The likelihood of losing this case was significant for that reason alone, and the risk of a big payout was significant."
How significant? What exactly are the odds in your venue? Do you know?
3. "he problem is that the newspapers are replete with cases where there is a huge jury award in cases where there was no malpractice."
Ah, here's the problem. The people in charge of when you settle are using anecdotal evidence from NEWSPAPERS to make their decisions. Never mind the fact that a newspaper distills a weeklong trial into a column. Or the fact that you assume that although journalists never get medical issues right they hit legal ones right on the nose. Or that the amount a jury awards may not be anything near the actual payout. If I were paying into your system and this was the basis upon which you were settling cases I would want my money back.
As for your solutions - here's a better one - pay legit claims promptly. Special "health courts" are nonsense. First, the proposal you link to is just backdoor damage caps - read it. Common Good is run by a partner at the tobacco industry's main law firm and he's been their lobbyist for years. Do you really think they're interested in making sure more injured people get paid and paid quicker? Second, who is going to pay for these special health courts? And what will it cost? And exactly how are you going to train judges so they'll be, in your opinion, more accurate? Will each state have a judge for each specialty who roams around trying cases?
You say it's clear the current system is a "miserable failure." Yet your only solution is apparently something you haven't even studied or thought about in any detail. To support your claim you give us nothing but anecdotal evidence. You say juries are unpredictable and "commonly" make the wrong decision? This is true because. . . you say so? What level of accuracy do you require? The same as in medicine? I'm guessing not, because when things go wrong in medicine physicians just throw up their hands and say "well, there are some things we just can't control."
It appears you need to think about this issue a little more before you go pontificating, because right now you're just giving us tired insurance company talking points.
And I wonder why medical costs are through the roof or that many in healthcare these days (patients and docs) feel that the "humanity" has gone out of it. This is such an adversarial system the way we have it set up that it is bound to fail both physician and patient time and again....
It sounds like anonymous is a personal injury lawyer. I disagree with him/her on multiple points.
No matter how poor of skills the physician community thinks one of their own has, they certainly would never testify against each other.
And you say the newspapers use hearsay and anecdotal evidence!
As for your solutions - here's a better one - pay legit claims promptly. Special "health courts" are nonsense.
And who decides which claims are legit? A negative outcome doesn't always mean malpractice, and malpractice can occur even without a negative outcome.
You point to the supposed difficulty of finding an expert who's willing to go on record and who's also a "good witness." If it's truly malpractice, what does it matter if someone's a good witness? Res ipsa loquitur, right? If you're relying on whether someone can look good in front of a jury, then your case is already flawed.
Second, who is going to pay for these special health courts? And what will it cost? And exactly how are you going to train judges so they'll be, in your opinion, more accurate?
First of all, who pays for it now? Obviously attorney fees come out of a settlement or judgement, but how are the indirect costs (e.g. time occupying courtroom, stenographer's salary, etc.) handled?
How should judges be trained? Well, the National Judges' Medical School is a start.http://www.ama-assn.org/amednews/2008/07/28/prsa0728.htm
A medical court system maintains adversarial positions. I favor a publicly funded, no-fault, adverse outcome system. Some adverse outcomes are absolutely unavoidable. The patient/family bear a heavy financial burden of care, regardless of whether egregious errors were made. These are best dealt with by disability insurance (patient's burden), but most people don't pre-subscribe to this possibility.
To apply this idea to your two cases, the challenge is to assign adverse outcome to medical care, vrs. trauma vrs. natural history.
Imagine the financial and guilt burden for the family of the child you described. Allow them to dip in the "adverse outcome" well? The kid need extra resources; it doesn't matter where the money comes from .
While I have no answer that would satisfy you or opponents, I do have a couple of thoughts that might fairly be characterized as glib:1. If it weren't for that pesky Seventh Amendment to the United States Constitution, we could just abolish trial by jury.2. "Where there is law, there is injustice" (from Oliver Twist, I think).
What is amazing is that there are 2 "experts" willing to testify against the care you (or whomever) provided. Kind of negates comment of lawyer anonymous..."No matter how poor of skills the physician community thinks one of their own has, they certainly would never testify against each other"
It is really frustrating to me that you would settle these and "feed the bears". I understand the business decision, but this is a long term war against this insanity.
I belong to a very large group and we vigorously defend these even if it would cost less to settle. As such we have made an indemnity payment in less than 5% of claims.
One of my partners had a case that occurred 1 year before his retirement. It was a bad outcome in which they could bring out a wheelchair bound person in front of the jury. His care was completely standard of care, appropriate and defensible, but he didn't want to go through the mental stress and asked that we settle for policy limits. Since he was retired a "black mark" or data bank entry didn't concern him. (we are self insured). We took it to trial anyway and prevailed.
People need to know this is not the lottery to play. Settleing these cases is wrong in principle and does us no favors in the long run.
BTW, were the doctor involved coerced into settling or did they willingly go along with the idea?
Settling these cases is wrong in principle and does us no favors in the long run.
*Nods* A few little payouts each year and a big payout or two at hundreds of hospitals in hundreds of cities makes us pay hundreds more each month for health insurance and keep many out of the insurance market for many reasons.
PS The Democrats are not doing anything to prevent frivolous lawsuits.
Check this post out to see the idiocy. I linked Slate/Ezra Klein because he's one of your peeps. The Democrats want to reduce medical malpractice payouts by "reducing medical errors". Uh, how would that plan have helped in either of these cases? It's something to say that won't turn the the lawyers against them (Lawyers *Heart* Democrats for this reason).
Tort reform reduces the cost of health care SIGNIFICANTLY. Until then, Shadow, I encourage you to follow in ad's footsteps, smile pretty for the cameras and stick it to plaintiff's attorneys backwards and sideways.
Actually, I'm telling you from actual experience in trying to find an expert in a case with clear liability. I've handled maybe 3 malpractice cases in my life, all except one low damages and all slam dunk liability from the start. Anecdotal, yes. Hearsay, no. Would you testify against someone in your city if you thought there was malpractice?
"And who decides which claims are legit? A negative outcome doesn't always mean malpractice, and malpractice can occur even without a negative outcome."
I agree. Although without damages, you don't have the elements for a prima facie case.
"Res ipsa loquitur, right?"
Not in malpractice. Most state statutes require a testifying expert for professional malpractice.
"I would like him to explain how settling promptly cases liability would prevent frivolous cases from this being filed."
I don't know that it would. I was referring to the comment that the deck was stacked against the doc. That's nonsense. That being said, med mal is about the worst type of case to file a "frivolous" one. It's too damn expensive and the odds are so great against you. Plus the trial lawyers for the defense are usually very good. If you were going to file nonsense cases, you'd be better off filing on car wrecks. That's just basic economics.
"PS The Democrats are not doing anything to prevent frivolous lawsuits."
How does one "prevent" frivolous lawsuits in this context? Is there someone who somehow sees the evidence before the cases are filed and decrees from on high that the circuit clerk should not let them even pay the filing fee?
"Tort reform reduces the cost of health care SIGNIFICANTLY."
Because. . . you say so? How much cheaper is care in California, which has had draconian "reform" for decades, vs. a state like Tennessee, which hasn't decided to let insurance lobbyists decide the value of cases?
"Until then, Shadow, I encourage you to follow in ad's footsteps, smile pretty for the cameras and stick it to plaintiff's attorneys backwards and sideways."
Until, of course, you're the victim of malpractice. Because if it's you, the physician's insurer will surely recognize your greatness and be willing to pay the hundreds of thousands, if not millions, for your future care and lost quality of life? All you'll have to do is ask politely? Maybe in an email?
A friend of mine who is a practicing civil attorney describes jurors as "people too stupid to get out of jury duty". He goes on to discuss how he was trained (in law school) to select jurors with the least education and greatest gullibility.
I'm betting your friend doesn't try many cases. Every experienced trial lawyer, not just paper pusher, will tell you the dumbest thing you can do is think the jury is stupid. And every trial practice training class teaches you the exact opposite of what your friend told you.
Yet multiple western countries have a version of this that work just fine. Imagine. I know the USA is so much different than the rest of the world it won't work here. At least according to you.
"The same as in medicine? I'm guessing not, because when things go wrong in medicine physicians just throw up their hands and say "well, there are some things we just can't control."
According to...you? Since you are so knowldgeable about medicine please to justify your statements with referneces. Otherwise, it is just your opinion. Opinions are like assholes. Everybody has one.Doesn't mean they are worth a damn CJD.
"Yet multiple western countries have a version of this that work just fine."
Which ones? Do tell. When you figure those out let's discuss the pros and cons of those systems.
Are they ones that also have universal healthcare and a deep social safety net, so a debilitating injury caused by malpractice isn't as crushing to your financial life as well as your physical? You guys love to cite other countries' legal systems, even though you know precious little about them, but you never seem to want to adopt the medical systems. Guess it depends on whose ox, eh?
"Since you are so knowldgeable about medicine please to justify your statements with referneces."
Read any physician blog with a post discussing malpractice. They're replete with "sometimes bad things just happen" comments. Let something bad happen to a physician, however, and you guys are calling for Constitutional amendments! I agree with you, though, I don't think that position is worth much.
"The problem is not that doctors win 87% of the time, nor that awards are out of control. The problem is that juries are unpredictable and commonly make very wrong decisions."
My problem with professional juries, or medical courts, is like my problem with my own opinions about nuclear power. I am very pro-nuclear power, and was trained by the Navy and the civilian nuclear power industry. So, what does the second part make you think about the opinion expressed in the first part. On the one hand, I know more about nuclear power than your college tree hugger. On the other hand, I have to admit my information has all come from sources interested in the survival of nuclear power.
Perhaps you could have lay juries make specific findings of fact and then MDJD Administrative Law Judges could make findings of law with regard to causation and damage.
I don't know.
What percentage of our health care costs are related to malpractice payments/insurance? What percentage of the payments are wrong?
What percentage of our health care costs are related to malpractice payments/insurance?
your question is so logical, but unanswerable. From time to time, someone tries to study this , but it is impossible. The cost of defensive testing , some of which leads to more testing and more procedures is enormous and unfathomable. For (almost) every clinical question presented to a doctor, s/he inevitably acts or tests or talks in a defensive way. It is deeply embedded in the way we think. Honestly, I feel doctors don't think well because we are so defensive-skewed and tortured by the need to generate defensive charts.
Not only is the cost of defensive testing impossible to measure, the term is impossible to define. And even more oddly, physicians claim they do it all the time, but none of them have a clue if it works, or if it does, what amount their risk is reduced. Frankly, few even have any concept of their risk. Yet we're supposed to make policy decisions with such little info based on these claims?
I agree with anonymous's first comments and then with the comments of ad. And I'm an academic economist rather than an attorney.
In my local area, the defendants fight all claims. The plaintiff attorneys know this.
Your decisions to settle because of anecdotal instances of large awards described in newspapers is nuts and not based in any legal or law and economics research. Thinking of your actions using game theory in a world of repeated games, you are just setting your self up for more and more lawsuits in the future by getting a reputation for making six figure payouts for frivolous claims. You have a Sue Me Now sign on the back of your jacket.
I consider the settling of a weak case to be treason to clinical care. One must hire a personal lawyer to totally terrorize the insurance defense attorney, the insurance company, the plaintiff, the plaintiff lawyer, and the judge.
You must demand total e-discovery and put all enemies of clinical care through the wringer.
One should continually file ethics complaints against the plaintiff lawyer, the plaintiff expert.
One must countersue where possible. One should file a cross claim against all co-defendant to prevent any from settling without permission.
One must insist that the plaintiff get excluded from the trial to avoid the emotional reaction.
One has to appeal the case as far as it takes.
If one does that, the land pirates do not come back. This is painful, but an investment in the future. The more inflicted, the longer it will take for the land pirates to return.
The defendant doctor has no chance of persuading the treasonous insurance company defense attorney of this tactic. The latter wants the longest trial possible to break even. He does not want to do anything that will end the trial halfway. That is why it is imperative to hire a personal attorney who can "persuade" this insurance company lawyer, especially if specializing in legal malpractice lawsuits.
Shadowfax
About me: I am an ER physician and administrator living in the Pacific Northwest. I live with my wife and four kids. Various other interests include Shorin-ryu karate, general aviation, Irish music, Apple computers, and progressive politics. My kids do their best to ensure that I have little time to pursue these hobbies.
Disclaimer
This blog is for general discussion, education, entertainment and amusement. Nothing written here constitutes medical advice nor are any hypothetical cases discussed intended to be construed as medical advice. Please do not contact me with specific medical questions or concerns. All clinical cases on this blog are presented for educational or general interest purposes and every attempt has been made to ensure that patient confidentiality and HIPAA are respected. All cases are fictionalized, either in part or in whole, depending on how much I needed to embellish to make it a good story to protect patient privacy.
All Content is Copyright of the author, and reproduction is prohibited without permission. | [
1,
29871,
29900,
29955,
3111,
29871,
29906,
29900,
29900,
29947,
13,
13,
4806,
17141,
1023,
4307,
2146,
1169,
445,
12616,
29889,
512,
9561,
750,
727,
1063,
16083,
3480,
3473,
663,
29889,
739,
29915,
29879,
5051,
11798,
292,
304,
3604,
280,
4251,
763,
1438,
29892,
541,
372,
29915,
29879,
15040,
29889,
450,
19810,
338,
5096,
287,
2750,
502,
29892,
322,
366,
505,
304,
1207,
278,
1781,
1602,
12112,
29892,
1584,
746,
372,
338,
22773,
29889,
13,
13,
29933,
720,
4251,
892,
3755,
20837,
29889,
512,
697,
29892,
727,
471,
263,
360,
29963,
29911,
24876,
2662,
322,
14914,
5034,
304,
13457,
9608,
1192,
4482,
13206,
16637,
7688,
540,
862,
262,
322,
9558,
304,
1370,
15641,
262,
29889,
450,
16500,
3512,
373,
304,
505,
263,
9505,
3712,
653,
953,
2095,
375,
322,
24776,
1597,
794,
3730,
411,
694,
594,
3901,
8617,
3100,
29872,
29889,
1334,
871,
17141,
1363,
372,
471,
923,
7202,
1135,
2675,
304,
14260,
29889,
1094,
11798,
292,
408,
372,
471,
304,
5146,
29892,
591,
1258,
505,
278,
26470,
310,
13797,
393,
278,
2174,
524,
2593,
29915,
29879,
1098,
25252,
3614,
263,
6410,
373,
278,
1206,
29889,
313,
3112,
471,
263,
1407,
2319,
282,
1534,
29892,
322,
670,
10223,
7606,
1518,
11259,
892,
15620,
1846,
13,
13,
1576,
916,
1206,
338,
901,
10395,
1145,
292,
29889,
319,
1407,
4123,
2278,
471,
13700,
373,
670,
2343,
29892,
17654,
385,
321,
5935,
3631,
298,
4579,
4125,
29892,
607,
471,
24876,
2662,
373,
26637,
29892,
322,
278,
2278,
471,
18440,
304,
263,
14014,
1020,
10859,
4818,
29889,
940,
24776,
29892,
2466,
411,
777,
7426,
310,
452,
2192,
19227,
766,
3097,
29889,
450,
2174,
524,
28324,
25993,
3006,
2440,
304,
934,
5384,
29897,
322,
16831,
287,
393,
777,
9461,
628,
1036,
297,
26637,
322,
6782,
892,
278,
4556,
310,
278,
4319,
21957,
29889,
910,
338,
12879,
26652,
375,
29889,
1205,
591,
6363,
896,
892,
2675,
304,
18875,
263,
17294,
29899,
16846,
4063,
26397,
297,
4565,
310,
278,
432,
2857,
29889,
450,
4188,
22342,
310,
19035,
445,
1206,
471,
7282,
363,
393,
2769,
7432,
29892,
322,
278,
12045,
310,
263,
4802,
282,
1534,
471,
7282,
29889,
1105,
591,
17141,
297,
278,
7145,
4832,
13994,
29889,
306,
298,
630,
304,
3604,
280,
29892,
322,
10205,
839,
411,
278,
10608,
29892,
541,
411,
11099,
583,
3907,
1602,
12112,
29892,
372,
29915,
29879,
263,
274,
2390,
15049,
29892,
322,
896,
5718,
2705,
5751,
297,
7853,
310,
17520,
7492,
2174,
524,
28324,
29889,
13,
13,
5618,
508,
591,
437,
29973,
1932,
366,
526,
472,
612,
4743,
12734,
29892,
896,
2649,
366,
451,
304,
8343,
278,
367,
1503,
1363,
372,
925,
18443,
267,
963,
29889,
1205,
393,
1539,
481,
2015,
1838,
29915,
29873,
664,
746,
278,
8671,
338,
304,
1235,
278,
11460,
611,
352,
366,
322,
4966,
393,
540,
2113,
29915,
29873,
679,
599,
310,
596,
9687,
29889,
13,
13,
1576,
1855,
1108,
3508,
29915,
29873,
393,
1438,
480,
1169,
892,
285,
1150,
324,
681,
29889,
306,
1016,
29915,
29873,
2289,
1073,
825,
393,
1734,
2794,
29889,
306,
437,
1073,
896,
892,
2362,
6393,
29889,
450,
1108,
338,
393,
278,
14578,
21321,
526,
337,
552,
371,
411,
4251,
988,
727,
338,
263,
12176,
432,
2857,
9862,
297,
4251,
988,
727,
471,
694,
4439,
29886,
1461,
625,
29889,
910,
338,
825,
9013,
778,
502,
29892,
322,
18120,
9906,
920,
1784,
916,
16083,
6471,
29892,
304,
3604,
280,
4251,
607,
892,
1532,
29899,
3179,
839,
29889,
1932,
727,
338,
694,
19869,
1546,
3692,
3480,
3473,
663,
10761,
322,
3692,
366,
5401,
470,
14074,
29892,
278,
871,
3516,
519,
13705,
338,
304,
5839,
596,
285,
5861,
1407,
1407,
16112,
29889,
13,
13,
29903,
6574,
368,
29901,
365,
388,
11099,
583,
526,
451,
18698,
304,
1207,
3683,
3381,
310,
3269,
362,
29889,
13,
13,
5618,
12234,
5930,
338,
393,
278,
1023,
11192,
2198,
868,
14067,
17924,
16277,
267,
1058,
4974,
5220,
1166,
635,
297,
23712,
20801,
29889,
450,
432,
2857,
338,
769,
2175,
304,
11097,
607,
471,
901,
6625,
1821,
29889,
1128,
278,
23927,
526,
896,
7424,
304,
11097,
607,
310,
1023,
953,
8946,
29892,
3390,
287,
16274,
14722,
338,
1492,
29973,
1932,
16083,
2902,
1372,
22941,
929,
29892,
920,
373,
8437,
508,
443,
287,
1682,
630,
6568,
6774,
787,
11097,
7913,
2486,
825,
20016,
2667,
3480,
3473,
296,
6030,
29973,
960,
278,
2174,
524,
2593,
6423,
470,
471,
2775,
368,
527,
862,
1000,
408,
385,
21957,
29892,
393,
297,
1191,
29884,
2197,
4768,
2129,
263,
432,
2857,
304,
5251,
393,
376,
14481,
1818,
505,
7695,
2743,
1699,
322,
1009,
1147,
8977,
29879,
437,
10331,
304,
18088,
29889,
13,
13,
29902,
626,
884,
9543,
393,
278,
26406,
12379,
2234,
297,
1784,
470,
1556,
4439,
29886,
1461,
625,
8820,
29889,
1763,
592,
29892,
445,
338,
451,
385,
4221,
362,
393,
278,
1788,
1736,
29889,
751,
568,
278,
11564,
29889,
1670,
505,
1063,
4251,
310,
607,
306,
471,
22345,
9543,
297,
607,
278,
2562,
471,
9436,
1014,
15770,
541,
278,
26406,
2902,
1372,
892,
901,
17953,
3277,
322,
278,
432,
2857,
3512,
3412,
29889,
450,
1108,
338,
451,
393,
437,
14359,
5401,
29871,
29947,
29955,
29995,
310,
278,
931,
29892,
3643,
393,
24441,
526,
714,
310,
2761,
29889,
450,
1108,
338,
393,
11099,
583,
526,
443,
27711,
519,
322,
15574,
1207,
1407,
2743,
1602,
12112,
29889,
450,
1121,
310,
445,
338,
393,
297,
1784,
4251,
22069,
1058,
892,
28606,
748,
443,
2388,
575,
630,
313,
267,
25009,
565,
896,
526,
451,
17520,
7492,
6879,
9893,
511,
322,
393,
437,
14359,
1058,
892,
451,
13949,
29886,
519,
8805,
701,
19035,
29889,
13,
13,
10401,
727,
338,
451,
1781,
19869,
1546,
3269,
362,
322,
1147,
8977,
29879,
29892,
278,
1788,
20074,
12435,
29889,
306,
1348,
393,
16263,
11736,
338,
18853,
29889,
1205,
306,
437,
451,
10734,
7853,
26091,
29889,
315,
2547,
526,
1067,
6762,
29891,
322,
9416,
29899,
3179,
287,
29889,
12808,
29892,
26091,
373,
24441,
437,
451,
679,
472,
278,
5192,
310,
278,
1108,
29892,
607,
338,
278,
11472,
322,
2117,
29878,
14803,
10608,
29899,
28990,
15038,
310,
11099,
583,
29889,
739,
29915,
29879,
925,
408,
1532,
29892,
1363,
26091,
526,
408,
7123,
408,
263,
437,
1398,
737,
29892,
2832,
1711,
13590,
29889,
306,
723,
763,
304,
1074,
385,
8671,
1650,
29889,
306,
723,
5821,
4266,
9045,
2562,
28033,
470,
777,
916,
1788,
607,
14734,
304,
11157,
278,
13600,
310,
6577,
29887,
4110,
29889,
13,
13,
29906,
29955,
6589,
29901,
13,
13,
3112,
5692,
393,
1784,
310,
1438,
4307,
2146,
1169,
526,
12359,
6742,
491,
278,
2174,
524,
28324,
304,
10431,
22874,
403,
963,
363,
278,
23023,
1848,
6788,
310,
2534,
263,
3942,
4509,
411,
263,
766,
3097,
29889,
8449,
491,
278,
982,
29892,
297,
278,
5001,
310,
17202,
310,
17208,
29892,
338,
451,
22964,
3276,
297,
738,
982,
29892,
8267,
470,
883,
541,
363,
777,
2769,
4076,
963,
263,
7037,
18387,
2769,
363,
278,
766,
3097,
3265,
1135,
2534,
304,
298,
19144,
1009,
6788,
373,
278,
1863,
2556,
1139,
310,
2020,
29889,
853,
6477,
403,
322,
16403,
363,
278,
900,
2039,
1058,
1258,
1009,
1407,
1900,
297,
1559,
292,
363,
278,
2022,
871,
304,
679,
8370,
2986,
297,
278,
3700,
491,
900,
2039,
1058,
508,
29915,
29873,
5376,
29889,
13,
13,
29896,
29889,
376,
1576,
19810,
338,
5096,
287,
2750,
502,
1213,
2193,
338,
1597,
339,
440,
542,
635,
2089,
29889,
960,
5019,
29892,
278,
19810,
338,
5096,
287,
2750,
278,
2174,
524,
2593,
29892,
17126,
310,
278,
25204,
326,
4135,
310,
278,
5995,
29889,
887,
723,
1348,
263,
2174,
524,
2593,
411,
263,
1781,
5995,
723,
3763,
367,
12530,
491,
278,
1283,
2548,
6263,
470,
1009,
1663,
9945,
322,
4337,
373,
29889,
1205,
1584,
297,
4251,
310,
2821,
619,
3097,
393,
29915,
29879,
451,
278,
1206,
29889,
3824,
29892,
278,
13113,
674,
1067,
314,
701,
29892,
17231,
278,
3273,
1002,
1082,
310,
27028,
674,
1065,
29889,
1105,
1286,
896,
505,
304,
1284,
263,
25008,
29892,
607,
896,
27581,
1016,
29915,
29873,
4480,
2086,
1472,
304,
437,
1363,
565,
372,
29915,
29879,
2629,
29871,
29929,
29900,
3841,
310,
278,
1002,
1082,
2734,
313,
392,
1556,
6568,
25719,
505,
694,
2969,
746,
372,
6057,
29897,
896,
674,
505,
18677,
14656,
9138,
385,
1098,
25252,
29889,
1987,
896,
3117,
505,
304,
748,
1549,
3196,
1098,
952,
1363,
2846,
437,
1612,
4439,
29889,
8084,
896,
505,
304,
4480,
1550,
278,
472,
1017,
4947,
263,
8799,
292,
17924,
304,
9076,
278,
1206,
448,
451,
263,
1243,
9215,
697,
448,
925,
4856,
304,
9076,
322,
1827,
376,
354,
29891,
29892,
727,
29915,
29879,
3307,
1244,
304,
2050,
2675,
6375,
1213,
910,
338,
278,
937,
2022,
393,
3926,
10603,
278,
2174,
524,
2593,
3099,
1048,
825,
2869,
9559,
29892,
322,
896,
4049,
1827,
694,
1206,
29889,
13,
13,
9190,
29892,
278,
1098,
25252,
756,
304,
1925,
278,
1663,
9945,
373,
8369,
29892,
1058,
2012,
310,
3604,
1847,
29892,
674,
972,
29891,
619,
3097,
17126,
310,
12570,
12234,
29889,
3423,
25009,
565,
727,
526,
2919,
5625,
1179,
29889,
8084,
29892,
278,
1098,
25252,
756,
304,
29892,
297,
777,
5922,
29892,
1284,
385,
17924,
17762,
304,
748,
373,
2407,
408,
5934,
372,
471,
4439,
29886,
1461,
625,
29892,
322,
697,
1058,
338,
263,
27189,
16277,
29889,
1939,
4383,
920,
6460,
310,
25078,
278,
4824,
8910,
7881,
22405,
697,
310,
1009,
1914,
756,
29892,
896,
8959,
723,
2360,
1243,
1598,
2750,
1269,
916,
29889,
13,
13,
11760,
278,
2174,
524,
2593,
674,
748,
1549,
472,
3203,
3971,
20699,
322,
1556,
5517,
263,
316,
3283,
393,
18469,
1432,
10696,
310,
670,
2834,
29892,
515,
12060,
304,
278,
2635,
310,
316,
1129,
29889,
3446,
264,
278,
1663,
9945,
674,
864,
1612,
11685,
988,
896,
29915,
645,
2041,
297,
322,
5649,
2020,
540,
29915,
29879,
2691,
322,
1009,
1663,
2955,
338,
22635,
368,
29889,
13,
13,
2855,
565,
278,
2174,
524,
2593,
947,
679,
263,
14260,
29892,
278,
4824,
8910,
1603,
21614,
29871,
29955,
29945,
29995,
310,
278,
931,
29889,
6439,
21915,
29892,
322,
599,
445,
931,
565,
540,
29914,
11360,
508,
29915,
29873,
664,
1009,
289,
6090,
526,
282,
6504,
701,
322,
896,
1122,
367,
14870,
9124,
6685,
1270,
29892,
451,
304,
3585,
278,
22884,
322,
6788,
515,
278,
24092,
29889,
1105,
920,
3721,
338,
278,
19810,
5096,
287,
2750,
278,
1574,
29973,
13,
13,
29906,
29889,
376,
1576,
4188,
22342,
310,
19035,
445,
1206,
471,
7282,
363,
393,
2769,
7432,
29892,
322,
278,
12045,
310,
263,
4802,
282,
1534,
471,
7282,
1213,
13,
13,
5328,
7282,
29973,
1724,
3721,
526,
278,
7736,
29879,
297,
596,
6003,
434,
29973,
1938,
366,
1073,
29973,
13,
13,
29941,
29889,
376,
354,
1108,
338,
393,
278,
14578,
21321,
526,
337,
552,
371,
411,
4251,
988,
727,
338,
263,
12176,
432,
2857,
9862,
297,
4251,
988,
727,
471,
694,
4439,
29886,
1461,
625,
1213,
13,
13,
17565,
29892,
1244,
29915,
29879,
278,
1108,
29889,
450,
2305,
297,
8323,
310,
746,
366,
3604,
280,
526,
773,
385,
687,
6333,
284,
10757,
515,
29091,
5550,
3301,
23598,
304,
1207,
1009,
1602,
12112,
29889,
12391,
3458,
278,
2114,
393,
263,
19656,
1320,
6090,
263,
4723,
5426,
14260,
964,
263,
1897,
29889,
1394,
278,
2114,
393,
366,
5251,
393,
5998,
8955,
2879,
2360,
679,
16083,
5626,
1492,
896,
7124,
11706,
6743,
1492,
373,
278,
26414,
29889,
1394,
393,
278,
5253,
263,
432,
2857,
24441,
1122,
451,
367,
3099,
2978,
278,
3935,
282,
1534,
29889,
960,
306,
892,
5146,
292,
964,
596,
1788,
322,
445,
471,
278,
8405,
2501,
607,
366,
892,
3604,
1847,
4251,
306,
723,
864,
590,
6909,
1250,
29889,
13,
13,
2887,
363,
596,
6851,
448,
1244,
29915,
29879,
263,
2253,
697,
448,
5146,
25204,
16726,
9508,
368,
29889,
12630,
376,
354,
4298,
28033,
29908,
526,
302,
787,
1947,
29889,
3824,
29892,
278,
24963,
366,
1544,
304,
338,
925,
1250,
17433,
18658,
26091,
448,
1303,
372,
29889,
13103,
7197,
338,
1065,
491,
263,
18096,
472,
278,
304,
29890,
17970,
13661,
29915,
29879,
1667,
4307,
9226,
322,
540,
29915,
29879,
1063,
1009,
658,
1327,
29891,
391,
363,
2440,
29889,
1938,
366,
2289,
1348,
896,
29915,
276,
8852,
297,
3907,
1854,
901,
28606,
2305,
679,
12530,
322,
12530,
4996,
261,
29973,
6440,
29892,
1058,
338,
2675,
304,
5146,
363,
1438,
4266,
9045,
28033,
29973,
1126,
825,
674,
372,
3438,
29973,
1126,
3721,
920,
526,
366,
2675,
304,
7945,
6577,
2710,
577,
896,
29915,
645,
367,
29892,
297,
596,
9426,
29892,
901,
16232,
29973,
2811,
1269,
2106,
505,
263,
16833,
363,
1269,
4266,
1017,
1058,
696,
2232,
2820,
1811,
4251,
29973,
13,
13,
3492,
1827,
372,
29915,
29879,
2821,
278,
1857,
1788,
338,
263,
376,
29885,
7608,
519,
10672,
1213,
15175,
596,
871,
1650,
338,
13229,
1554,
366,
7359,
29915,
29873,
1584,
12399,
470,
2714,
1048,
297,
738,
9493,
29889,
1763,
2304,
596,
5995,
366,
2367,
502,
3078,
541,
385,
687,
6333,
284,
10757,
29889,
887,
1827,
11099,
583,
526,
443,
27711,
519,
322,
376,
2055,
6194,
29908,
1207,
278,
2743,
10608,
29973,
910,
338,
1565,
1363,
29889,
869,
869,
366,
1827,
577,
29973,
1724,
3233,
310,
13600,
437,
366,
1996,
29973,
450,
1021,
408,
297,
26602,
29973,
306,
29915,
29885,
20680,
451,
29892,
1363,
746,
2712,
748,
2743,
297,
26602,
4824,
14722,
925,
3183,
701,
1009,
6567,
322,
1827,
376,
5872,
29892,
727,
526,
777,
2712,
591,
925,
508,
29915,
29873,
2761,
1213,
13,
13,
3112,
5692,
366,
817,
304,
1348,
1048,
445,
2228,
263,
2217,
901,
1434,
366,
748,
13185,
928,
1218,
29892,
1363,
1492,
1286,
366,
29915,
276,
925,
6820,
502,
23407,
1663,
18541,
5001,
9963,
3291,
29889,
13,
13,
2855,
306,
4997,
2020,
16083,
21544,
526,
1549,
278,
17526,
470,
393,
1784,
297,
9045,
18020,
1438,
3841,
313,
5031,
10070,
322,
10561,
29897,
4459,
393,
278,
376,
26029,
537,
29908,
756,
7695,
714,
310,
372,
29889,
910,
338,
1316,
385,
19901,
27521,
1788,
278,
982,
591,
505,
372,
731,
701,
393,
372,
338,
3216,
304,
4418,
1716,
4824,
8910,
322,
16500,
931,
322,
1449,
3045,
13,
13,
3112,
10083,
763,
21560,
338,
263,
7333,
24092,
25008,
29889,
306,
22941,
929,
411,
1075,
29914,
2276,
373,
2999,
3291,
29889,
13,
13,
3782,
4383,
920,
6460,
310,
25078,
278,
4824,
8910,
7881,
22405,
697,
310,
1009,
1914,
756,
29892,
896,
8959,
723,
2360,
1243,
1598,
2750,
1269,
916,
29889,
13,
13,
2855,
366,
1827,
278,
14578,
21321,
671,
540,
1503,
388,
322,
385,
687,
6333,
284,
10757,
29991,
13,
13,
2887,
363,
596,
6851,
448,
1244,
29915,
29879,
263,
2253,
697,
448,
5146,
25204,
16726,
9508,
368,
29889,
12630,
376,
354,
4298,
28033,
29908,
526,
302,
787,
1947,
29889,
13,
13,
2855,
1058,
1602,
2247,
607,
16726,
526,
25204,
29973,
319,
8178,
21957,
1838,
29915,
29873,
2337,
2099,
4439,
29886,
1461,
625,
29892,
322,
4439,
29886,
1461,
625,
508,
6403,
1584,
1728,
263,
8178,
21957,
29889,
13,
13,
3492,
1298,
304,
278,
7424,
14656,
310,
9138,
385,
17924,
1058,
29915,
29879,
17762,
304,
748,
373,
2407,
322,
1058,
29915,
29879,
884,
263,
376,
16773,
16277,
1213,
960,
372,
29915,
29879,
19781,
4439,
29886,
1461,
625,
29892,
825,
947,
372,
4383,
565,
4856,
29915,
29879,
263,
1781,
16277,
29973,
2538,
474,
567,
29874,
658,
28358,
332,
29892,
1492,
29973,
960,
366,
29915,
276,
337,
5890,
373,
3692,
4856,
508,
1106,
1781,
297,
4565,
310,
263,
432,
2857,
29892,
769,
596,
1206,
338,
2307,
17422,
8734,
29889,
13,
13,
11863,
29892,
1058,
338,
2675,
304,
5146,
363,
1438,
4266,
9045,
28033,
29973,
1126,
825,
674,
372,
3438,
29973,
1126,
3721,
920,
526,
366,
2675,
304,
7945,
6577,
2710,
577,
896,
29915,
645,
367,
29892,
297,
596,
9426,
29892,
901,
16232,
29973,
13,
13,
6730,
310,
599,
29892,
1058,
9744,
363,
372,
1286,
29973,
25735,
1098,
25252,
1238,
267,
2041,
714,
310,
263,
16493,
470,
6577,
29887,
882,
29892,
541,
920,
526,
278,
26377,
21544,
313,
29872,
29889,
29887,
29889,
931,
6919,
5414,
8973,
8345,
29892,
380,
264,
1946,
261,
29915,
29879,
4497,
653,
29892,
2992,
1846,
16459,
29973,
13,
13,
5328,
881,
6577,
2710,
367,
16370,
29973,
5674,
29892,
278,
3086,
8660,
2710,
29915,
20795,
4523,
338,
263,
1369,
29889,
1124,
597,
1636,
29889,
3304,
29899,
465,
29876,
29889,
990,
29914,
2795,
15753,
29914,
29906,
29900,
29900,
29947,
29914,
29900,
29955,
29914,
29906,
29947,
29914,
558,
4977,
29900,
29955,
29906,
29947,
29889,
13357,
13,
13,
29909,
16083,
8973,
1788,
7344,
29879,
19901,
27521,
11909,
29889,
306,
7853,
263,
970,
368,
5220,
287,
29892,
694,
29899,
27934,
29892,
594,
3901,
21957,
1788,
29889,
3834,
594,
3901,
714,
26807,
526,
13312,
443,
485,
3398,
519,
29889,
450,
16500,
29914,
11922,
11460,
263,
9416,
18161,
6866,
1145,
310,
2562,
29892,
17126,
310,
3692,
321,
7642,
2738,
4436,
892,
1754,
29889,
4525,
526,
1900,
316,
1997,
411,
491,
766,
3097,
1663,
18541,
313,
5031,
993,
29915,
29879,
6866,
1145,
511,
541,
1556,
2305,
1016,
29915,
29873,
758,
29899,
19496,
304,
445,
13331,
29889,
13,
13,
1762,
3394,
445,
2969,
304,
596,
1023,
4251,
29892,
278,
18766,
338,
304,
3566,
594,
3901,
21957,
304,
16083,
2562,
29892,
325,
2288,
29889,
1020,
10859,
325,
2288,
29889,
5613,
4955,
29889,
13,
13,
1888,
22094,
278,
18161,
322,
1410,
2782,
6866,
1145,
363,
278,
3942,
310,
278,
2278,
366,
5439,
29889,
29408,
963,
304,
28191,
297,
278,
376,
328,
3901,
21957,
29908,
1532,
29973,
450,
26397,
817,
4805,
7788,
29936,
372,
1838,
29915,
29873,
4383,
988,
278,
6909,
5304,
515,
869,
13,
13,
8809,
488,
306,
505,
694,
1234,
393,
723,
15523,
366,
470,
23995,
1237,
29892,
306,
437,
505,
263,
7303,
310,
13133,
393,
1795,
12558,
367,
2931,
1891,
408,
330,
1982,
29901,
29896,
29889,
960,
372,
2949,
264,
29915,
29873,
363,
393,
8928,
3459,
922,
794,
29882,
1913,
355,
358,
304,
278,
3303,
3900,
20063,
29892,
591,
1033,
925,
25198,
728,
14260,
491,
432,
2857,
29889,
29906,
29889,
376,
11921,
727,
338,
4307,
29892,
727,
338,
297,
5143,
625,
29908,
313,
3166,
19731,
8168,
391,
29892,
306,
1348,
467,
13,
13,
5618,
338,
21863,
292,
338,
393,
727,
526,
29871,
29906,
376,
735,
546,
1372,
29908,
17762,
304,
1243,
1598,
2750,
278,
2562,
366,
313,
272,
377,
608,
369,
29897,
4944,
29889,
13187,
310,
3480,
1078,
3440,
310,
25008,
21560,
17794,
3782,
4383,
920,
6460,
310,
25078,
278,
4824,
8910,
7881,
22405,
697,
310,
1009,
1914,
756,
29892,
896,
8959,
723,
2360,
1243,
1598,
2750,
1269,
916,
29908,
13,
13,
3112,
338,
2289,
1424,
4627,
1218,
304,
592,
393,
366,
723,
3604,
280,
1438,
322,
376,
18798,
278,
367,
1503,
1642,
306,
2274,
278,
5381,
10608,
29892,
541,
445,
338,
263,
1472,
1840,
1370,
2750,
445,
1663,
273,
537,
29889,
13,
13,
29902,
6852,
304,
263,
1407,
2919,
2318,
322,
591,
14877,
272,
5794,
24663,
1438,
1584,
565,
372,
723,
3438,
3109,
304,
3604,
280,
29889,
1094,
1316,
591,
505,
1754,
385,
297,
2310,
29876,
537,
19179,
297,
3109,
1135,
29871,
29945,
29995,
310,
16726,
29889,
13,
13,
6716,
310,
590,
22056,
750,
263,
1206,
393,
10761,
29871,
29896,
1629,
1434,
670,
3240,
19211,
29889,
739,
471,
263,
4319,
21957,
297,
607,
896,
1033,
6963,
714,
263,
18875,
305,
1466,
3216,
2022,
297,
4565,
310,
278,
432,
2857,
29889,
3600,
2562,
471,
6446,
3918,
310,
2562,
29892,
8210,
322,
822,
575,
1821,
29892,
541,
540,
3282,
29915,
29873,
864,
304,
748,
1549,
278,
19119,
22884,
322,
4433,
393,
591,
3604,
280,
363,
8898,
13071,
29889,
4001,
540,
471,
16528,
263,
376,
8517,
2791,
29908,
470,
848,
9124,
6251,
3282,
29915,
29873,
5932,
1075,
29889,
313,
705,
526,
1583,
1663,
2955,
467,
1334,
3614,
372,
304,
14260,
8763,
322,
758,
1564,
2356,
29889,
13,
13,
15666,
1991,
817,
304,
1073,
445,
338,
451,
278,
3287,
22005,
304,
1708,
29889,
317,
1803,
280,
292,
1438,
4251,
338,
2743,
297,
12502,
322,
947,
502,
694,
5025,
943,
297,
278,
1472,
1065,
29889,
13,
13,
29933,
16240,
29892,
892,
278,
11619,
9701,
1302,
261,
1133,
964,
3604,
1847,
470,
1258,
896,
674,
11687,
748,
3412,
411,
278,
2969,
29973,
13,
13,
29903,
1803,
1847,
1438,
4251,
338,
2743,
297,
12502,
322,
947,
502,
694,
5025,
943,
297,
278,
1472,
1065,
29889,
13,
13,
29930,
29940,
19653,
29930,
319,
2846,
2217,
282,
1534,
29879,
1269,
1629,
322,
263,
4802,
282,
1534,
470,
1023,
472,
21006,
310,
29418,
277,
1338,
297,
21006,
310,
14368,
3732,
502,
5146,
21006,
901,
1269,
4098,
363,
9045,
1663,
18541,
322,
3013,
1784,
714,
310,
278,
1663,
18541,
9999,
363,
1784,
9590,
29889,
13,
13,
7024,
450,
14189,
1446,
526,
451,
2599,
3099,
304,
5557,
285,
1150,
324,
681,
4307,
2146,
1169,
29889,
13,
13,
5596,
445,
1400,
714,
304,
1074,
278,
1178,
29875,
22502,
29889,
306,
9024,
317,
9632,
29914,
29923,
29920,
336,
21151,
1363,
540,
29915,
29879,
697,
310,
596,
1236,
8961,
29889,
450,
14189,
1446,
864,
304,
10032,
16083,
4439,
29886,
1461,
625,
282,
1534,
29879,
491,
376,
9313,
3277,
16083,
4436,
1642,
501,
29882,
29892,
920,
723,
393,
3814,
505,
9213,
297,
2845,
310,
1438,
4251,
29973,
739,
29915,
29879,
1554,
304,
1827,
393,
2113,
29915,
29873,
2507,
278,
278,
4307,
29891,
414,
2750,
963,
313,
29931,
1450,
29891,
414,
334,
3868,
442,
29930,
14189,
1446,
363,
445,
2769,
467,
13,
13,
29911,
441,
11736,
26830,
278,
3438,
310,
9045,
2562,
317,
17298,
6545,
2965,
13566,
16786,
29889,
28609,
769,
29892,
1383,
6986,
29892,
306,
13731,
6617,
366,
304,
1101,
297,
594,
29915,
29879,
3661,
24530,
29892,
17819,
5051,
363,
278,
3949,
18464,
322,
12070,
372,
304,
2174,
524,
2593,
29915,
29879,
1098,
272,
484,
952,
28953,
322,
2625,
1994,
29889,
13,
13,
2865,
1474,
29892,
306,
29915,
29885,
14509,
366,
515,
3935,
7271,
297,
1811,
304,
1284,
385,
17924,
297,
263,
1206,
411,
2821,
619,
3097,
29889,
306,
29915,
345,
16459,
5505,
29871,
29941,
4439,
29886,
1461,
625,
4251,
297,
590,
2834,
29892,
599,
5174,
697,
4482,
5625,
1179,
322,
599,
2243,
314,
270,
2960,
619,
3097,
515,
278,
1369,
29889,
319,
484,
3822,
284,
29892,
4874,
29889,
379,
15451,
388,
29892,
694,
29889,
10878,
366,
1243,
1598,
2750,
4856,
297,
596,
4272,
565,
366,
2714,
727,
471,
4439,
29886,
1461,
625,
29973,
13,
13,
29908,
2855,
1058,
1602,
2247,
607,
16726,
526,
25204,
29973,
319,
8178,
21957,
1838,
29915,
29873,
2337,
2099,
4439,
29886,
1461,
625,
29892,
322,
4439,
29886,
1461,
625,
508,
6403,
1584,
1728,
263,
8178,
21957,
1213,
13,
13,
29902,
8661,
29889,
8512,
1728,
5625,
1179,
29892,
366,
1016,
29915,
29873,
505,
278,
3161,
363,
263,
7233,
4024,
347,
1206,
29889,
13,
13,
29908,
1666,
474,
567,
29874,
658,
28358,
332,
29892,
1492,
3026,
13,
13,
3664,
297,
4439,
29886,
1461,
625,
29889,
7849,
2106,
1002,
2667,
1996,
263,
1243,
9215,
17924,
363,
10257,
4439,
29886,
1461,
625,
29889,
13,
13,
29908,
29902,
723,
763,
1075,
304,
5649,
920,
3604,
1847,
9508,
368,
4251,
619,
3097,
723,
5557,
285,
1150,
324,
681,
4251,
515,
445,
1641,
934,
29881,
1213,
13,
13,
29902,
1016,
29915,
29873,
1073,
393,
372,
723,
29889,
306,
471,
16811,
304,
278,
3440,
393,
278,
19810,
471,
5096,
287,
2750,
278,
1574,
29889,
2193,
29915,
29879,
302,
787,
1947,
29889,
2193,
1641,
1497,
29892,
1612,
4439,
338,
1048,
278,
17322,
1134,
310,
1206,
304,
934,
263,
376,
29888,
1150,
324,
681,
29908,
697,
29889,
739,
29915,
29879,
2086,
5625,
29876,
19390,
322,
278,
7736,
29879,
526,
577,
2107,
2750,
366,
29889,
15113,
278,
14260,
4307,
29891,
414,
363,
278,
26406,
526,
5491,
1407,
1781,
29889,
960,
366,
892,
2675,
304,
934,
302,
787,
1947,
4251,
29892,
366,
29915,
29881,
367,
2253,
1283,
977,
292,
373,
1559,
281,
276,
4684,
29889,
2193,
29915,
29879,
925,
6996,
7766,
1199,
29889,
13,
13,
29908,
7024,
450,
14189,
1446,
526,
451,
2599,
3099,
304,
5557,
285,
1150,
324,
681,
4307,
2146,
1169,
1213,
13,
13,
5328,
947,
697,
376,
18921,
29908,
285,
1150,
324,
681,
4307,
2146,
1169,
297,
445,
3030,
29973,
1317,
727,
4856,
1058,
10431,
18553,
278,
10757,
1434,
278,
4251,
526,
934,
29881,
322,
9263,
267,
515,
373,
1880,
393,
278,
11369,
1067,
5968,
881,
451,
1235,
963,
1584,
5146,
278,
977,
292,
27684,
29973,
13,
13,
29908,
29911,
441,
11736,
26830,
278,
3438,
310,
9045,
2562,
317,
17298,
6545,
2965,
13566,
16786,
1213,
13,
13,
29933,
5658,
29889,
869,
869,
366,
1827,
577,
29973,
1128,
1568,
923,
7202,
338,
2562,
297,
8046,
29892,
607,
756,
750,
7482,
535,
713,
376,
276,
689,
29908,
363,
1602,
3076,
29892,
7186,
29889,
263,
2106,
763,
22664,
29892,
607,
22602,
29915,
29873,
8459,
304,
1235,
1663,
18541,
658,
1327,
29891,
2879,
11097,
278,
995,
310,
4251,
29973,
13,
13,
29908,
29965,
20233,
769,
29892,
1383,
6986,
29892,
306,
13731,
6617,
366,
304,
1101,
297,
594,
29915,
29879,
3661,
24530,
29892,
17819,
5051,
363,
278,
3949,
18464,
322,
12070,
372,
304,
2174,
524,
2593,
29915,
29879,
1098,
272,
484,
952,
28953,
322,
2625,
1994,
1213,
13,
13,
29965,
20233,
29892,
310,
3236,
29892,
366,
29915,
276,
278,
28985,
310,
4439,
29886,
1461,
625,
29889,
7311,
565,
372,
29915,
29879,
366,
29892,
278,
4824,
8910,
29915,
29879,
1663,
9945,
674,
18880,
18720,
596,
2107,
2264,
322,
367,
17762,
304,
5146,
278,
21006,
310,
17202,
29892,
565,
451,
14746,
29892,
363,
596,
5434,
2562,
322,
5714,
11029,
310,
2834,
29973,
2178,
366,
29915,
645,
505,
304,
437,
338,
2244,
2832,
873,
29973,
7198,
297,
385,
4876,
29973,
13,
13,
29909,
5121,
310,
7903,
1058,
338,
263,
4120,
18499,
7631,
1098,
25252,
16612,
11099,
943,
408,
376,
25719,
2086,
20239,
304,
679,
714,
310,
432,
2857,
13360,
1642,
940,
5771,
373,
304,
5353,
920,
540,
471,
16370,
313,
262,
4307,
3762,
29897,
304,
1831,
11099,
943,
411,
278,
3203,
9793,
322,
14176,
330,
352,
1982,
1793,
29889,
13,
13,
29902,
29915,
29885,
1010,
1259,
596,
5121,
1838,
29915,
29873,
1018,
1784,
4251,
29889,
7569,
18860,
14260,
25008,
29892,
451,
925,
5650,
5503,
261,
29892,
674,
2649,
366,
278,
270,
3774,
342,
2655,
366,
508,
437,
338,
1348,
278,
432,
2857,
338,
20239,
29889,
1126,
1432,
14260,
6944,
6694,
770,
6860,
267,
366,
278,
2684,
11564,
310,
825,
596,
5121,
5429,
366,
29889,
13,
13,
29979,
300,
2999,
15782,
10916,
505,
263,
1873,
310,
445,
393,
664,
925,
2691,
29889,
1954,
22094,
29889,
306,
1073,
278,
8278,
338,
577,
1568,
1422,
1135,
278,
1791,
310,
278,
3186,
372,
2113,
29915,
29873,
664,
1244,
29889,
2180,
3203,
5034,
304,
366,
29889,
13,
13,
29908,
1576,
1021,
408,
297,
26602,
29973,
306,
29915,
29885,
20680,
451,
29892,
1363,
746,
2712,
748,
2743,
297,
26602,
4824,
14722,
925,
3183,
701,
1009,
6567,
322,
1827,
376,
5872,
29892,
727,
526,
777,
2712,
591,
925,
508,
29915,
29873,
2761,
1213,
13,
13,
7504,
3278,
304,
856,
6293,
29973,
4001,
366,
526,
577,
1073,
430,
479,
519,
1048,
26602,
3113,
304,
26922,
596,
9506,
411,
2737,
484,
778,
29889,
13466,
29892,
372,
338,
925,
596,
9426,
29889,
6461,
262,
1080,
526,
763,
408,
845,
6544,
29889,
7569,
2587,
756,
697,
29889,
25125,
29876,
29915,
29873,
2099,
896,
526,
7088,
263,
5625,
29876,
315,
29967,
29928,
29889,
13,
13,
29908,
29979,
300,
2999,
15782,
10916,
505,
263,
1873,
310,
445,
393,
664,
925,
2691,
1213,
13,
13,
8809,
436,
6743,
29973,
1938,
2649,
29889,
1932,
366,
4377,
1906,
714,
1235,
29915,
29879,
5353,
278,
10791,
322,
1136,
310,
1906,
6757,
29889,
13,
13,
17506,
896,
6743,
393,
884,
505,
15968,
9045,
18020,
322,
263,
6483,
5264,
15332,
7787,
29892,
577,
263,
2553,
309,
277,
1218,
24092,
8581,
491,
4439,
29886,
1461,
625,
3508,
29915,
29873,
408,
2181,
21616,
304,
596,
18161,
2834,
408,
1532,
408,
596,
9128,
29973,
887,
18239,
5360,
304,
274,
568,
916,
10916,
29915,
11706,
6757,
29892,
1584,
2466,
366,
1073,
758,
8802,
2217,
1048,
963,
29892,
541,
366,
2360,
2833,
304,
864,
304,
9332,
278,
16083,
6757,
29889,
2088,
404,
372,
7111,
373,
5069,
19100,
29892,
321,
29882,
29973,
13,
13,
29908,
23036,
366,
526,
577,
1073,
430,
479,
519,
1048,
26602,
3113,
304,
26922,
596,
9506,
411,
2737,
484,
778,
1213,
13,
13,
6359,
738,
4824,
8910,
12618,
411,
263,
1400,
5353,
292,
4439,
29886,
1461,
625,
29889,
2688,
29915,
276,
337,
552,
371,
411,
376,
29879,
14618,
4319,
2712,
925,
3799,
29908,
6589,
29889,
2803,
1554,
4319,
3799,
304,
263,
4824,
8910,
29892,
3138,
29892,
322,
366,
18239,
526,
5432,
363,
20063,
284,
626,
355,
1860,
29991,
306,
8661,
411,
366,
29892,
2466,
29892,
306,
1016,
29915,
29873,
1348,
393,
2602,
338,
7088,
1568,
29889,
13,
13,
29908,
1576,
1108,
338,
451,
393,
437,
14359,
5401,
29871,
29947,
29955,
29995,
310,
278,
931,
29892,
3643,
393,
24441,
526,
714,
310,
2761,
29889,
450,
1108,
338,
393,
11099,
583,
526,
443,
27711,
519,
322,
15574,
1207,
1407,
2743,
1602,
12112,
1213,
13,
13,
3421,
1108,
411,
10257,
11099,
583,
29892,
470,
16083,
28033,
29892,
338,
763,
590,
1108,
411,
590,
1914,
26971,
1048,
20346,
3081,
29889,
306,
626,
1407,
410,
29899,
29876,
1682,
1945,
3081,
29892,
322,
471,
16370,
491,
278,
13166,
322,
278,
7631,
713,
20346,
3081,
13661,
29889,
1105,
29892,
825,
947,
278,
1473,
760,
1207,
366,
1348,
1048,
278,
9426,
13384,
297,
278,
937,
760,
29889,
1551,
278,
697,
1361,
29892,
306,
1073,
901,
1048,
20346,
3081,
1135,
596,
12755,
5447,
298,
688,
914,
29889,
1551,
278,
916,
1361,
29892,
306,
505,
304,
20000,
590,
2472,
756,
599,
2041,
515,
8974,
8852,
297,
278,
10503,
2561,
310,
20346,
3081,
29889,
13,
13,
5894,
4252,
366,
1033,
505,
6568,
11099,
583,
1207,
2702,
1284,
886,
310,
2114,
322,
769,
20672,
29967,
29928,
24510,
1230,
7927,
8660,
2710,
1033,
1207,
1284,
886,
310,
4307,
411,
4880,
304,
3269,
362,
322,
18658,
29889,
13,
13,
29902,
1016,
29915,
29873,
1073,
29889,
13,
13,
5618,
19649,
310,
1749,
9045,
2562,
21544,
526,
4475,
304,
4439,
29886,
1461,
625,
5146,
1860,
29914,
1144,
18541,
29973,
1724,
19649,
310,
278,
5146,
1860,
526,
2743,
29973,
13,
13,
5618,
19649,
310,
1749,
9045,
2562,
21544,
526,
4475,
304,
4439,
29886,
1461,
625,
5146,
1860,
29914,
1144,
18541,
29973,
13,
13,
8066,
1139,
338,
577,
16667,
29892,
541,
443,
12011,
519,
29889,
3645,
931,
304,
931,
29892,
4856,
14335,
304,
6559,
445,
1919,
541,
372,
338,
9301,
29889,
450,
3438,
310,
822,
6270,
6724,
1919,
777,
310,
607,
11981,
304,
901,
6724,
322,
901,
28648,
338,
18886,
681,
322,
29395,
493,
290,
519,
29889,
1152,
313,
284,
3242,
29897,
1432,
24899,
936,
1139,
9132,
304,
263,
11619,
29892,
269,
29914,
354,
297,
5750,
277,
2197,
14741,
470,
6987,
470,
5969,
2039,
297,
263,
822,
6270,
982,
29889,
739,
338,
24344,
15685,
297,
278,
982,
591,
1348,
29889,
7906,
342,
368,
29892,
306,
4459,
437,
14359,
1016,
29915,
29873,
1348,
1532,
1363,
591,
526,
577,
822,
6270,
29899,
26050,
8734,
322,
16263,
2955,
491,
278,
817,
304,
5706,
822,
6270,
24469,
29889,
13,
13,
3664,
871,
338,
278,
3438,
310,
822,
6270,
6724,
9301,
304,
5645,
29892,
278,
1840,
338,
9301,
304,
4529,
29889,
1126,
1584,
901,
7736,
368,
29892,
4824,
14722,
5995,
896,
437,
372,
599,
278,
931,
29892,
541,
5642,
310,
963,
505,
263,
23960,
565,
372,
1736,
29892,
470,
565,
372,
947,
29892,
825,
5253,
1009,
12045,
338,
12212,
29889,
4976,
368,
29892,
2846,
1584,
505,
738,
6964,
310,
1009,
12045,
29889,
15175,
591,
29915,
276,
7424,
304,
1207,
8898,
1602,
12112,
411,
1316,
2217,
5235,
2729,
373,
1438,
16726,
29973,
13,
13,
29902,
8661,
411,
21560,
29915,
29879,
937,
6589,
322,
769,
411,
278,
6589,
310,
594,
29889,
1126,
306,
29915,
29885,
385,
21567,
7766,
391,
3265,
1135,
385,
1098,
25252,
29889,
13,
13,
797,
590,
1887,
4038,
29892,
278,
24663,
1934,
8589,
599,
16726,
29889,
450,
2174,
524,
2593,
1098,
272,
484,
952,
1073,
445,
29889,
13,
13,
10858,
1602,
12112,
304,
3604,
280,
1363,
310,
385,
687,
6333,
284,
8871,
310,
2919,
24441,
5439,
297,
14578,
21321,
338,
302,
8842,
322,
451,
2729,
297,
738,
11706,
470,
4307,
322,
7766,
1199,
5925,
29889,
498,
18159,
310,
596,
8820,
773,
3748,
6368,
297,
263,
3186,
310,
10324,
8090,
29892,
366,
526,
925,
4444,
596,
1583,
701,
363,
901,
322,
901,
4307,
2146,
1169,
297,
278,
5434,
491,
2805,
263,
19821,
363,
3907,
4832,
4377,
282,
1534,
29879,
363,
285,
1150,
324,
681,
16726,
29889,
887,
505,
263,
28674,
2191,
2567,
1804,
373,
278,
1250,
310,
596,
28015,
300,
29889,
13,
13,
29902,
2050,
278,
3604,
1847,
310,
263,
8062,
1206,
304,
367,
2578,
1658,
304,
24899,
936,
2562,
29889,
3118,
1818,
298,
533,
263,
7333,
25008,
304,
14909,
15115,
675,
278,
1663,
18541,
26406,
1098,
25252,
29892,
278,
1663,
18541,
5001,
29892,
278,
2174,
524,
2593,
29892,
278,
2174,
524,
2593,
25008,
29892,
322,
278,
16833,
29889,
13,
13,
3492,
1818,
9667,
3001,
321,
29899,
2218,
11911,
29891,
322,
1925,
599,
22595,
310,
24899,
936,
2562,
1549,
278,
2358,
5621,
29889,
13,
13,
6716,
881,
2145,
1474,
934,
11314,
1199,
15313,
9466,
2750,
278,
2174,
524,
2593,
25008,
29892,
278,
2174,
524,
2593,
17924,
29889,
13,
13,
6716,
1818,
2613,
2153,
434,
988,
1950,
29889,
3118,
881,
934,
263,
4891,
5995,
2750,
599,
1302,
29899,
1753,
5818,
304,
5557,
738,
515,
3604,
1847,
1728,
10751,
29889,
13,
13,
6716,
1818,
1663,
391,
393,
278,
2174,
524,
2593,
679,
429,
13347,
515,
278,
14260,
304,
4772,
278,
23023,
1848,
19848,
29889,
13,
13,
6716,
756,
304,
25530,
278,
1206,
408,
2215,
408,
372,
4893,
29889,
13,
13,
3644,
697,
947,
393,
29892,
278,
2982,
21625,
1078,
437,
451,
2041,
1250,
29889,
910,
338,
6788,
1319,
29892,
541,
385,
13258,
358,
297,
278,
5434,
29889,
450,
901,
3041,
506,
9446,
29892,
278,
5520,
372,
674,
2125,
363,
278,
2982,
21625,
1078,
304,
736,
29889,
13,
13,
1576,
822,
5818,
11619,
756,
694,
8825,
310,
20408,
9382,
278,
2578,
1658,
681,
1663,
18541,
5001,
26406,
1098,
25252,
310,
445,
260,
17911,
29889,
450,
7480,
10753,
278,
27217,
14260,
1950,
304,
2867,
1584,
29889,
940,
947,
451,
864,
304,
437,
3099,
393,
674,
1095,
278,
14260,
4203,
1582,
29889,
2193,
338,
2020,
372,
338,
10112,
1230,
304,
298,
533,
263,
7333,
1098,
25252,
1058,
508,
376,
6774,
29884,
1943,
29908,
445,
1663,
18541,
5001,
25008,
29892,
7148,
565,
4266,
5281,
297,
11706,
4439,
29886,
1461,
625,
4307,
2146,
1169,
29889,
13,
13,
2713,
6986,
29888,
1165,
13,
13,
28173,
592,
29901,
306,
626,
385,
8982,
4824,
8910,
322,
27443,
8471,
297,
278,
14328,
4644,
5933,
29889,
306,
5735,
411,
590,
6532,
322,
3023,
413,
4841,
29889,
9586,
681,
916,
20017,
3160,
1383,
272,
262,
29899,
719,
29884,
10856,
403,
29892,
2498,
1029,
11685,
29892,
12601,
4696,
29892,
12113,
23226,
29892,
322,
6728,
573,
22661,
29889,
1619,
413,
4841,
437,
1009,
1900,
304,
9801,
393,
306,
505,
2217,
931,
304,
12359,
434,
1438,
298,
20838,
583,
29889,
13,
13,
4205,
16398,
4193,
13,
13,
4013,
12618,
338,
363,
2498,
10679,
29892,
9793,
29892,
22684,
358,
322,
626,
22527,
29889,
9531,
3971,
1244,
20016,
2667,
16083,
9848,
3643,
526,
738,
13752,
300,
936,
4251,
15648,
9146,
304,
367,
6787,
287,
408,
16083,
9848,
29889,
3529,
437,
451,
6958,
592,
411,
2702,
16083,
5155,
470,
21838,
29889,
2178,
24899,
936,
4251,
373,
445,
12618,
526,
9132,
363,
28976,
470,
2498,
4066,
11976,
322,
1432,
4218,
756,
1063,
1754,
304,
9801,
393,
16500,
24332,
616,
537,
322,
379,
5690,
6344,
526,
3390,
287,
29889,
2178,
4251,
526,
26797,
1848,
1891,
29892,
2845,
297,
760,
470,
297,
3353,
29892,
8679,
373,
920,
1568,
306,
4312,
304,
7232,
514,
728,
304,
1207,
372,
263,
1781,
5828,
304,
12566,
16500,
5999,
4135,
29889,
13,
13,
3596,
10576,
338,
14187,
1266,
310,
278,
4148,
29892,
322,
9483,
428,
338,
21460,
1573,
1728,
10751,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
// Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
/*************************************************************************
-------------------------------------------------------------------------
$Id$
$DateTime$
Description: Helper class for CStatePlayerMovement::StateJump
-------------------------------------------------------------------------
History:
- 10.9.10: Created by Stephen M. North
- 4.4.11: Adapted to be a helper class for the new state machine.
*************************************************************************/
#pragma once
#ifndef __PlayerStateJump_h__
#define __PlayerStateJump_h__
#include "PlayerStateLedge.h"
#include "IPlayerEventListener.h"
#include "ActorDefinitions.h"
class CPlayer;
template<typename HOST>
class CStateHierarchy;
class CPlayerStateJump
{
public:
enum EJumpState
{
JState_None,
JState_Jump,
JState_Falling,
JState_Total
};
CPlayerStateJump();
~CPlayerStateJump();
void OnEnter( CPlayer& player );
bool OnPrePhysicsUpdate( CPlayer& player, const bool isHeavyWeapon, const SActorFrameMovementParams &movement, float frameTime );
void OnExit( CPlayer& player, const bool isHeavyWeapon );
void OnFullSerialize( TSerialize ser, CPlayer& player );
void OnJump( CPlayer& player, const bool isHeavyWeapon, const float fVerticalSpeedModifier );
void OnFall( CPlayer& player );
void SetJumpState(CPlayer &player, EJumpState jumpState);
EJumpState GetJumpState() const;
ILINE const float GetExpectedJumpEndHeight() const { return m_expectedJumpEndHeight; }
ILINE const float GetStartFallingHeight() const { return m_startFallingHeight; }
bool GetSprintJump() const { return m_bSprintJump; }
private:
void StartJump(CPlayer& player, const bool isHeavyWeapon, const float fVerticalSpeedModifier );
ILINE bool IsJumping() const { return m_jumpState != JState_None; }
ILINE void OnRevive() { m_jumpState = JState_None; }
void OnMPWeaponSelect( CPlayer& player ) { SetJumpState(player, JState_Jump); }
void UpdateJumping( CPlayer& player, const bool isHeavyWeapon, const SActorFrameMovementParams& movement, float frameTime );
void UpdateFalling( CPlayer& player, const bool isHeavyWeapon, const SActorFrameMovementParams& movement, float frameTime );
bool UpdateCommon( CPlayer& player, const bool isHeavyWeapon, const Vec3 &move, float frameTime, Vec3* pDesiredVel );
bool UpdateCommon( CPlayer& player, const bool isHeavyWeapon, const SActorFrameMovementParams &movement, float frameTime, Vec3* pDesiredVel );
void GetDesiredVelocity( const Vec3 & move, const CPlayer &player, Vec3* pDesiredVel ) const;
void FinalizeVelocity( CPlayer& player, const Vec3& newVelocity );
void Land( CPlayer &player, const bool isHeavyWeapon, float frameTime );
void Landed(CPlayer& player, const bool isHeavyWeapon, float fallSpeed);
const Vec3 CalculateInAirJumpExtraVelocity( const CPlayer& player, const Vec3& desiredVelocity ) const;
void OnSpecialMove( CPlayer &player, IPlayerEventListener::ESpecialMove specialMove );
EJumpState m_jumpState;
mutable float m_jumpLock;
float m_startFallingHeight;
float m_expectedJumpEndHeight;
bool m_firstPrePhysicsUpdate;
bool m_bSprintJump;
class CPlayerJump *m_jumpAction;
};
#endif //__PlayerStateJump_h__
| [
1,
849,
14187,
1266,
29871,
29906,
29900,
29900,
29896,
29899,
29906,
29900,
29896,
29929,
22121,
12681,
18156,
847,
22121,
12681,
6431,
29889,
2178,
10462,
21676,
29889,
13,
13,
29914,
7775,
7775,
7775,
7775,
4189,
29930,
13,
2683,
2683,
2683,
2683,
1378,
29899,
13,
29938,
1204,
29938,
13,
29938,
11384,
29938,
13,
9868,
29901,
6162,
546,
770,
363,
315,
2792,
9075,
29924,
586,
882,
1057,
2792,
29967,
3427,
13,
13,
2683,
2683,
2683,
2683,
1378,
29899,
13,
20570,
29901,
13,
29899,
29871,
29896,
29900,
29889,
29929,
29889,
29896,
29900,
29901,
6760,
630,
491,
14317,
341,
29889,
4644,
13,
29899,
29871,
29946,
29889,
29946,
29889,
29896,
29896,
29901,
23255,
415,
287,
304,
367,
263,
16876,
770,
363,
278,
716,
2106,
4933,
29889,
13,
13,
7775,
7775,
7775,
7775,
4189,
3877,
13,
29937,
28436,
2748,
13,
13,
29937,
361,
299,
1389,
4770,
9075,
2792,
29967,
3427,
29918,
29882,
1649,
13,
29937,
7922,
4770,
9075,
2792,
29967,
3427,
29918,
29882,
1649,
13,
13,
29937,
2856,
376,
9075,
2792,
29931,
12864,
29889,
29882,
29908,
13,
13,
29937,
2856,
376,
29902,
9075,
12825,
29889,
29882,
29908,
13,
13,
29937,
2856,
376,
29909,
2801,
3206,
262,
2187,
29889,
29882,
29908,
13,
13,
1990,
315,
9075,
29936,
13,
13,
6886,
29966,
22646,
379,
3718,
29958,
13,
1990,
315,
2792,
29950,
631,
12040,
29936,
13,
13,
1990,
315,
9075,
2792,
29967,
3427,
13,
29912,
13,
3597,
29901,
13,
13,
12,
18605,
382,
29967,
3427,
2792,
13,
12,
29912,
13,
12,
12,
29967,
2792,
29918,
8516,
29892,
13,
12,
12,
29967,
2792,
29918,
29967,
3427,
29892,
13,
12,
12,
29967,
2792,
29918,
29943,
27855,
29892,
13,
12,
12,
29967,
2792,
29918,
11536,
13,
12,
3400,
13,
13,
12,
29907,
9075,
2792,
29967,
3427,
890,
13,
12,
30022,
29907,
9075,
2792,
29967,
3427,
890,
13,
13,
12,
5405,
1551,
10399,
29898,
315,
9075,
29987,
4847,
3482,
13,
12,
11227,
1551,
6572,
25847,
1199,
6422,
29898,
315,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
1040,
16698,
2801,
4308,
29924,
586,
882,
9629,
669,
13529,
882,
29892,
5785,
3515,
2481,
3482,
13,
12,
5405,
1551,
24365,
29898,
315,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
3482,
13,
12,
5405,
1551,
13658,
1748,
6646,
29898,
323,
1748,
6646,
724,
29892,
315,
9075,
29987,
4847,
3482,
13,
12,
5405,
1551,
29967,
3427,
29898,
315,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
1040,
5785,
285,
29270,
26539,
2111,
3709,
3482,
13,
12,
5405,
1551,
29943,
497,
29898,
315,
9075,
29987,
4847,
3482,
13,
13,
12,
5405,
3789,
29967,
3427,
2792,
29898,
29907,
9075,
669,
9106,
29892,
382,
29967,
3427,
2792,
12500,
2792,
416,
13,
12,
29923,
29967,
3427,
2792,
3617,
29967,
3427,
2792,
580,
1040,
29936,
13,
12,
6227,
8895,
1040,
5785,
3617,
1252,
6021,
29967,
3427,
5044,
7011,
580,
1040,
426,
736,
286,
29918,
9684,
29967,
3427,
5044,
7011,
29936,
500,
13,
12,
6227,
8895,
1040,
5785,
3617,
4763,
29943,
27855,
7011,
580,
1040,
426,
736,
286,
29918,
2962,
29943,
27855,
7011,
29936,
500,
13,
12,
11227,
3617,
29903,
2158,
29967,
3427,
580,
1040,
426,
736,
286,
29918,
29890,
29903,
2158,
29967,
3427,
29936,
500,
13,
13,
9053,
29901,
13,
13,
12,
5405,
7370,
29967,
3427,
29898,
29907,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
1040,
5785,
285,
29270,
26539,
2111,
3709,
3482,
13,
13,
12,
6227,
8895,
6120,
1317,
29967,
3427,
292,
580,
1040,
426,
736,
286,
29918,
29926,
3427,
2792,
2804,
435,
2792,
29918,
8516,
29936,
500,
13,
12,
6227,
8895,
1780,
1551,
1123,
29894,
573,
580,
426,
286,
29918,
29926,
3427,
2792,
353,
435,
2792,
29918,
8516,
29936,
500,
13,
12,
5405,
1551,
3580,
4806,
481,
265,
3549,
29898,
315,
9075,
29987,
4847,
1723,
426,
3789,
29967,
3427,
2792,
29898,
9106,
29892,
435,
2792,
29918,
29967,
3427,
416,
500,
13,
13,
12,
5405,
10318,
29967,
3427,
292,
29898,
315,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
1040,
16698,
2801,
4308,
29924,
586,
882,
9629,
29987,
10298,
29892,
5785,
3515,
2481,
3482,
13,
12,
5405,
10318,
29943,
27855,
29898,
315,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
1040,
16698,
2801,
4308,
29924,
586,
882,
9629,
29987,
10298,
29892,
5785,
3515,
2481,
3482,
13,
13,
12,
11227,
10318,
18877,
29898,
315,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
1040,
26393,
29941,
669,
11631,
29892,
5785,
3515,
2481,
29892,
26393,
29941,
29930,
282,
4002,
2859,
29963,
295,
3482,
13,
12,
11227,
10318,
18877,
29898,
315,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
1040,
16698,
2801,
4308,
29924,
586,
882,
9629,
669,
13529,
882,
29892,
5785,
3515,
2481,
29892,
26393,
29941,
29930,
282,
4002,
2859,
29963,
295,
3482,
13,
13,
12,
5405,
3617,
4002,
2859,
29963,
295,
25245,
29898,
1040,
26393,
29941,
669,
4337,
29892,
1040,
315,
9075,
669,
9106,
29892,
26393,
29941,
29930,
282,
4002,
2859,
29963,
295,
1723,
1040,
29936,
13,
12,
5405,
9550,
675,
29963,
295,
25245,
29898,
315,
9075,
29987,
4847,
29892,
1040,
26393,
29941,
29987,
716,
29963,
295,
25245,
3482,
13,
13,
12,
5405,
3172,
29898,
315,
9075,
669,
9106,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
5785,
3515,
2481,
3482,
13,
12,
5405,
3172,
287,
29898,
29907,
9075,
29987,
4847,
29892,
1040,
6120,
338,
3868,
5301,
4806,
481,
265,
29892,
5785,
6416,
26539,
416,
13,
12,
3075,
26393,
29941,
20535,
403,
797,
29909,
381,
29967,
3427,
18126,
29963,
295,
25245,
29898,
1040,
315,
9075,
29987,
4847,
29892,
1040,
26393,
29941,
29987,
7429,
29963,
295,
25245,
1723,
1040,
29936,
13,
13,
12,
5405,
1551,
24780,
16619,
29898,
315,
9075,
669,
9106,
29892,
306,
9075,
12825,
1057,
2890,
412,
1455,
16619,
4266,
16619,
3482,
13,
13,
13,
12,
29923,
29967,
3427,
2792,
12,
12,
29885,
29918,
29926,
3427,
2792,
29936,
13,
12,
23975,
5785,
12,
29885,
29918,
29926,
3427,
16542,
29936,
13,
12,
7411,
12,
12,
12,
29885,
29918,
2962,
29943,
27855,
7011,
29936,
13,
12,
7411,
12,
12,
12,
29885,
29918,
9684,
29967,
3427,
5044,
7011,
29936,
13,
13,
12,
11227,
12,
12,
12,
29885,
29918,
4102,
6572,
25847,
1199,
6422,
29936,
13,
12,
11227,
12,
12,
12,
29885,
29918,
29890,
29903,
2158,
29967,
3427,
29936,
13,
12,
13,
12,
1990,
315,
9075,
29967,
3427,
334,
29885,
29918,
29926,
3427,
4276,
29936,
13,
3400,
13,
13,
29937,
15224,
849,
1649,
9075,
2792,
29967,
3427,
29918,
29882,
1649,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
Array index out of range when I am inserting an element into the array
I have an array that contains UIViews (cells) that starts empty. I set it's values when a function is fired by looping through a different array:
cells = [cell0, cell1, cell2, cell3, cell4]
// Code in function ↓
var cellAnimationArray: [NPFCarouselCell] = []
for cell in self.cells {
if cell.frame == farLeftFrame {
cellAnimationArray.insert(cell, at: 0)
} else if cell.frame == leftFrame {
cellAnimationArray.insert(cell, at: 1)
} else if cell.frame == centerFrame {
cellAnimationArray.insert(cell, at: 2)
} else if cell.frame == rightFrame {
cellAnimationArray.insert(cell, at: 3)
} else if cell.frame == farRightFrame {
cellAnimationArray.insert(cell, at: 4)
} else {
print("Frame does not exist!")
print(cell.frame)
return
}
When I get to the line cellAnimationArray.insert(cell, at: 4), the app crashes with :
fatal error: Array index out of range
Why am I getting an out of index error when I am insert an item into the array?
A:
Your error message is telling you that you're calling insert(cell, at:4) before inserting enough elements for 4 to be a valid index. Which implies that the order of items in self.cells is such that you're hitting that line before the inserts at 0 through 3. But you can't insert at 4 unless there's already something at 0 through 3.
When you use an array which already contains several items, you avoid this because index 4 is already valid.
| [
1,
660,
29901,
13,
13,
2588,
2380,
714,
310,
3464,
746,
306,
626,
23800,
385,
1543,
964,
278,
1409,
13,
13,
29902,
505,
385,
1409,
393,
3743,
3740,
23825,
313,
3729,
29879,
29897,
393,
8665,
4069,
29889,
306,
731,
372,
29915,
29879,
1819,
746,
263,
740,
338,
17285,
491,
26113,
1549,
263,
1422,
1409,
29901,
13,
3729,
29879,
353,
518,
3729,
29900,
29892,
3038,
29896,
29892,
3038,
29906,
29892,
3038,
29941,
29892,
3038,
29946,
29962,
13,
13,
458,
5920,
297,
740,
29871,
30552,
13,
13,
1707,
3038,
13579,
2588,
29901,
518,
29940,
13691,
8179,
21299,
4617,
29962,
353,
5159,
13,
13,
1454,
3038,
297,
1583,
29889,
3729,
29879,
426,
13,
1678,
565,
3038,
29889,
2557,
1275,
2215,
8091,
4308,
426,
13,
4706,
3038,
13579,
2588,
29889,
7851,
29898,
3729,
29892,
472,
29901,
29871,
29900,
29897,
13,
1678,
500,
1683,
565,
3038,
29889,
2557,
1275,
2175,
4308,
426,
13,
4706,
3038,
13579,
2588,
29889,
7851,
29898,
3729,
29892,
472,
29901,
29871,
29896,
29897,
13,
1678,
500,
1683,
565,
3038,
29889,
2557,
1275,
4818,
4308,
426,
13,
4706,
3038,
13579,
2588,
29889,
7851,
29898,
3729,
29892,
472,
29901,
29871,
29906,
29897,
13,
1678,
500,
1683,
565,
3038,
29889,
2557,
1275,
1492,
4308,
426,
13,
4706,
3038,
13579,
2588,
29889,
7851,
29898,
3729,
29892,
472,
29901,
29871,
29941,
29897,
13,
1678,
500,
1683,
565,
3038,
29889,
2557,
1275,
2215,
7341,
4308,
426,
13,
4706,
3038,
13579,
2588,
29889,
7851,
29898,
3729,
29892,
472,
29901,
29871,
29946,
29897,
13,
1678,
500,
1683,
426,
13,
4706,
1596,
703,
4308,
947,
451,
1863,
29991,
1159,
13,
4706,
1596,
29898,
3729,
29889,
2557,
29897,
13,
4706,
736,
13,
29913,
13,
13,
10401,
306,
679,
304,
278,
1196,
3038,
13579,
2588,
29889,
7851,
29898,
3729,
29892,
472,
29901,
29871,
29946,
511,
278,
623,
21985,
411,
584,
13,
29888,
2075,
1059,
29901,
4398,
2380,
714,
310,
3464,
13,
13,
11008,
626,
306,
2805,
385,
714,
310,
2380,
1059,
746,
306,
626,
4635,
385,
2944,
964,
278,
1409,
29973,
13,
13,
29909,
29901,
13,
13,
10858,
1059,
2643,
338,
14509,
366,
393,
366,
29915,
276,
5432,
4635,
29898,
3729,
29892,
472,
29901,
29946,
29897,
1434,
23800,
3307,
3161,
363,
29871,
29946,
304,
367,
263,
2854,
2380,
29889,
8449,
10469,
393,
278,
1797,
310,
4452,
297,
1583,
29889,
3729,
29879,
338,
1316,
393,
366,
29915,
276,
29425,
393,
1196,
1434,
278,
13534,
1372,
472,
29871,
29900,
1549,
29871,
29941,
29889,
1205,
366,
508,
29915,
29873,
4635,
472,
29871,
29946,
6521,
727,
29915,
29879,
2307,
1554,
472,
29871,
29900,
1549,
29871,
29941,
29889,
13,
10401,
366,
671,
385,
1409,
607,
2307,
3743,
3196,
4452,
29892,
366,
4772,
445,
1363,
2380,
29871,
29946,
338,
2307,
2854,
29889,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
INTRODUCTION {#s1}
============
Lung cancer is one of the leading causes of cancer related death worldwide and its 5-year survival rate is low, about 15%-20%\[[@R1]\]. Surgical resection is an effective approach in achieving long-term survival and widely used in lung cancer. However, postoperative relapse and subsequent lymphatic and hematogenous metastasis still result in 90% of mortalities in lung cancer \[[@R2]\]. Lymphatic metastasis is directly associated with distant recurrence and overall survival (OS) in resected non-small cell lung cancer \[[@R3]\]. The image approaches such as PET/CT are currently most widely used for lymph node staging, however, the sensitivity for detecting metastatic tumor in lymph nodes smaller than 1 cm is low \[[@R4], [@R5]\]. Therefore, searching for biomarkers that can predict early metastatic phenomenon is beneficial to patients' survival. Molecular markers including microRNAs will be of great use for a more accurate risk assessment of nodal metastasis.
MicroRNAs (miRNAs or miRs) are a family of endogenous and small RNA gene products (19 - 25 nucleotides in length) \[[@R6]\]. Over 50% annotated human miRNA genes are located within the cancer-associated genomic regions or fragile sites and exert important functions similar to oncogenes or tumor suppressors in malignancy \[[@R7]\]. These small RNA molecules can be efficiently retrieved from (fixed or frozen) tumor samples or biological fluids and display high stability and tissue specificity \[[@R8]\]. Previous studies demonstrated that a number of miRNAs have potential roles in diagnosis, staging, and prediction of outcomes in various types of cancer including lung cancer \[[@R9], [@R10]\]. Until now, many miRNAs have also been identified to be correlated with lymph node metastasis of lung cancer \[[@R11]\].
In the present study, we performed miRNAs microarray analysis in lymph node tissues of the patients with lung cancer and screened the differentially expressed miRNAs related to lymph node metastasis. Then we enrolled a training cohort of lung cancer patients and detected the expressions of top candidate miRNAs in plasma samples. The potential diagnostic value of the selected miRNAs in distinguishing lymph node metastasis was analyzed. Furthermore, miR-422a, the miRNA with highest accuracy, was validated in another cohort. Finally, the predicted target genes of miR-422a were analyzed by bioinformatic methods.
RESULTS {#s2}
=======
Literature review {#s2_1}
-----------------
To summarize the miRNAs that were correlated with lymphatic metastasis in lung cancer in previous reports, we performed a systematic literature review in two English databases (PubMed and Embase) up to June 30, 2016. After initial screening by reading the article titles and abstracts, 187 articles were left for selection. 54 papers were excluded according to the inclusion criteria, of which, 28 were irrelevant studies, 12 were review articles, 8 were only experimental studies, and 8 only reported the panel or signature of multiple miRNAs. Finally, 133 papers reporting 115 miRNAs were identified. Of the 115 miRNAs, 95 miRNAs were found to be associated with lymphatic metastasis in lung cancer in at least one publication while 20 were not correlated with the metastasis ([Supplementary Table 1](#SD2){ref-type="supplementary-material"}). miR-21, 10b, 148b, 155, and 200c were the most studied spots.
miRNA microarray analysis in NSCLC with lymphatic metastasis or not {#s2_2}
-------------------------------------------------------------------
In the present study, we aimed to identify novel miRNAs correlated with lymphatic metastasis in NSCLC. Firstly, we performed miRNA microarray analysis in lymph node tissues with metastasis from five lung cancer patients and compared with that in the corresponding lymph node without metastasis. After data processing and analysis, a set of 50 miRNAs were identified to be differentially expressed between metastatic lymph nodes and non metastatic lymph nodes, of which, 39 were up-regulated and 11 were down regulated (Figure [1](#F1){ref-type="fig"} and Table [1](#T1){ref-type="table"}). Interestingly, 18 of the 50 miRNAs were also presented in the literature review.
![Microarray analysis of miRNAs of the metastatic and non-metastatic lymph nodes from five patients with lung cancer](oncotarget-08-42173-g001){#F1}
###### Top 50 differentially expressed miRNAs in metastatic lymph node compared with noncancerous lymph node identified by microarray analysis in five patients with lung cancer
miRNAs Fold change (LN+ vs LN-) P value
------------------------- -------------------------- ---------
**hsa-miR-375** 59.917 0.013
**hsa-miR-205** 49.518 0.014
hsa-miR-200a 40.533 0.010
**hsa-miR-183** 39.393 0.010
hsa-miR-200b 38.828 0.008
hsa-miR-200b-star 29.311 0.019
**hsa-miR-200c** 15.411 0.005
hsa-miR-187 15.292 0.013
**hsa-miR-224** 14.627 0.002
**hsa-miR-141** 13.350 0.046
hsa-miR-886-5p 9.666 0.017
hsa-miR-1290 7.783 0.050
hsa-miR-1308 7.548 0.004
hsa-miR-1244 5.058 0.031
**hsa-miR-452** 4.885 0.047
hsa-miR-149 4.395 0.033
hsa-miR-382 4.353 0.032
**hsa-miR-125a-5p** 4.336 0.004
hsa-miR-92b 4.085 0.013
**hsa-miR-503** 3.822 0.017
hsa-miR-885-3p 3.479 0.048
**hsa-miR-125b-1-star** 3.432 0.021
hsa-miR-424-star 3.355 0.008
hsa-miR-1300 3.194 0.027
hsa-miR-493 3.041 0.032
hsa-miR-99b-star 2.996 0.008
**hsa-miR-409-3p** 2.869 0.008
**hsa-miR-130b** 2.813 0.021
hsa-miR-218 2.776 0.030
hsa-miR-557 2.708 0.020
hsa-miR-127-3p 2.630 0.005
hsa-miR-15b 2.536 0.003
hsa-miR-665 2.496 0.001
hsa-miR-663b 2.388 0.024
**hsa-miR-198** 2.322 0.028
hsa-miR-498 2.290 0.046
hsa-miR-487b 2.225 0.042
hsa-miR-574-3p 2.210 0.028
**hsa-miR-21** 2.178 0.009
hsa-miR-1263 −2.034 0.039
hsa-miR-194 −2.089 0.000
hsa-miR-551b −2.262 0.043
**hsa-let-7g-star** −2.380 0.042
**hsa-miR-30e** −2.892 0.008
**hsa-miR-223** −2.911 0.048
hsa-miR-29c −3.368 0.031
hsa-miR-378 −5.044 0.007
**hsa-miR-486-3p** −6.148 0.012
hsa-miR-422a −6.207 0.006
hsa-miR-378-star −9.385 0.005
Note: LN: lymph node; Bold, miRNAs have been also identified in the previous reports
Value of the top differential expressed miRNA in diagnoses lymph node metastasis in lung cancer {#s2_3}
-----------------------------------------------------------------------------------------------
To determine the diagnostic value of the miRNA identified by miRNA microarray analysis, we chose six miRNAs (hsa-miR-375, hsa-miR-205, hsa-miR-183, hsa-miR-200b, hsa-miR-378, and hsa-miR-422a). And we evaluated their expression levels in plasma samples from 26 lung cancer patients (14 with lymphatic metastasis and 12 patients without lymphatic metastasis, Table [2](#T2){ref-type="table"}) and five patients with benign lung diseases by quantitative real-time polymerase chain reaction (qRT-PCR). The results suggested that all the six miRNAs were highly expressed in lung cancer with lymph node metastasis compared with the cancers without lymph node metastasis and benign diseases, of note miR-422a exhibited significant difference (Figure [2](#F2){ref-type="fig"}). Then Receiver Operating Characteristic curve (ROC) analysis was performed to compare the diagnosis accuracy among miRNAs or traditional tumor markers such as carcino embryonie antigen (CEA), cancer antigen 199 (CA199), cytokeratin 19 fragments (CYFRA21-1), and squamous cell carcinoma antigen (SCC). And the results indicated that the candidate miRNA, miR-422a, showed highest accuracy in predicting lymphatic metastasis with an AUC value of 0.744 (Figures [3](#F3){ref-type="fig"}--[4](#F4){ref-type="fig"} and Table [3](#T3){ref-type="table"}). In addition, correlations among the six miRNAs were also analyzed. And the correlations of miR-200b with miR-183, miR-375 with miR-183 and miR-200b, and miR-422a with miR-183, miR-200b, miR-375, and miR-378 were identified (Table [4](#T4){ref-type="table"}). At same time, to clarify if the aberrant expression of miR-422a in plasma were resulted from the cancer tissue, we downloaded a publically available dataset (GSE16025) from NCBI GEO database, which contained the miR-422a expression data in 20 lung cancers with lymphatic metastasis, 41 without lymphatic metastasis, and 10 normal lung tissues \[[@R12]\]. Consistent with our results in plasma samples, miR-422a expression was increased significantly from normal lung tissue to cancer tissue with lymphatic metastasis ([Supplementary Figure 1](#SD1){ref-type="supplementary-material"}).
###### Clinical characteristics of the lung cancer patients
Clinicopathological features Training cohort (n=26) Validation cohort (n=51)
------------------------------ ------------------------ --------------------------
**Age** (years) 59.8±6.2 58.9±8.9
**Sex**
Male 11 29
Female 15 22
**TNM**
Ia 10 28
IIa 8 9
IIb 1 1
IIIa 7 6
IIIb 0 1
IV 0 6
**Tumor diameter (cm)** 2.74±1.04 3.04±1.51
**T stage**
T1 22 33
T2 3 17
T3 1 1
**N stage**
N0 12 40
N1 7 1
N2 7 7
N3 0 3
**M stage**
M0 26 45
M1 0 6
**Histology**
Adenocarcinoma 22 13
Squamous cell carcinoma 2 34
Small cell lung cancer 2 4
**Lymph node metastasis**
Yes 14 11
No 12 40
![Expression of candidate miRNAs in training cohort of 26 lung cancer with or without lymphatic metastasis and five patients with benign lung disease](oncotarget-08-42173-g002){#F2}
![The accuracy of plasma circulating candidate miRNAs in the diagnosis of lymphatic metastasis in training cohort of 26 lung cancer patients](oncotarget-08-42173-g003){#F3}
![The accuracy of known tumor markers in the diagnosis of lymphatic metastasis in training cohort of lung cancer patients](oncotarget-08-42173-g004){#F4}
###### ROC curve analysis of selected miRNAs and known tumor markers in diagnosis of lymphatic metastasis in lung cancer patients
Biomarkers AUC 95%CI P value
----------------------- ------- --------------- ---------
**Training cohort**
miR-183 0.513 0.296 - 0.729 0.110
miR-200b 0.630 0.431 - 0.830 0.102
miR-205 0.534 0.318 - 0.749 0.110
miR-375 0.634 0.436 - 0.833 0.101
miR-378 0.450 0.228 - 0.671 0.113
miR-422a 0.744 0.570 - 0.918 0.089
CEA 0.635 0.347 - 0.923 0.368
CA199 0.556 0.249 - 0.863 0.711
CYFRA211 0.540 0.234 - 0.845 0.791
SCC 0.548 0.241 - 0.855 0.751
**Validation cohort**
miR-422a 0.880 0.787-0.972 0.000
**All patients**
miR-422a 0.792 0.688-0.896 0.000
Note: CEA: carcino embryonie antigen; CA199: carbohydrate antigen-199; CYFEA211: cytokerantin-19-fragment; SCC: squamous cell carcinoma antigen
###### Correlations among the selected miRNAs in training cohort
miRNAs miR-183 miR-200b miR-205 miR-375 miR-378
-------------- ----------- ----------- ----------- ----------- --------- ------- ----------- ----------- ----------- -----------
r P r P r P r P r P
**miR-183**
**miR-200b** **0.699** **0.000**
**miR-205** 0.075 0.688 0.284 0.121
**miR-375** **0.549** **0.001** **0.682** **0.000** 0.185 0.318
**miR-378** 0.135 0.469 0.301 0.099 0.021 0.909 0.303 0.097
**miR-422** **0.369** **0.041** **0.554** **0.001** −0.019 0.921 **0.417** **0.020** **0.735** **0.000**
Validation of miR-422a in predicting lymphatic metastasis of lung cancer {#s2_4}
------------------------------------------------------------------------
Another cohort consisting of 40 lymphatic metastatic lung cancer cases and 11 non-lymphatic metastatic cases was used to further verify the diagnostic value of miR-422a (Table [2](#T2){ref-type="table"}). The plasma miR-422a levels were determined by qRT-PCR and ROC curve analysis was performed. The expression of miR-422a in samples with lymphatic metastasis was significantly higher than those without lymphatic metastasis, consistent with the results of training cohort. ROC analysis suggested that miR-422a exhibited high diagnostic accuracy with an AUC value of 0.880 (Table [3](#T3){ref-type="table"} and Figure [5A](#F5){ref-type="fig"}). Furthermore, the training cohort and validation cohort were integrated by normalizing the miR-422 expression data and a high diagnostic accuracy of miR-422a was still observed (AUC=0.792, Table [3](#T3){ref-type="table"} and Figure [5B](#F5){ref-type="fig"}).
![Validation of miR-422a as a biomarker for lymph nodes metastasis\
**A**. The accuracy of miR-422a in the diagnosis of lymphatic metastasis in validation cohort of 51 lung cancer patients. **B**. miR-422a expression data from both of training and validation cohorts were normalized and integrated. The diagnostic value of miR-422a in predicting lymphatic metastasis in all patients was analyzed.](oncotarget-08-42173-g005){#F5}
Meanwhile, the correlations between miR-422a and the clinical features including age, gender, histological subtypes, Tumor diameter, T stage, M stage, and the lymph node metastasis in all patients were investigated. The miR-422a expression level less than the cut-off value from the ROC analysis was defined as "Low expression" and that more than the cut-off value was defined as "High expression". The results suggested that miR-422a was correlated with histological subtype, T stage, and tumor diameter stratified by 2.55 cm, a cut-off value from ROC analysis with lymph node metastasis as state variable in all patients with lung cancer (Table [5](#T5){ref-type="table"}).
###### Correlation of miR-422a with clinical features in all 77 patients with lung cancer
Clinical features Low expression High expression P-value
--------------------------- ---------------- ----------------- ---------
**Age** (years)
\<60 15 22 0.814
≥60 16 21
**Gender** 0.226
Male 14 26
Female 18 19
**Histology** 0.019
SCC 12 23
ADC 20 16
SCLC 0 6
**Tumor diameter (cm)** 2.60±1.32 3.20±1.38 0.059
**Tumor diameter (cm)** 0.021
\<2.55 21 17
≥2.55 11 28
**T stage** 0.012
T1 28 27
T2-3 4 18
**M stage**
M0 31 40 0.391
M1 1 5
**Lymph node metastasis**
No (N0) 30 22 0.000
Yes (N1-3) 2 23
In addition, the correlations of lymphatic node metastasis with the clinical features were also explored. The results suggested that significant correlation was observed between lymphatic metastasis and the clinical feature tumor diameter, but not age, gender, histology subtype, T stage, and M stage (Table [6](#T6){ref-type="table"}). Based on the above results, histology subtype and T stage/tumor diameter might be the potential confounding factors for the association between miR-422a expression and lymphatic metastasis. After adjustment of the potential confounding factors, histology subtype and T stage, or histology subtype and tumor diameter, the odds ratios of miR-422a for lymphatic metastasis were 13.645 (95%CI, 2.677-69.553; *P*=0.002) and 11.459 (95%CI, 2.337-56.118; *P*=0.003), respectively, similar with the crude OR (15.682; 95%CI, 3.341-73.596; *P*=0.000) and indicating a strong association of miR-422a with lymphatic metastasis in lung cancer (Table [7](#T7){ref-type="table"}). On the other hand, the analyses of the data from GSE16025 also revealed that miR-422a levels in cancer tissue was associated with lymphatic metastasis in lung cancer in Univariate analysis (OR, 6.500; 95%CI, 1.136-37.203, P=0.035) and multivariate analysis (adjusted OR, 8.133; 95%CI, 1.103-59.986, P=0.040) (Table [7](#T7){ref-type="table"}). The cross verification between different sample source further demonstrated the association of miR-422a with lymph node metastasis.
###### Correlation of lymphatic node metastasis with clinical features in all 77 patients with lung cancer
Clinical features LN- LN+ P value
------------------------- ----------- ----------- ---------
**Age**
\<60 26 11 1.000
≥60 26 11
**Gender**
Male 27 13 0.995
Female 25 12
**Histology**
SCC 22 13 0.962
ADC 28 8
SCLC 2 4
**Tumor diameter (cm)** 2.87±1.47 3.12±1.19 0.473
**Tumor diameter (cm)**
\<2.55 31 7 0.014
≥2.55 21 18
**T stage**
T1 39 16 0.317
T2-3 13 9
**M stage** 0.063
M0 50 21
M1 2 4
**miR-422 expression** 0.000
Low 30 2
High 22 23
###### Odds ratios (ORs) of high miR-422a expression for lymphatic node metastasis in all 77 patients with lung cancer
Crude OR 95%CI P value Adjusted OR 95%CI P value Adjusted OR 95%CI P value
--------------- ---------- -------------- --------- ------------- -------------- --------- ------------- -------------- ---------
**Our study**
miR-422a 15.682 3.341-73.596 0.000 13.645^a^ 2.677-69.553 0.002 11.459^b^ 2.337-56.188 0.003
**GSE16025**
miR-422a 6.500 1.136-37.203 0.035 8.133^c^ 1.103-59.986 0.040
^a^The adjusted OR was obtained by controlling the factors of histology and T stages.
^b^The adjusted OR was obtained by controlling the factors of histology and tumor size.
^c^The adjusted OR was obtained by controlling the factors of age and T stage.
Prediction of miR-422a target genes that might be involved in lymphatic metastasis {#s2_5}
----------------------------------------------------------------------------------
Given the fact that the biological significance of miRNAs deregulation relies on the actions of their targets, we aimed to identify the potential targets of miR-422a involved in lymphatic metastasis in lung cancer by prediction and data mining. Firstly, the predicted targets of the miR-422a were analyzed by the online database, miRecords and a total of 3309 predicted target genes were identified. Then, GSE51852 and GSE51853 were downloaded from NCBI, which contained both the mRNA and the miRNA expression profile of 126 lung cancer patients. 2052 genes co-expressed with miR-422a were obtained after analyzing the datasets. Thirdly, 983 lung cancer patients at N0-3 stage were downloaded from The Cancer Genome Atlas (TCGA) and 4842 differential expressed genes in lymph node metastasis cancers compared with non-metastatic cancers were identified. Finally, to find potential novel target genes of miR-422a involved in lymph node metastasis of lung cancer, the results from the above analyses were integrated and a total of 61 genes were left (Table [8](#T8){ref-type="table"}). Then these genes were subjected to gene ontology (GO) analysis in the GeneCoDis3 online database (<http://genecodis.cnb.csic.es>). The biological processes of apoptosis, transport, and protein phosphorylation contained multiple target genes. Many of the genes were related to DNA and protein binding. And most the genes served as nucleus and membrane components (Table [9](#T9){ref-type="table"}).
###### The potential target genes of miR-422a involved in lymphatic metastasis identified by predicting by online database, miRecords and mining of the data from GEO and TCGA
Gene Symbol Gene description
------------- ------------------------------------------------------------------------------------------
FYCO1 FYVE and coiled-coil domain containing 1
CX3CR1 chemokine (C-X3-C motif) receptor 1
PHC3 polyhomeotic homolog 3 (Drosophila)
IL33 interleukin 33
BDH2 3-hydroxybutyrate dehydrogenase, type 2
RSL1D1 ribosomal L1 domain containing 1
GOT2 glutamic-oxaloacetic transaminase 2, mitochondrial (aspartate aminotransferase 2)
FANCA Fanconi anemia, complementation group A
PUS7 pseudouridylate synthase 7 homolog (S. cerevisiae)
ZNF362 zinc finger protein 362
PTPRE protein tyrosine phosphatase, receptor type, E
C18orf56 chromosome 18 open reading frame 56
ARHGAP11A Rho GTPase activating protein 11A
PTCD1 pentatricopeptide repeat domain 1
CCDC85A coiled-coil domain containing 85A
TOB2 transducer of ERBB2, 2
SUV420H1 suppressor of variegation 4-20 homolog 1 (Drosophila)
POLR2J polymerase (RNA) II (DNA directed) polypeptide J, 13.3kDa
ARID5B AT rich interactive domain 5B (MRF1-like)
FANCI Fanconi anemia, complementation group I
ARHGEF12 Rho guanine nucleotide exchange factor (GEF) 12
CISH cytokine inducible SH2-containing protein
S1PR2 sphingosine-1-phosphate receptor 2
PCDHA9 protocadherin alpha 9
E2F2 E2F transcription factor 2
TMEM130 transmembrane protein 130
SHROOM4 shroom family member 4
TGFBR2 transforming growth factor, beta receptor II (70/80kDa)
PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2
MEGF10 multiple EGF-like-domains 10
YPEL1 yippee-like 1 (Drosophila)
KIAA0247 KIAA0247
CC2D2B coiled-coil and C2 domain containing 2B
COL9A2 collagen, type IX, alpha 2
NHLRC3 NHL repeat containing 3
APLP2 amyloid beta (A4) precursor-like protein 2
ZNF599 zinc finger protein 599
HTATIP2 HIV-1 Tat interactive protein 2, 30kDa
ATG2B ATG2 autophagy related 2 homolog B (S. cerevisiae)
CAMKK1 calcium/calmodulin-dependent protein kinase kinase 1, alpha
C18orf1 chromosome 18 open reading frame 1
SLC16A12 solute carrier family 16, member 12 (monocarboxylic acid transporter 12)
LRRFIP2 leucine rich repeat (in FLII) interacting protein 2
JMJD6 jumonji domain containing 6
C8orf46 chromosome 8 open reading frame 46
SEZ6 seizure related 6 homolog (mouse)
ALG3 asparagine-linked glycosylation 3 homolog (S. cerevisiae, alpha-1,3-mannosyltransferase)
GPR123 G protein-coupled receptor 123
SLC34A2 solute carrier family 34 (sodium phosphate), member 2
TRDMT1 tRNA aspartic acid methyltransferase 1
ZNF552 zinc finger protein 552
RAB1A RAB1A, member RAS oncogene family
COX4NB COX4 neighbor
FBXO31 F-box protein 31
BTBD7 BTB (POZ) domain containing 7
SORBS1 sorbin and SH3 domain containing 1
DYRK1A dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1A
KIAA0494 KIAA0494
JRK jerky homolog (mouse)
CYCS cytochrome c, somatic
ABCD4 ATP-binding cassette, sub-family D (ALD), member 4
###### GO analysis of the potential target genes of miR-422a related to lymphatic metastasis in lung cancer
GO items P value Genes
------------------------- --------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
**Biological process**
Apoptotic process 0.047 E2F2, ARHGEF12, TGFBR2, CYCS, JMJD6
Transport 0.048 GOT2, ABCD4, SORBS1, CYCS, FYCO1
Protein phosphorylation 0.046 POLR2J, DYRK1A, TGFBR2, PTPRE
**Molecular function**
DNA binding 0.031 E2F2, ARID5B, PHC3, POLR2J, ZNF552, APLP2, ZNF362, ZNF599, TRDMT1
Protein binding 0.024 E2F2, IL33, FANCA, ARID5B, POLR2J, FANCI, DYRK1A, LRRFIP2, APLP2, CX3CR1, TGFBR2, PFKFB2, HTATIP2, SORBS1, PTPRE, CYCS, FYCO1, JMJD6
**Cellular component**
Nucleus 0.000 E2F2, FANCA, ARID5B, RSL1D1, PHC3, POLR2J, FANCI, YPEL1, ZNF552, DYRK1A, APLP2, ZNF362, ZNF599, SHROOM4, SUV420H1, HTATIP2, SORBS1, COX4NB, TOB2, PTPRE, TRDMT1, CYCS, JMJD6, CAMKK1
Integral to membrane 0.027 SLC16A12, SLC34A2, ALG3, MEGF10, C18orf1, SEZ6, APLP2, CX3CR1, GPR123, TGFBR2, ABCD4, PTPRE, KIAA0247, FYCO1, TMEM130, S1PR2, PCDHA9
Plasma membrane 0.012 SLC16A12, SLC34A2, FANCI, MEGF10, C18orf1, SEZ6, APLP2, CX3CR1, GPR123, TGFBR2, GOT2, SORBS1, PTPRE, JMJD6, S1PR2, PCDHA9
DISCUSSION {#s3}
==========
In the present study, we screened novel circulating miRNAs in predicting lymph node metastasis in lung cancer. One novel miRNA, miR-422a, showed the highest diagnostic value compared with other miRNAs and traditional tumor markers, such as CEA, CA199, and CYFEA211. Furthermore, a validation cohort consist of 51 lung cancer patients was recruited to confirm the diagnostic value of miR-422a. ROC curve analyses revealed that miR-422a possessed a high AUC value of 0.880 with sensitivity of 86.22% and specificity of 96.55%. Some miRNAs have been reported to be correlated with lymphatic metastasis and showed in our literature review. For example, miR-196a \[[@R13]\] and miR-130a \[[@R14]\] were positively associated with lymph node metastasis, while miR-451 \[[@R15]\] was negatively associated with lymph node metastasis. Recent studies have focused on the sources of circulatory molecular biomarkers \[[@R16]\]. In previous review papers about predictive values of circulating routine plasma tumor markers, the accuracy for metastasis detection ranged from 0.815 (CYFRA 21-1) to 0.724 (CEA), respectively (AUC values) \[[@R17], [@R18]\].
miR-422a was a less studied miRNA. A few studies have revealed the involvement of miR-422a in human cancers. It is dysregulated in osteosarcoma \[[@R19]\], colorectal cancer \[[@R20]--[@R22]\], hepatocarcinoma \[[@R23]\], and gastric cancer \[[@R24]\]. miR-422a is an indicative marker for poor prognosis in osteosarcoma, gastric cancer, and hepatocarcinoma \[[@R23]\]. It is also associated with chemo-resistance in osteosarcoma \[[@R25]\]. In lung cancer, one study suggested that miR-422a can be used to classify lung adenocarcinoma from lung squamous cell carcinoma \[[@R26]\]. In the present study, we found that plasma miR-422a levels were upregulated in lung cancer patient with lymphatic metastasis than that in patients without lymphatic metastasis. Here, the expression changes trends of miR-422a was opposite with the results of the microarray analysis. We predicted that the sample size in microarray analysis was very small and then the individual difference led to a certain degree of bias when exploring the differential expressed microRNAs in the patients with lymphatic metastasis or not. The upregulation of plasma miR-422a in lymphatic metastatic patients were also evidenced by an independent cohort, GSE16025, which analyzing the mRNA expression profile of lung cancer tissues ([Supplementary Figure 1](#SD1){ref-type="supplementary-material"}). And our study, for first time, found that miR-422a had a potential diagnostic value in discriminating lymph node metastasis of lung cancer. To further clarify the association of miR-422a and lymphatic metastasis in lung cancer, we analyzed the associations of miR-422a with the clinical parameters and the associations of lymphatic metastasis with the clinical parameters. And the results suggested miR-422a was associated with histology and T stage/tumor diameter, which might be the confounding factors for the association of miR-422a with lymphatic metastasis. Notably, a strong significant association was still observed between miR-422a and lymphatic metastasis after adjustment of the confounding factors (Table [7](#T7){ref-type="table"}). Furthermore, by analyses the mRNA profile data in cancer tissues in GSE16025, a similar association was observed between cancer tissue miR-422a level and lymphatic metastasis in lung cancer.
In summary, our findings highlight that a novel circulating miRNA, miR-422a, may serve as a non-invasive biomarker with sufficient accuracy in predicting lymph node metastasis in lung cancer patients. And the application of miR-422a in clinical practice may help for prophylactic intervention to mitigate morbidity and mortality. miR-422a may also provide a new target for therapeutic approaches in management of lung cancer.
MATERIALS AND METHODS {#s4}
=====================
Literature review {#s4_1}
-----------------
To summary the associations of miRNAs with lymph node metastasis in lung cancer, a systematic literature search was performed independently by two authors in two databases (PubMed and EMBASE) up to June 30, 2016. The following termed were used: "lung cancer", "lymph node OR lymph node metastasis, OR lymphatic metastasis", and "Microrna OR miRNA". Inclusion criteria: (1) English language papers; (2) The associations of miRNA with lymph node metastasis were determined in clinical samples; (3) single miRNA but not panel or signature of mutiple miRNAs was investigated.
Patients and samples {#s4_2}
--------------------
Anonymized fresh metastatic lymph node samples and the compared noncancerous lymph nodes from five lung cancer patients were collected after surgical resection for miRNA profile analysis. Then, 26 lung cancer patients (14 cases with lymphatic metastasis and 12 cases without lymphatic metastasis) from August 2013 to May 2014 were included as a training cohort to determine the diagnosis value of the top differentially expressed miRNAs from miRNA profile analysis (Table [2](#T2){ref-type="table"}). In addition, five patients with benign lung diseases without cancers were recruited as controls. Furthermore, another cohort of 51 lung cancer patients (LN+, 40; LN-, 11) was recruited from June 2014 to October 2015 to validate the miRNA with highest diagnosis accuracy in the training cohort (Table [2](#T2){ref-type="table"}). Unlike with the microarray analysis, fresh peripheral blood samples were used. Clinicopathological characteristics of patients with lung cancer were defined according to the TNM staging system criteria of the Union for International Cancer Control. And histological diagnosis was based on the medical records. Formalin-fixed paraffin-embedded (FFPE) sections were carefully reviewed for the diagnosis of metastatic lymph nodes and noncancerous lymph nodes. All procedures were approved by the Ethics Committee of Peking University. Written informed consents were obtained from all patients or their families.
miRNA microarray analysis {#s4_3}
-------------------------
The matched frozen tissue samples of metastatic and noncancerous lymph nodes from the same patients were used to perform miRNA microarray analysis. Total RNA (100 ng) was polyA-tailed and ligated to biotinylated signal molecules using the Flash Tag™ Biotin RNA Labeling Kit (Genisphere, Llc in Hatfield, PA, USA). An enzyme-linked oligo sorbent quantitative-competitive assay was performed to verify the labeling prior to array hybridization to GeneChip® miRNA microarrays (Affymetrix, Santa Clara, CA, USA). And then hybridization, washing, staining, and scanning were conducted using Affymetrix Gene Chip® system instruments and protocols (Affymetrix, Santa Clara, CA, USA). Subsequently, the microarray image was analyzed and the intensity values were calculated by Affymetrix Gene Chip® Command Console Software version 3.0.1. Further analysis was performed using Partek Genomics Suite (Partek, St. Louis, MO, USA).
Quantitative real-time polymerase chain reaction (qRT-PCR) {#s4_4}
----------------------------------------------------------
MiRNAs were extracted from the plasma samples from lung cancer patients using miRNeasy Mini Kit (Qiagen, Valencia, CA, USA) according to the manufacturer\'s instructions. The concentration and purity of isolated RNA was estimated using the ND-1000 microspectrophotometer (Thermo Fisher Scientific, Waltham, MA, USA). RNA integrity was assessed on BioAnalyzer 2100 using BioAnalyzer RNA 6000 Nano LabChip Kit (Agilent Technologies, Palo Alto, CA, USA). Then TaqMan miRNA assays (Applied Biosystems, Thermo Fisher Scientific, Waltham, MA, USA) were used to detect the expression levels of mature miRNAs. For reverse transcription reactions, 10 ng of total RNA was mixed with the reverse transcription primers, reacted at 16°C for 30 min, 42°C for 30 min, and 85°C for 5 min, and then maintained at 4°C. Following the reverse transcription reactions, 1 μL of cDNA was used for polymerase chain reaction (PCR) using 2 μl of the TaqMan primers. PCR reactions were conducted at 95°C for 10 min followed by 40 cycles of 95°C for 15 s and 60°C for 60 s on an ABI 7500 Fast Real-time PCR system (Thermo Fisher Scientific, Waltham, MA, USA). Real-time PCR results were analyzed and the expression of miRNA levels was calculated using the 2^−ΔΔCt^ method and normalized to miR-16, an internal reference control. The probes of the candidate miRNAs were show in [Supplementary Table 2](#SD1){ref-type="supplementary-material"}.
Predicted targets analysis of miR-422a {#s4_5}
--------------------------------------
The predicted targets of the miR-422a were analyzed by an online database, miRecords (<http://c1.accurascience.com/miRecords/>), which is a resource for animal miRNA-target interactions. The Predicted Targets component of mIRecords integrates the predicted targets of the following miRNA target prediction tools: DIANA-microT, MicroInspector, miRanda, MirTarget2, miTarget, NBmiRTar, PicTar, PITA, RNA22, RNAhybrid, and TargetScan/TargertScanS \[[@R27]\]. The target genes of miR-422a were derived when the target genes were predicted by at least three algorithms in mIRecords. In addition, the GEO datasets (GSE51852 and GSE51853) were downloaded from NCBI, which contained both the mRNA and the miRNA expression profile of 126 lung cancer patients and were used to find the genes co-expressed with the selected miRNA, miR-422a \[[@R28]\]. Furthermore, mRNA profile data of 983 lung cancer patients was downloaded from TCGA database, subgrouped by lymphatic metastasis or not, and used to find genes related to lymphatic metastasis. Then, the potential target genes of miR-422a involved in lymphatic metastasis were identified by integrated analysis of predicted targets from miRcords and data mining of GEO and TCGA. Finally, the potential targets were subjected to GO analysis in the GeneCoDis3 online database (<http://genecodis.cnb.csic.es>).
Statistical analysis {#s4_6}
--------------------
Statistical analyses were performed with SPSS 16.0 (IBM, Armonk, NY, USA). Kruskall Wallis H test was used for comparing miRNAs expression among multiple groups. Receiver operating characteristic (ROC) curves were established for discriminating the patients with lymphatic metastasis or not. The area under curve (AUC) value and 95% confidence intervals (CI) were calculated to determine the specificity and sensitivity. Z-score method was used to normalize the expression data of miRNA in training and validation cohorts. Chi-square test was used to explore the associations of miR-422a and clinical features and the associations of lymphatic metastasis with clinical features in the all recruited lung cancer patients and in dataset GSE16025. The correlations among the miRNAs in training cohort and the correlations between the genes and miR-422a in GEO data were analyzed by Pearson\'s correlation coefficient. The mRNA expressions in lymphatic metastatic lung cancer patients compared with non-lymphatic metastatic patients in TCGA data were analyzed by Student\'s t test. All tests were two-sided. *P* \< 0.05 was considered to be statistically significant.
SUPPLEMENTARY MATERIALS FIGURES AND TABLES {#s5}
==========================================
**Author contributions**
LNW, BH and BTZ prepared the manuscript. YNL, YY and LJZ designed the study and performed the statistical analysis. JFC conceived the study, participated in its design and coordination, and helped to draft the manuscript. All authors read and approved the final manuscript.
**CONFLICTS OF INTEREST**
The authors declare no conflicts of interest.
**FUNDING**
This work was supported by the grants from Science Foundation of Peking University Cancer Hospital & Institute (No. 2013--18), Beijing Municipal Administration of Hospitals Clinical Medicine Development of special funding support (ZYLX201509), Peking University (PKU) 985 Special Funding for Collaborative Research with PKU Hospitals (2013-5-05), and The National High Technology Research and Development Program of China (863 Program, 2014AA020602).
| [
1,
19578,
1672,
14849,
9838,
426,
29937,
29879,
29896,
29913,
13,
4936,
2751,
13,
13,
29931,
686,
23900,
338,
697,
310,
278,
8236,
9946,
310,
23900,
4475,
4892,
3186,
8157,
322,
967,
29871,
29945,
29899,
6360,
10503,
2561,
6554,
338,
4482,
29892,
1048,
29871,
29896,
29945,
29995,
29899,
29906,
29900,
29995,
29905,
8999,
29992,
29934,
29896,
10725,
1822,
317,
2007,
936,
620,
9739,
338,
385,
11828,
2948,
297,
3657,
15387,
1472,
29899,
8489,
10503,
2561,
322,
17644,
1304,
297,
13030,
23900,
29889,
2398,
29892,
1400,
3372,
1230,
337,
13938,
322,
15352,
301,
962,
561,
2454,
322,
298,
4579,
6352,
681,
1539,
579,
25101,
1603,
1121,
297,
29871,
29929,
29900,
29995,
310,
5758,
284,
1907,
297,
13030,
23900,
5539,
17548,
29934,
29906,
10725,
1822,
365,
962,
561,
2454,
1539,
579,
25101,
338,
4153,
6942,
411,
21188,
1162,
26841,
322,
12463,
10503,
2561,
313,
3267,
29897,
297,
620,
26458,
1661,
29899,
9278,
3038,
13030,
23900,
5539,
17548,
29934,
29941,
10725,
1822,
450,
1967,
13501,
1316,
408,
349,
2544,
29914,
1783,
526,
5279,
1556,
17644,
1304,
363,
301,
962,
561,
2943,
380,
6751,
29892,
3138,
29892,
278,
4771,
24858,
363,
6459,
292,
1539,
579,
2454,
21622,
272,
297,
301,
962,
561,
7573,
7968,
1135,
29871,
29896,
7477,
338,
4482,
5539,
17548,
29934,
29946,
1402,
518,
29992,
29934,
29945,
10725,
1822,
7857,
29892,
11975,
363,
4768,
290,
935,
414,
393,
508,
8500,
4688,
1539,
579,
2454,
27791,
265,
338,
7795,
5611,
304,
22069,
29915,
10503,
2561,
29889,
341,
1772,
16637,
29320,
3704,
9200,
29934,
29940,
2887,
674,
367,
310,
2107,
671,
363,
263,
901,
16232,
12045,
24809,
358,
310,
18778,
284,
1539,
579,
25101,
29889,
13,
13,
29924,
2357,
29934,
29940,
2887,
313,
2460,
29934,
29940,
2887,
470,
3737,
29934,
29879,
29897,
526,
263,
3942,
310,
1095,
6352,
681,
322,
2319,
390,
3521,
18530,
9316,
313,
29896,
29929,
448,
29871,
29906,
29945,
22699,
327,
2247,
297,
3309,
29897,
5539,
17548,
29934,
29953,
10725,
1822,
6811,
29871,
29945,
29900,
29995,
9732,
630,
5199,
3737,
29934,
3521,
2531,
267,
526,
5982,
2629,
278,
23900,
29899,
21264,
630,
20853,
293,
12786,
470,
13855,
488,
11840,
322,
429,
814,
4100,
3168,
2788,
304,
373,
29883,
6352,
267,
470,
21622,
272,
21301,
943,
297,
286,
2520,
6906,
5539,
17548,
29934,
29955,
10725,
1822,
4525,
2319,
390,
3521,
13206,
21337,
508,
367,
29497,
27387,
515,
313,
20227,
470,
14671,
2256,
29897,
21622,
272,
11916,
470,
4768,
5996,
20501,
4841,
322,
2479,
1880,
25806,
322,
260,
15118,
2702,
537,
5539,
17548,
29934,
29947,
10725,
1822,
4721,
2366,
11898,
28585,
393,
263,
1353,
310,
3737,
29934,
29940,
2887,
505,
7037,
16178,
297,
24876,
19263,
29892,
380,
6751,
29892,
322,
18988,
310,
714,
26807,
297,
5164,
4072,
310,
23900,
3704,
13030,
23900,
5539,
17548,
29934,
29929,
1402,
518,
29992,
29934,
29896,
29900,
10725,
1822,
28609,
1286,
29892,
1784,
3737,
29934,
29940,
2887,
505,
884,
1063,
15659,
304,
367,
8855,
630,
411,
301,
962,
561,
2943,
1539,
579,
25101,
310,
13030,
23900,
5539,
17548,
29934,
29896,
29896,
10725,
1822,
13,
13,
797,
278,
2198,
6559,
29892,
591,
8560,
3737,
29934,
29940,
2887,
9200,
2378,
7418,
297,
301,
962,
561,
2943,
260,
12175,
310,
278,
22069,
411,
13030,
23900,
322,
4315,
287,
278,
16712,
368,
13384,
3737,
29934,
29940,
2887,
4475,
304,
301,
962,
561,
2943,
1539,
579,
25101,
29889,
1987,
591,
427,
24476,
263,
6694,
16165,
441,
310,
13030,
23900,
22069,
322,
17809,
278,
12241,
310,
2246,
14020,
3737,
29934,
29940,
2887,
297,
715,
25392,
11916,
29889,
450,
7037,
652,
21780,
995,
310,
278,
4629,
3737,
29934,
29940,
2887,
297,
10121,
14424,
301,
962,
561,
2943,
1539,
579,
25101,
471,
29537,
287,
29889,
16478,
29892,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
29892,
278,
3737,
29934,
3521,
411,
9939,
13600,
29892,
471,
2854,
630,
297,
1790,
16165,
441,
29889,
9788,
29892,
278,
25383,
3646,
2531,
267,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
892,
29537,
287,
491,
17799,
262,
689,
2454,
3519,
29889,
13,
13,
15989,
8647,
29903,
426,
29937,
29879,
29906,
29913,
13,
2751,
25512,
13,
13,
24938,
1535,
9076,
426,
29937,
29879,
29906,
29918,
29896,
29913,
13,
2683,
29899,
13,
13,
1762,
19138,
675,
278,
3737,
29934,
29940,
2887,
393,
892,
8855,
630,
411,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
297,
3517,
13676,
29892,
591,
8560,
263,
1788,
2454,
12845,
9076,
297,
1023,
4223,
21218,
313,
21076,
19302,
322,
2812,
3188,
29897,
701,
304,
5306,
29871,
29941,
29900,
29892,
29871,
29906,
29900,
29896,
29953,
29889,
2860,
2847,
4315,
292,
491,
5183,
278,
4274,
17735,
322,
9846,
29879,
29892,
29871,
29896,
29947,
29955,
7456,
892,
2175,
363,
9262,
29889,
29871,
29945,
29946,
15055,
892,
429,
13347,
5034,
304,
278,
28694,
16614,
29892,
310,
607,
29892,
29871,
29906,
29947,
892,
28190,
11898,
29892,
29871,
29896,
29906,
892,
9076,
7456,
29892,
29871,
29947,
892,
871,
17986,
11898,
29892,
322,
29871,
29947,
871,
8967,
278,
9451,
470,
12608,
310,
2999,
3737,
29934,
29940,
2887,
29889,
9788,
29892,
29871,
29896,
29941,
29941,
15055,
23415,
29871,
29896,
29896,
29945,
3737,
29934,
29940,
2887,
892,
15659,
29889,
4587,
278,
29871,
29896,
29896,
29945,
3737,
29934,
29940,
2887,
29892,
29871,
29929,
29945,
3737,
29934,
29940,
2887,
892,
1476,
304,
367,
6942,
411,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
297,
472,
3203,
697,
17745,
1550,
29871,
29906,
29900,
892,
451,
8855,
630,
411,
278,
1539,
579,
25101,
9310,
20182,
944,
653,
6137,
29871,
29896,
10514,
7230,
29906,
2597,
999,
29899,
1853,
543,
19303,
944,
653,
29899,
15388,
29908,
7690,
3737,
29934,
29899,
29906,
29896,
29892,
29871,
29896,
29900,
29890,
29892,
29871,
29896,
29946,
29947,
29890,
29892,
29871,
29896,
29945,
29945,
29892,
322,
29871,
29906,
29900,
29900,
29883,
892,
278,
1556,
12399,
805,
1862,
29889,
13,
13,
2460,
29934,
3521,
9200,
2378,
7418,
297,
3865,
18367,
411,
301,
962,
561,
2454,
1539,
579,
25101,
470,
451,
426,
29937,
29879,
29906,
29918,
29906,
29913,
13,
2683,
2683,
2683,
2683,
5634,
13,
13,
797,
278,
2198,
6559,
29892,
591,
12242,
287,
304,
12439,
9554,
3737,
29934,
29940,
2887,
8855,
630,
411,
301,
962,
561,
2454,
1539,
579,
25101,
297,
3865,
18367,
29889,
3824,
368,
29892,
591,
8560,
3737,
29934,
3521,
9200,
2378,
7418,
297,
301,
962,
561,
2943,
260,
12175,
411,
1539,
579,
25101,
515,
5320,
13030,
23900,
22069,
322,
9401,
411,
393,
297,
278,
6590,
301,
962,
561,
2943,
1728,
1539,
579,
25101,
29889,
2860,
848,
9068,
322,
7418,
29892,
263,
731,
310,
29871,
29945,
29900,
3737,
29934,
29940,
2887,
892,
15659,
304,
367,
16712,
368,
13384,
1546,
1539,
579,
2454,
301,
962,
561,
7573,
322,
1661,
1539,
579,
2454,
301,
962,
561,
7573,
29892,
310,
607,
29892,
29871,
29941,
29929,
892,
701,
29899,
1727,
7964,
322,
29871,
29896,
29896,
892,
1623,
1072,
7964,
313,
13080,
545,
518,
29896,
10514,
29943,
29896,
2597,
999,
29899,
1853,
543,
1003,
9092,
322,
6137,
518,
29896,
10514,
29911,
29896,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
23829,
11687,
29892,
29871,
29896,
29947,
310,
278,
29871,
29945,
29900,
3737,
29934,
29940,
2887,
892,
884,
9132,
297,
278,
12845,
9076,
29889,
13,
13,
21298,
29924,
2357,
2378,
7418,
310,
3737,
29934,
29940,
2887,
310,
278,
1539,
579,
2454,
322,
1661,
29899,
2527,
579,
2454,
301,
962,
561,
7573,
515,
5320,
22069,
411,
13030,
23900,
850,
24746,
327,
2097,
29899,
29900,
29947,
29899,
29946,
29906,
29896,
29955,
29941,
29899,
29887,
29900,
29900,
29896,
2597,
29937,
29943,
29896,
29913,
13,
13,
4136,
2277,
7488,
29871,
29945,
29900,
16712,
368,
13384,
3737,
29934,
29940,
2887,
297,
1539,
579,
2454,
301,
962,
561,
2943,
9401,
411,
1661,
3068,
2265,
681,
301,
962,
561,
2943,
15659,
491,
9200,
2378,
7418,
297,
5320,
22069,
411,
13030,
23900,
13,
13,
29871,
3737,
29934,
29940,
2887,
462,
1678,
383,
1025,
1735,
313,
29931,
29940,
29974,
7186,
365,
29940,
15805,
259,
349,
995,
13,
29871,
448,
2683,
1378,
448,
2683,
1378,
29899,
448,
1378,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29941,
29955,
29945,
1068,
9651,
29945,
29929,
29889,
29929,
29896,
29955,
462,
418,
29900,
29889,
29900,
29896,
29941,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29906,
29900,
29945,
1068,
9651,
29946,
29929,
29889,
29945,
29896,
29947,
462,
418,
29900,
29889,
29900,
29896,
29946,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29906,
29900,
29900,
29874,
1669,
29946,
29900,
29889,
29945,
29941,
29941,
462,
418,
29900,
29889,
29900,
29896,
29900,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29896,
29947,
29941,
1068,
9651,
29941,
29929,
29889,
29941,
29929,
29941,
462,
418,
29900,
29889,
29900,
29896,
29900,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29906,
29900,
29900,
29890,
1669,
29941,
29947,
29889,
29947,
29906,
29947,
462,
418,
29900,
29889,
29900,
29900,
29947,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29906,
29900,
29900,
29890,
29899,
8508,
3986,
29906,
29929,
29889,
29941,
29896,
29896,
462,
418,
29900,
29889,
29900,
29896,
29929,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29906,
29900,
29900,
29883,
1068,
965,
29896,
29945,
29889,
29946,
29896,
29896,
462,
418,
29900,
29889,
29900,
29900,
29945,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29947,
29955,
18884,
29896,
29945,
29889,
29906,
29929,
29906,
462,
418,
29900,
29889,
29900,
29896,
29941,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29906,
29906,
29946,
1068,
9651,
29896,
29946,
29889,
29953,
29906,
29955,
462,
418,
29900,
29889,
29900,
29900,
29906,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29896,
29946,
29896,
1068,
9651,
29896,
29941,
29889,
29941,
29945,
29900,
462,
418,
29900,
29889,
29900,
29946,
29953,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29947,
29947,
29953,
29899,
29945,
29886,
632,
29929,
29889,
29953,
29953,
29953,
462,
539,
29900,
29889,
29900,
29896,
29955,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29906,
29929,
29900,
1669,
29955,
29889,
29955,
29947,
29941,
462,
539,
29900,
29889,
29900,
29945,
29900,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29941,
29900,
29947,
1669,
29955,
29889,
29945,
29946,
29947,
462,
539,
29900,
29889,
29900,
29900,
29946,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29906,
29946,
29946,
1669,
29945,
29889,
29900,
29945,
29947,
462,
539,
29900,
29889,
29900,
29941,
29896,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29946,
29945,
29906,
1068,
9651,
29946,
29889,
29947,
29947,
29945,
462,
539,
29900,
29889,
29900,
29946,
29955,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29946,
29929,
18884,
29946,
29889,
29941,
29929,
29945,
462,
539,
29900,
29889,
29900,
29941,
29941,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29941,
29947,
29906,
18884,
29946,
29889,
29941,
29945,
29941,
462,
539,
29900,
29889,
29900,
29941,
29906,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29896,
29906,
29945,
29874,
29899,
29945,
29886,
1068,
4706,
29946,
29889,
29941,
29941,
29953,
462,
539,
29900,
29889,
29900,
29900,
29946,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29929,
29906,
29890,
18884,
29946,
29889,
29900,
29947,
29945,
462,
539,
29900,
29889,
29900,
29896,
29941,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29945,
29900,
29941,
1068,
9651,
29941,
29889,
29947,
29906,
29906,
462,
539,
29900,
29889,
29900,
29896,
29955,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29947,
29947,
29945,
29899,
29941,
29886,
632,
29941,
29889,
29946,
29955,
29929,
462,
539,
29900,
29889,
29900,
29946,
29947,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29896,
29906,
29945,
29890,
29899,
29896,
29899,
8508,
1068,
1678,
29941,
29889,
29946,
29941,
29906,
462,
539,
29900,
29889,
29900,
29906,
29896,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29946,
29906,
29946,
29899,
8508,
965,
29941,
29889,
29941,
29945,
29945,
462,
539,
29900,
29889,
29900,
29900,
29947,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29941,
29900,
29900,
1669,
29941,
29889,
29896,
29929,
29946,
462,
539,
29900,
29889,
29900,
29906,
29955,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29946,
29929,
29941,
18884,
29941,
29889,
29900,
29946,
29896,
462,
539,
29900,
29889,
29900,
29941,
29906,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29929,
29929,
29890,
29899,
8508,
965,
29906,
29889,
29929,
29929,
29953,
462,
539,
29900,
29889,
29900,
29900,
29947,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29946,
29900,
29929,
29899,
29941,
29886,
1068,
308,
29906,
29889,
29947,
29953,
29929,
462,
539,
29900,
29889,
29900,
29900,
29947,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29896,
29941,
29900,
29890,
1068,
965,
29906,
29889,
29947,
29896,
29941,
462,
539,
29900,
29889,
29900,
29906,
29896,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29906,
29896,
29947,
18884,
29906,
29889,
29955,
29955,
29953,
462,
539,
29900,
29889,
29900,
29941,
29900,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29945,
29945,
29955,
18884,
29906,
29889,
29955,
29900,
29947,
462,
539,
29900,
29889,
29900,
29906,
29900,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29906,
29955,
29899,
29941,
29886,
632,
29906,
29889,
29953,
29941,
29900,
462,
539,
29900,
29889,
29900,
29900,
29945,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29945,
29890,
18884,
29906,
29889,
29945,
29941,
29953,
462,
539,
29900,
29889,
29900,
29900,
29941,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29953,
29953,
29945,
18884,
29906,
29889,
29946,
29929,
29953,
462,
539,
29900,
29889,
29900,
29900,
29896,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29953,
29953,
29941,
29890,
1669,
29906,
29889,
29941,
29947,
29947,
462,
539,
29900,
29889,
29900,
29906,
29946,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29896,
29929,
29947,
1068,
9651,
29906,
29889,
29941,
29906,
29906,
462,
539,
29900,
29889,
29900,
29906,
29947,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29946,
29929,
29947,
18884,
29906,
29889,
29906,
29929,
29900,
462,
539,
29900,
29889,
29900,
29946,
29953,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29946,
29947,
29955,
29890,
1669,
29906,
29889,
29906,
29906,
29945,
462,
539,
29900,
29889,
29900,
29946,
29906,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29945,
29955,
29946,
29899,
29941,
29886,
632,
29906,
29889,
29906,
29896,
29900,
462,
539,
29900,
29889,
29900,
29906,
29947,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29906,
29896,
1068,
632,
29906,
29889,
29896,
29955,
29947,
462,
539,
29900,
29889,
29900,
29900,
29929,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29906,
29953,
29941,
795,
13935,
29906,
29889,
29900,
29941,
29946,
462,
418,
29900,
29889,
29900,
29941,
29929,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29929,
29946,
1669,
13935,
29906,
29889,
29900,
29947,
29929,
462,
418,
29900,
29889,
29900,
29900,
29900,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29945,
29945,
29896,
29890,
795,
13935,
29906,
29889,
29906,
29953,
29906,
462,
418,
29900,
29889,
29900,
29946,
29941,
13,
29871,
3579,
29882,
4977,
29899,
1026,
29899,
29955,
29887,
29899,
8508,
1068,
539,
13935,
29906,
29889,
29941,
29947,
29900,
462,
418,
29900,
29889,
29900,
29946,
29906,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29941,
29900,
29872,
1068,
965,
13935,
29906,
29889,
29947,
29929,
29906,
462,
418,
29900,
29889,
29900,
29900,
29947,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29906,
29906,
29941,
1068,
965,
13935,
29906,
29889,
29929,
29896,
29896,
462,
418,
29900,
29889,
29900,
29946,
29947,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29906,
29929,
29883,
1669,
13935,
29941,
29889,
29941,
29953,
29947,
462,
418,
29900,
29889,
29900,
29941,
29896,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29941,
29955,
29947,
1669,
13935,
29945,
29889,
29900,
29946,
29946,
462,
418,
29900,
29889,
29900,
29900,
29955,
13,
29871,
3579,
29882,
4977,
29899,
2460,
29934,
29899,
29946,
29947,
29953,
29899,
29941,
29886,
1068,
4706,
13935,
29953,
29889,
29896,
29946,
29947,
462,
418,
29900,
29889,
29900,
29896,
29906,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29946,
29906,
29906,
29874,
795,
13935,
29953,
29889,
29906,
29900,
29955,
462,
418,
29900,
29889,
29900,
29900,
29953,
13,
29871,
298,
4977,
29899,
2460,
29934,
29899,
29941,
29955,
29947,
29899,
8508,
3986,
13935,
29929,
29889,
29941,
29947,
29945,
462,
418,
29900,
29889,
29900,
29900,
29945,
13,
13,
9842,
29901,
365,
29940,
29901,
301,
962,
561,
2943,
29936,
350,
1025,
29892,
3737,
29934,
29940,
2887,
505,
1063,
884,
15659,
297,
278,
3517,
13676,
13,
13,
1917,
310,
278,
2246,
16712,
13384,
3737,
29934,
3521,
297,
24876,
15806,
301,
962,
561,
2943,
1539,
579,
25101,
297,
13030,
23900,
426,
29937,
29879,
29906,
29918,
29941,
29913,
13,
2683,
2683,
2683,
2683,
2683,
9072,
5634,
13,
13,
1762,
8161,
278,
652,
21780,
995,
310,
278,
3737,
29934,
3521,
15659,
491,
3737,
29934,
3521,
9200,
2378,
7418,
29892,
591,
12784,
4832,
3737,
29934,
29940,
2887,
313,
29882,
4977,
29899,
2460,
29934,
29899,
29941,
29955,
29945,
29892,
298,
4977,
29899,
2460,
29934,
29899,
29906,
29900,
29945,
29892,
298,
4977,
29899,
2460,
29934,
29899,
29896,
29947,
29941,
29892,
298,
4977,
29899,
2460,
29934,
29899,
29906,
29900,
29900,
29890,
29892,
298,
4977,
29899,
2460,
29934,
29899,
29941,
29955,
29947,
29892,
322,
298,
4977,
29899,
2460,
29934,
29899,
29946,
29906,
29906,
29874,
467,
1126,
591,
19030,
1009,
4603,
11174,
297,
715,
25392,
11916,
515,
29871,
29906,
29953,
13030,
23900,
22069,
313,
29896,
29946,
411,
301,
962,
561,
2454,
1539,
579,
25101,
322,
29871,
29896,
29906,
22069,
1728,
301,
962,
561,
2454,
1539,
579,
25101,
29892,
6137,
518,
29906,
10514,
29911,
29906,
2597,
999,
29899,
1853,
543,
2371,
29908,
1800,
322,
5320,
22069,
411,
3856,
647,
13030,
10267,
2129,
491,
4323,
23378,
1855,
29899,
2230,
24324,
261,
559,
9704,
19848,
313,
29939,
13079,
29899,
9026,
29934,
467,
450,
2582,
7829,
393,
599,
278,
4832,
3737,
29934,
29940,
2887,
892,
10712,
13384,
297,
13030,
23900,
411,
301,
962,
561,
2943,
1539,
579,
25101,
9401,
411,
278,
508,
22543,
1728,
301,
962,
561,
2943,
1539,
579,
25101,
322,
3856,
647,
10267,
2129,
29892,
310,
4443,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
10371,
1573,
7282,
4328,
313,
13080,
545,
518,
29906,
10514,
29943,
29906,
2597,
999,
29899,
1853,
543,
1003,
29908,
7690,
1987,
24328,
2147,
6607,
1218,
26804,
4695,
11672,
313,
1672,
29907,
29897,
7418,
471,
8560,
304,
7252,
278,
24876,
19263,
13600,
4249,
3737,
29934,
29940,
2887,
470,
13807,
21622,
272,
29320,
1316,
408,
1559,
29883,
1789,
7232,
719,
9599,
3677,
2101,
313,
4741,
29909,
511,
23900,
3677,
2101,
29871,
29896,
29929,
29929,
313,
5454,
29896,
29929,
29929,
511,
5094,
517,
3946,
21203,
29871,
29896,
29929,
22370,
313,
29907,
29979,
29943,
4717,
29906,
29896,
29899,
29896,
511,
322,
10674,
314,
681,
3038,
1559,
16381,
4125,
3677,
2101,
313,
29903,
4174,
467,
1126,
278,
2582,
18694,
393,
278,
14020,
3737,
29934,
3521,
29892,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
29892,
10018,
9939,
13600,
297,
8500,
292,
301,
962,
561,
2454,
1539,
579,
25101,
411,
385,
319,
23129,
995,
310,
29871,
29900,
29889,
29955,
29946,
29946,
313,
13080,
1973,
518,
29941,
10514,
29943,
29941,
2597,
999,
29899,
1853,
543,
1003,
9092,
489,
29961,
29946,
10514,
29943,
29946,
2597,
999,
29899,
1853,
543,
1003,
9092,
322,
6137,
518,
29941,
10514,
29911,
29941,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
512,
6124,
29892,
8855,
800,
4249,
278,
4832,
3737,
29934,
29940,
2887,
892,
884,
29537,
287,
29889,
1126,
278,
8855,
800,
310,
3737,
29934,
29899,
29906,
29900,
29900,
29890,
411,
3737,
29934,
29899,
29896,
29947,
29941,
29892,
3737,
29934,
29899,
29941,
29955,
29945,
411,
3737,
29934,
29899,
29896,
29947,
29941,
322,
3737,
29934,
29899,
29906,
29900,
29900,
29890,
29892,
322,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
411,
3737,
29934,
29899,
29896,
29947,
29941,
29892,
3737,
29934,
29899,
29906,
29900,
29900,
29890,
29892,
3737,
29934,
29899,
29941,
29955,
29945,
29892,
322,
3737,
29934,
29899,
29941,
29955,
29947,
892,
15659,
313,
3562,
518,
29946,
10514,
29911,
29946,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
2180,
1021,
931,
29892,
304,
15544,
565,
278,
6126,
21867,
4603,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
715,
25392,
892,
20601,
515,
278,
23900,
260,
15118,
29892,
591,
16532,
263,
970,
635,
3625,
8783,
313,
29954,
1660,
29896,
29953,
29900,
29906,
29945,
29897,
515,
25166,
12809,
402,
29923,
29949,
2566,
29892,
607,
11122,
278,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
4603,
848,
297,
29871,
29906,
29900,
13030,
508,
22543,
411,
301,
962,
561,
2454,
1539,
579,
25101,
29892,
29871,
29946,
29896,
1728,
301,
962,
561,
2454,
1539,
579,
25101,
29892,
322,
29871,
29896,
29900,
4226,
13030,
260,
12175,
5539,
17548,
29934,
29896,
29906,
10725,
1822,
2138,
9696,
411,
1749,
2582,
297,
715,
25392,
11916,
29892,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
4603,
471,
11664,
16951,
515,
4226,
13030,
260,
15118,
304,
23900,
260,
15118,
411,
301,
962,
561,
2454,
1539,
579,
25101,
9310,
20182,
944,
653,
11479,
29871,
29896,
10514,
7230,
29896,
2597,
999,
29899,
1853,
543,
19303,
944,
653,
29899,
15388,
29908,
7690,
13,
13,
4136,
2277,
315,
1915,
936,
21862,
310,
278,
13030,
23900,
22069,
13,
13,
29871,
315,
1915,
293,
459,
493,
5996,
5680,
259,
26101,
16165,
441,
313,
29876,
29922,
29906,
29953,
29897,
259,
15758,
362,
16165,
441,
313,
29876,
29922,
29945,
29896,
29897,
13,
29871,
448,
2683,
9072,
29899,
448,
2683,
26589,
448,
2683,
1378,
29899,
13,
29871,
3579,
22406,
1068,
313,
6360,
29879,
29897,
462,
29945,
29929,
29889,
29947,
30221,
29953,
29889,
29906,
462,
29871,
29945,
29947,
29889,
29929,
30221,
29947,
29889,
29929,
13,
29871,
3579,
29903,
735,
1068,
462,
462,
462,
29871,
13,
259,
30363,
29924,
744,
462,
965,
29896,
29896,
462,
4706,
29906,
29929,
13,
259,
30363,
29943,
331,
744,
462,
308,
29896,
29945,
462,
4706,
29906,
29906,
13,
29871,
3579,
29911,
29940,
29924,
1068,
462,
462,
462,
29871,
13,
259,
30363,
29902,
29874,
462,
632,
29896,
29900,
462,
4706,
29906,
29947,
13,
259,
30363,
2687,
29874,
462,
9651,
29947,
462,
308,
29929,
13,
259,
30363,
2687,
29890,
462,
9651,
29896,
462,
308,
29896,
13,
259,
30363,
5287,
29874,
462,
965,
29955,
462,
308,
29953,
13,
259,
30363,
5287,
29890,
462,
965,
29900,
462,
308,
29896,
13,
259,
30363,
5667,
462,
632,
29900,
462,
308,
29953,
13,
29871,
3579,
29911,
398,
272,
24235,
313,
4912,
29897,
1068,
308,
29906,
29889,
29955,
29946,
30221,
29896,
29889,
29900,
29946,
462,
29941,
29889,
29900,
29946,
30221,
29896,
29889,
29945,
29896,
13,
29871,
3579,
29911,
7408,
1068,
462,
462,
795,
13,
259,
30363,
29911,
29896,
462,
632,
29906,
29906,
462,
4706,
29941,
29941,
13,
259,
30363,
29911,
29906,
462,
632,
29941,
462,
308,
29896,
29955,
13,
259,
30363,
29911,
29941,
462,
632,
29896,
462,
308,
29896,
13,
29871,
3579,
29940,
7408,
1068,
462,
462,
795,
13,
259,
30363,
29940,
29900,
462,
632,
29896,
29906,
462,
4706,
29946,
29900,
13,
259,
30363,
29940,
29896,
462,
632,
29955,
462,
308,
29896,
13,
259,
30363,
29940,
29906,
462,
632,
29955,
462,
308,
29955,
13,
259,
30363,
29940,
29941,
462,
632,
29900,
462,
308,
29941,
13,
29871,
3579,
29924,
7408,
1068,
462,
462,
795,
13,
259,
30363,
29924,
29900,
462,
632,
29906,
29953,
462,
4706,
29946,
29945,
13,
259,
30363,
29924,
29896,
462,
632,
29900,
462,
308,
29953,
13,
29871,
3579,
29950,
391,
3002,
1068,
462,
462,
9651,
13,
259,
30363,
29909,
1145,
542,
5666,
262,
4125,
462,
29906,
29906,
462,
4706,
29896,
29941,
13,
259,
30363,
29903,
339,
314,
681,
3038,
1559,
16381,
4125,
4706,
29906,
462,
308,
29941,
29946,
13,
259,
30363,
12636,
497,
3038,
13030,
23900,
308,
29906,
462,
308,
29946,
13,
29871,
3579,
29931,
962,
561,
2943,
1539,
579,
25101,
1068,
462,
18884,
13,
259,
30363,
8241,
462,
9651,
29896,
29946,
462,
4706,
29896,
29896,
13,
259,
30363,
3782,
462,
632,
29896,
29906,
462,
4706,
29946,
29900,
13,
13,
21298,
10960,
310,
14020,
3737,
29934,
29940,
2887,
297,
6694,
16165,
441,
310,
29871,
29906,
29953,
13030,
23900,
411,
470,
1728,
301,
962,
561,
2454,
1539,
579,
25101,
322,
5320,
22069,
411,
3856,
647,
13030,
17135,
850,
24746,
327,
2097,
29899,
29900,
29947,
29899,
29946,
29906,
29896,
29955,
29941,
29899,
29887,
29900,
29900,
29906,
2597,
29937,
29943,
29906,
29913,
13,
13,
21298,
1576,
13600,
310,
715,
25392,
18342,
1218,
14020,
3737,
29934,
29940,
2887,
297,
278,
24876,
19263,
310,
301,
962,
561,
2454,
1539,
579,
25101,
297,
6694,
16165,
441,
310,
29871,
29906,
29953,
13030,
23900,
22069,
850,
24746,
327,
2097,
29899,
29900,
29947,
29899,
29946,
29906,
29896,
29955,
29941,
29899,
29887,
29900,
29900,
29941,
2597,
29937,
29943,
29941,
29913,
13,
13,
21298,
1576,
13600,
310,
2998,
21622,
272,
29320,
297,
278,
24876,
19263,
310,
301,
962,
561,
2454,
1539,
579,
25101,
297,
6694,
16165,
441,
310,
13030,
23900,
22069,
850,
24746,
327,
2097,
29899,
29900,
29947,
29899,
29946,
29906,
29896,
29955,
29941,
29899,
29887,
29900,
29900,
29946,
2597,
29937,
29943,
29946,
29913,
13,
13,
4136,
2277,
16641,
29907,
11672,
7418,
310,
4629,
3737,
29934,
29940,
2887,
322,
2998,
21622,
272,
29320,
297,
24876,
19263,
310,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
22069,
13,
13,
29871,
3457,
290,
935,
414,
795,
319,
23129,
418,
29929,
29945,
29995,
8426,
965,
349,
995,
13,
29871,
448,
2683,
22158,
448,
22158,
448,
9072,
489,
448,
1378,
13,
29871,
3579,
5323,
2827,
16165,
441,
1068,
462,
795,
13,
29871,
3737,
29934,
29899,
29896,
29947,
29941,
462,
29871,
29900,
29889,
29945,
29896,
29941,
1678,
29900,
29889,
29906,
29929,
29953,
448,
29871,
29900,
29889,
29955,
29906,
29929,
1678,
29900,
29889,
29896,
29896,
29900,
13,
29871,
3737,
29934,
29899,
29906,
29900,
29900,
29890,
462,
29900,
29889,
29953,
29941,
29900,
1678,
29900,
29889,
29946,
29941,
29896,
448,
29871,
29900,
29889,
29947,
29941,
29900,
1678,
29900,
29889,
29896,
29900,
29906,
13,
29871,
3737,
29934,
29899,
29906,
29900,
29945,
462,
29871,
29900,
29889,
29945,
29941,
29946,
1678,
29900,
29889,
29941,
29896,
29947,
448,
29871,
29900,
29889,
29955,
29946,
29929,
1678,
29900,
29889,
29896,
29896,
29900,
13,
29871,
3737,
29934,
29899,
29941,
29955,
29945,
462,
29871,
29900,
29889,
29953,
29941,
29946,
1678,
29900,
29889,
29946,
29941,
29953,
448,
29871,
29900,
29889,
29947,
29941,
29941,
1678,
29900,
29889,
29896,
29900,
29896,
13,
29871,
3737,
29934,
29899,
29941,
29955,
29947,
462,
29871,
29900,
29889,
29946,
29945,
29900,
1678,
29900,
29889,
29906,
29906,
29947,
448,
29871,
29900,
29889,
29953,
29955,
29896,
1678,
29900,
29889,
29896,
29896,
29941,
13,
29871,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
462,
29900,
29889,
29955,
29946,
29946,
1678,
29900,
29889,
29945,
29955,
29900,
448,
29871,
29900,
29889,
29929,
29896,
29947,
1678,
29900,
29889,
29900,
29947,
29929,
13,
29871,
14645,
29909,
462,
418,
29900,
29889,
29953,
29941,
29945,
1678,
29900,
29889,
29941,
29946,
29955,
448,
29871,
29900,
29889,
29929,
29906,
29941,
1678,
29900,
29889,
29941,
29953,
29947,
13,
29871,
12766,
29896,
29929,
29929,
462,
1678,
29900,
29889,
29945,
29945,
29953,
1678,
29900,
29889,
29906,
29946,
29929,
448,
29871,
29900,
29889,
29947,
29953,
29941,
1678,
29900,
29889,
29955,
29896,
29896,
13,
29871,
315,
29979,
29943,
4717,
29906,
29896,
29896,
462,
29900,
29889,
29945,
29946,
29900,
1678,
29900,
29889,
29906,
29941,
29946,
448,
29871,
29900,
29889,
29947,
29946,
29945,
1678,
29900,
29889,
29955,
29929,
29896,
13,
29871,
317,
4174,
462,
418,
29900,
29889,
29945,
29946,
29947,
1678,
29900,
29889,
29906,
29946,
29896,
448,
29871,
29900,
29889,
29947,
29945,
29945,
1678,
29900,
29889,
29955,
29945,
29896,
13,
29871,
3579,
19448,
16165,
441,
1068,
462,
9651,
13,
29871,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
462,
29900,
29889,
29947,
29947,
29900,
1678,
29900,
29889,
29955,
29947,
29955,
29899,
29900,
29889,
29929,
29955,
29906,
418,
29900,
29889,
29900,
29900,
29900,
13,
29871,
3579,
3596,
22069,
1068,
462,
462,
13,
29871,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
462,
29900,
29889,
29955,
29929,
29906,
1678,
29900,
29889,
29953,
29947,
29947,
29899,
29900,
29889,
29947,
29929,
29953,
418,
29900,
29889,
29900,
29900,
29900,
13,
13,
9842,
29901,
14645,
29909,
29901,
1559,
29883,
1789,
7232,
719,
9599,
3677,
2101,
29936,
12766,
29896,
29929,
29929,
29901,
1559,
833,
29882,
2941,
10492,
3677,
2101,
29899,
29896,
29929,
29929,
29936,
315,
29979,
16359,
29909,
29906,
29896,
29896,
29901,
5094,
517,
3946,
13027,
29899,
29896,
29929,
29899,
20777,
29936,
317,
4174,
29901,
10674,
314,
681,
3038,
1559,
16381,
4125,
3677,
2101,
13,
13,
4136,
2277,
2994,
2674,
800,
4249,
278,
4629,
3737,
29934,
29940,
2887,
297,
6694,
16165,
441,
13,
13,
29871,
3737,
29934,
29940,
2887,
308,
3737,
29934,
29899,
29896,
29947,
29941,
268,
3737,
29934,
29899,
29906,
29900,
29900,
29890,
1678,
3737,
29934,
29899,
29906,
29900,
29945,
268,
3737,
29934,
29899,
29941,
29955,
29945,
268,
3737,
29934,
29899,
29941,
29955,
29947,
462,
462,
18884,
13,
29871,
448,
9072,
29899,
448,
28400,
448,
28400,
448,
28400,
448,
28400,
448,
1378,
448,
22158,
448,
28400,
448,
28400,
448,
28400,
448,
28400,
13,
462,
364,
965,
349,
965,
364,
965,
349,
965,
364,
308,
349,
539,
364,
965,
349,
965,
364,
965,
349,
13,
29871,
3579,
2460,
29934,
29899,
29896,
29947,
29941,
1068,
462,
462,
462,
462,
462,
462,
965,
13,
29871,
3579,
2460,
29934,
29899,
29906,
29900,
29900,
29890,
1068,
259,
3579,
29900,
29889,
29953,
29929,
29929,
1068,
259,
3579,
29900,
29889,
29900,
29900,
29900,
1068,
462,
462,
462,
462,
462,
29871,
13,
29871,
3579,
2460,
29934,
29899,
29906,
29900,
29945,
1068,
268,
29900,
29889,
29900,
29955,
29945,
4706,
29900,
29889,
29953,
29947,
29947,
4706,
29900,
29889,
29906,
29947,
29946,
4706,
29900,
29889,
29896,
29906,
29896,
462,
462,
462,
795,
13,
29871,
3579,
2460,
29934,
29899,
29941,
29955,
29945,
1068,
1678,
3579,
29900,
29889,
29945,
29946,
29929,
1068,
259,
3579,
29900,
29889,
29900,
29900,
29896,
1068,
259,
3579,
29900,
29889,
29953,
29947,
29906,
1068,
259,
3579,
29900,
29889,
29900,
29900,
29900,
1068,
1678,
29900,
29889,
29896,
29947,
29945,
418,
29900,
29889,
29941,
29896,
29947,
462,
462,
4706,
13,
29871,
3579,
2460,
29934,
29899,
29941,
29955,
29947,
1068,
268,
29900,
29889,
29896,
29941,
29945,
4706,
29900,
29889,
29946,
29953,
29929,
4706,
29900,
29889,
29941,
29900,
29896,
4706,
29900,
29889,
29900,
29929,
29929,
4706,
29900,
29889,
29900,
29906,
29896,
418,
29900,
29889,
29929,
29900,
29929,
1678,
29900,
29889,
29941,
29900,
29941,
4706,
29900,
29889,
29900,
29929,
29955,
462,
1678,
13,
29871,
3579,
2460,
29934,
29899,
29946,
29906,
29906,
1068,
1678,
3579,
29900,
29889,
29941,
29953,
29929,
1068,
259,
3579,
29900,
29889,
29900,
29946,
29896,
1068,
259,
3579,
29900,
29889,
29945,
29945,
29946,
1068,
259,
3579,
29900,
29889,
29900,
29900,
29896,
1068,
259,
13935,
29900,
29889,
29900,
29896,
29929,
268,
29900,
29889,
29929,
29906,
29896,
259,
3579,
29900,
29889,
29946,
29896,
29955,
1068,
259,
3579,
29900,
29889,
29900,
29906,
29900,
1068,
259,
3579,
29900,
29889,
29955,
29941,
29945,
1068,
259,
3579,
29900,
29889,
29900,
29900,
29900,
1068,
13,
13,
19448,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
8500,
292,
301,
962,
561,
2454,
1539,
579,
25101,
310,
13030,
23900,
426,
29937,
29879,
29906,
29918,
29946,
29913,
13,
2683,
2683,
2683,
2683,
1378,
13,
13,
2744,
1228,
16165,
441,
19849,
310,
29871,
29946,
29900,
301,
962,
561,
2454,
1539,
579,
2454,
13030,
23900,
4251,
322,
29871,
29896,
29896,
1661,
29899,
368,
29885,
561,
2454,
1539,
579,
2454,
4251,
471,
1304,
304,
4340,
11539,
278,
652,
21780,
995,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
313,
3562,
518,
29906,
10514,
29911,
29906,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
450,
715,
25392,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
11174,
892,
10087,
491,
3855,
13079,
29899,
9026,
29934,
322,
16641,
29907,
11672,
7418,
471,
8560,
29889,
450,
4603,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
11916,
411,
301,
962,
561,
2454,
1539,
579,
25101,
471,
16951,
6133,
1135,
1906,
1728,
301,
962,
561,
2454,
1539,
579,
25101,
29892,
13747,
411,
278,
2582,
310,
6694,
16165,
441,
29889,
16641,
29907,
7418,
7829,
393,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
10371,
1573,
1880,
652,
21780,
13600,
411,
385,
319,
23129,
995,
310,
29871,
29900,
29889,
29947,
29947,
29900,
313,
3562,
518,
29941,
10514,
29911,
29941,
2597,
999,
29899,
1853,
543,
2371,
9092,
322,
11479,
518,
29945,
29909,
10514,
29943,
29945,
2597,
999,
29899,
1853,
543,
1003,
29908,
7690,
16478,
29892,
278,
6694,
16165,
441,
322,
8845,
16165,
441,
892,
23387,
491,
4226,
5281,
278,
3737,
29934,
29899,
29946,
29906,
29906,
4603,
848,
322,
263,
1880,
652,
21780,
13600,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
471,
1603,
8900,
313,
29909,
23129,
29922,
29900,
29889,
29955,
29929,
29906,
29892,
6137,
518,
29941,
10514,
29911,
29941,
2597,
999,
29899,
1853,
543,
2371,
9092,
322,
11479,
518,
29945,
29933,
10514,
29943,
29945,
2597,
999,
29899,
1853,
543,
1003,
29908,
7690,
13,
13,
21298,
19448,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
408,
263,
4768,
290,
935,
261,
363,
301,
962,
561,
7573,
1539,
579,
25101,
29905,
13,
1068,
29909,
1068,
29889,
450,
13600,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
278,
24876,
19263,
310,
301,
962,
561,
2454,
1539,
579,
25101,
297,
8845,
16165,
441,
310,
29871,
29945,
29896,
13030,
23900,
22069,
29889,
3579,
29933,
1068,
29889,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
4603,
848,
515,
1716,
310,
6694,
322,
8845,
16165,
441,
29879,
892,
4226,
1891,
322,
23387,
29889,
450,
652,
21780,
995,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
8500,
292,
301,
962,
561,
2454,
1539,
579,
25101,
297,
599,
22069,
471,
29537,
287,
24630,
24746,
327,
2097,
29899,
29900,
29947,
29899,
29946,
29906,
29896,
29955,
29941,
29899,
29887,
29900,
29900,
29945,
2597,
29937,
29943,
29945,
29913,
13,
13,
6816,
273,
8000,
29892,
278,
8855,
800,
1546,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
322,
278,
24899,
936,
5680,
3704,
5046,
29892,
23346,
29892,
9825,
5996,
1014,
8768,
29892,
323,
398,
272,
24235,
29892,
323,
7408,
29892,
341,
7408,
29892,
322,
278,
301,
962,
561,
2943,
1539,
579,
25101,
297,
599,
22069,
892,
7405,
630,
29889,
450,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
4603,
3233,
3109,
1135,
278,
5700,
29899,
2696,
995,
515,
278,
16641,
29907,
7418,
471,
3342,
408,
376,
29931,
340,
4603,
29908,
322,
393,
901,
1135,
278,
5700,
29899,
2696,
995,
471,
3342,
408,
376,
16382,
4603,
1642,
450,
2582,
7829,
393,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
471,
8855,
630,
411,
9825,
5996,
1014,
1853,
29892,
323,
7408,
29892,
322,
21622,
272,
24235,
26742,
2164,
491,
29871,
29906,
29889,
29945,
29945,
7477,
29892,
263,
5700,
29899,
2696,
995,
515,
16641,
29907,
7418,
411,
301,
962,
561,
2943,
1539,
579,
25101,
408,
2106,
2286,
297,
599,
22069,
411,
13030,
23900,
313,
3562,
518,
29945,
10514,
29911,
29945,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
13,
13,
4136,
2277,
2994,
23445,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
411,
24899,
936,
5680,
297,
599,
29871,
29955,
29955,
22069,
411,
13030,
23900,
13,
13,
29871,
315,
1915,
936,
5680,
965,
17511,
4603,
259,
5057,
4603,
259,
349,
29899,
1767,
13,
29871,
448,
2683,
28400,
448,
9072,
5634,
448,
2683,
448,
1378,
13,
29871,
3579,
22406,
1068,
313,
6360,
29879,
29897,
462,
462,
462,
13,
259,
30363,
4488,
29953,
29900,
462,
4706,
29896,
29945,
18884,
29906,
29906,
462,
29900,
29889,
29947,
29896,
29946,
13,
259,
30363,
30386,
29953,
29900,
462,
308,
29896,
29953,
18884,
29906,
29896,
462,
13,
29871,
3579,
29954,
1581,
1068,
462,
462,
462,
418,
29900,
29889,
29906,
29906,
29953,
13,
259,
30363,
29924,
744,
462,
4706,
29896,
29946,
18884,
29906,
29953,
462,
13,
259,
30363,
29943,
331,
744,
462,
418,
29896,
29947,
18884,
29896,
29929,
462,
13,
29871,
3579,
29950,
391,
3002,
1068,
462,
462,
462,
259,
29900,
29889,
29900,
29896,
29929,
13,
259,
30363,
29903,
4174,
462,
308,
29896,
29906,
18884,
29906,
29941,
462,
13,
259,
30363,
3035,
29907,
462,
308,
29906,
29900,
18884,
29896,
29953,
462,
13,
259,
30363,
29903,
18367,
462,
4706,
29900,
462,
29953,
462,
29871,
13,
29871,
3579,
29911,
398,
272,
24235,
313,
4912,
29897,
1068,
418,
29906,
29889,
29953,
29900,
30221,
29896,
29889,
29941,
29906,
308,
29941,
29889,
29906,
29900,
30221,
29896,
29889,
29941,
29947,
3986,
29900,
29889,
29900,
29945,
29929,
13,
29871,
3579,
29911,
398,
272,
24235,
313,
4912,
29897,
1068,
462,
462,
308,
29900,
29889,
29900,
29906,
29896,
13,
259,
30363,
4488,
29906,
29889,
29945,
29945,
462,
418,
29906,
29896,
18884,
29896,
29955,
462,
13,
259,
30363,
30386,
29906,
29889,
29945,
29945,
462,
539,
29896,
29896,
18884,
29906,
29947,
462,
13,
29871,
3579,
29911,
7408,
1068,
462,
462,
462,
268,
29900,
29889,
29900,
29896,
29906,
13,
259,
30363,
29911,
29896,
462,
3986,
29906,
29947,
18884,
29906,
29955,
462,
13,
259,
30363,
29911,
29906,
29899,
29941,
462,
4706,
29946,
462,
29896,
29947,
462,
13,
29871,
3579,
29924,
7408,
1068,
462,
462,
462,
268,
13,
259,
30363,
29924,
29900,
462,
3986,
29941,
29896,
18884,
29946,
29900,
462,
29900,
29889,
29941,
29929,
29896,
13,
259,
30363,
29924,
29896,
462,
3986,
29896,
462,
29945,
462,
29871,
13,
29871,
3579,
29931,
962,
561,
2943,
1539,
579,
25101,
1068,
462,
462,
539,
13,
259,
30363,
3782,
313,
29940,
29900,
29897,
462,
268,
29941,
29900,
18884,
29906,
29906,
462,
29900,
29889,
29900,
29900,
29900,
13,
259,
30363,
8241,
313,
29940,
29896,
29899,
29941,
29897,
462,
29871,
29906,
462,
29906,
29941,
462,
13,
13,
797,
6124,
29892,
278,
8855,
800,
310,
301,
962,
561,
2454,
2943,
1539,
579,
25101,
411,
278,
24899,
936,
5680,
892,
884,
3902,
4395,
29889,
450,
2582,
7829,
393,
7282,
19869,
471,
8900,
1546,
301,
962,
561,
2454,
1539,
579,
25101,
322,
278,
24899,
936,
4682,
21622,
272,
24235,
29892,
541,
451,
5046,
29892,
23346,
29892,
9825,
3002,
1014,
1853,
29892,
323,
7408,
29892,
322,
341,
7408,
313,
3562,
518,
29953,
10514,
29911,
29953,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
16564,
373,
278,
2038,
2582,
29892,
9825,
3002,
1014,
1853,
322,
323,
7408,
29914,
29873,
398,
272,
24235,
1795,
367,
278,
7037,
1970,
12449,
13879,
363,
278,
15477,
1546,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
4603,
322,
301,
962,
561,
2454,
1539,
579,
25101,
29889,
2860,
10365,
358,
310,
278,
7037,
1970,
12449,
13879,
29892,
9825,
3002,
1014,
1853,
322,
323,
7408,
29892,
470,
9825,
3002,
1014,
1853,
322,
21622,
272,
24235,
29892,
278,
7736,
29879,
364,
2219,
359,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
363,
301,
962,
561,
2454,
1539,
579,
25101,
892,
29871,
29896,
29941,
29889,
29953,
29946,
29945,
313,
29929,
29945,
29995,
8426,
29892,
29871,
29906,
29889,
29953,
29955,
29955,
29899,
29953,
29929,
29889,
29945,
29945,
29941,
29936,
334,
29925,
29930,
29922,
29900,
29889,
29900,
29900,
29906,
29897,
322,
29871,
29896,
29896,
29889,
29946,
29945,
29929,
313,
29929,
29945,
29995,
8426,
29892,
29871,
29906,
29889,
29941,
29941,
29955,
29899,
29945,
29953,
29889,
29896,
29896,
29947,
29936,
334,
29925,
29930,
29922,
29900,
29889,
29900,
29900,
29941,
511,
8307,
29892,
2788,
411,
278,
7618,
311,
6323,
313,
29896,
29945,
29889,
29953,
29947,
29906,
29936,
29871,
29929,
29945,
29995,
8426,
29892,
29871,
29941,
29889,
29941,
29946,
29896,
29899,
29955,
29941,
29889,
29945,
29929,
29953,
29936,
334,
29925,
29930,
29922,
29900,
29889,
29900,
29900,
29900,
29897,
322,
23941,
263,
4549,
15477,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
411,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
313,
3562,
518,
29955,
10514,
29911,
29955,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
1551,
278,
916,
1361,
29892,
278,
3483,
952,
267,
310,
278,
848,
515,
402,
1660,
29896,
29953,
29900,
29906,
29945,
884,
17845,
393,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
11174,
297,
23900,
260,
15118,
471,
6942,
411,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
297,
853,
27432,
403,
7418,
313,
1955,
29892,
29871,
29953,
29889,
29945,
29900,
29900,
29936,
29871,
29929,
29945,
29995,
8426,
29892,
29871,
29896,
29889,
29896,
29941,
29953,
29899,
29941,
29955,
29889,
29906,
29900,
29941,
29892,
349,
29922,
29900,
29889,
29900,
29941,
29945,
29897,
322,
1773,
27432,
403,
7418,
313,
328,
5143,
287,
6323,
29892,
29871,
29947,
29889,
29896,
29941,
29941,
29936,
29871,
29929,
29945,
29995,
8426,
29892,
29871,
29896,
29889,
29896,
29900,
29941,
29899,
29945,
29929,
29889,
29929,
29947,
29953,
29892,
349,
29922,
29900,
29889,
29900,
29946,
29900,
29897,
313,
3562,
518,
29955,
10514,
29911,
29955,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
450,
4891,
1147,
2450,
1546,
1422,
4559,
2752,
4340,
28585,
278,
15477,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
411,
301,
962,
561,
2943,
1539,
579,
25101,
29889,
13,
13,
4136,
2277,
2994,
23445,
310,
301,
962,
561,
2454,
2943,
1539,
579,
25101,
411,
24899,
936,
5680,
297,
599,
29871,
29955,
29955,
22069,
411,
13030,
23900,
13,
13,
29871,
315,
1915,
936,
5680,
308,
365,
29940,
29899,
308,
365,
29940,
29974,
308,
349,
995,
13,
29871,
448,
2683,
1378,
448,
28400,
448,
28400,
448,
1378,
13,
29871,
3579,
22406,
1068,
462,
462,
9651,
13,
259,
30363,
4488,
29953,
29900,
462,
418,
29906,
29953,
965,
29896,
29896,
965,
29896,
29889,
29900,
29900,
29900,
13,
259,
30363,
30386,
29953,
29900,
462,
539,
29906,
29953,
965,
29896,
29896,
965,
13,
29871,
3579,
29954,
1581,
1068,
462,
462,
308,
13,
259,
30363,
29924,
744,
462,
418,
29906,
29955,
965,
29896,
29941,
965,
29900,
29889,
29929,
29929,
29945,
13,
259,
30363,
29943,
331,
744,
462,
1678,
29906,
29945,
965,
29896,
29906,
965,
13,
29871,
3579,
29950,
391,
3002,
1068,
462,
462,
418,
13,
259,
30363,
29903,
4174,
462,
539,
29906,
29906,
965,
29896,
29941,
965,
29900,
29889,
29929,
29953,
29906,
13,
259,
30363,
3035,
29907,
462,
539,
29906,
29947,
965,
29947,
9651,
13,
259,
30363,
29903,
18367,
462,
418,
29906,
9651,
29946,
9651,
13,
29871,
3579,
29911,
398,
272,
24235,
313,
4912,
29897,
1068,
1678,
29906,
29889,
29947,
29955,
30221,
29896,
29889,
29946,
29955,
1678,
29941,
29889,
29896,
29906,
30221,
29896,
29889,
29896,
29929,
1678,
29900,
29889,
29946,
29955,
29941,
13,
29871,
3579,
29911,
398,
272,
24235,
313,
4912,
29897,
1068,
462,
9651,
13,
259,
30363,
4488,
29906,
29889,
29945,
29945,
462,
1678,
29941,
29896,
965,
29955,
9651,
29900,
29889,
29900,
29896,
29946,
13,
259,
30363,
30386,
29906,
29889,
29945,
29945,
462,
268,
29906,
29896,
965,
29896,
29947,
965,
13,
29871,
3579,
29911,
7408,
1068,
462,
462,
4706,
13,
259,
30363,
29911,
29896,
462,
4706,
29941,
29929,
965,
29896,
29953,
965,
29900,
29889,
29941,
29896,
29955,
13,
259,
30363,
29911,
29906,
29899,
29941,
462,
418,
29896,
29941,
965,
29929,
9651,
13,
29871,
3579,
29924,
7408,
1068,
462,
462,
4706,
29900,
29889,
29900,
29953,
29941,
13,
259,
30363,
29924,
29900,
462,
4706,
29945,
29900,
965,
29906,
29896,
965,
13,
259,
30363,
29924,
29896,
462,
4706,
29906,
9651,
29946,
9651,
13,
29871,
3579,
2460,
29934,
29899,
29946,
29906,
29906,
4603,
1068,
462,
632,
29900,
29889,
29900,
29900,
29900,
13,
259,
30363,
29931,
340,
462,
539,
29941,
29900,
965,
29906,
9651,
13,
259,
30363,
16382,
462,
418,
29906,
29906,
965,
29906,
29941,
965,
13,
13,
4136,
2277,
438,
1289,
29879,
364,
2219,
359,
313,
1955,
29879,
29897,
310,
1880,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
4603,
363,
301,
962,
561,
2454,
2943,
1539,
579,
25101,
297,
599,
29871,
29955,
29955,
22069,
411,
13030,
23900,
13,
13,
462,
29871,
11263,
311,
6323,
1678,
29929,
29945,
29995,
8426,
3986,
349,
995,
259,
2087,
5143,
287,
6323,
1678,
29929,
29945,
29995,
8426,
3986,
349,
995,
259,
2087,
5143,
287,
6323,
1678,
29929,
29945,
29995,
8426,
3986,
349,
995,
13,
29871,
448,
9072,
489,
448,
1378,
29899,
448,
9072,
29899,
448,
1378,
448,
9072,
448,
9072,
29899,
448,
1378,
448,
9072,
448,
9072,
29899,
448,
1378,
13,
29871,
3579,
29949,
332,
6559,
1068,
462,
462,
462,
462,
462,
462,
9651,
13,
29871,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
308,
29896,
29945,
29889,
29953,
29947,
29906,
418,
29941,
29889,
29941,
29946,
29896,
29899,
29955,
29941,
29889,
29945,
29929,
29953,
1678,
29900,
29889,
29900,
29900,
29900,
418,
29896,
29941,
29889,
29953,
29946,
29945,
29985,
29874,
29985,
418,
29906,
29889,
29953,
29955,
29955,
29899,
29953,
29929,
29889,
29945,
29945,
29941,
1678,
29900,
29889,
29900,
29900,
29906,
418,
29896,
29896,
29889,
29946,
29945,
29929,
29985,
29890,
29985,
418,
29906,
29889,
29941,
29941,
29955,
29899,
29945,
29953,
29889,
29896,
29947,
29947,
1678,
29900,
29889,
29900,
29900,
29941,
13,
29871,
3579,
29954,
1660,
29896,
29953,
29900,
29906,
29945,
1068,
462,
462,
462,
462,
462,
462,
632,
13,
29871,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
308,
29953,
29889,
29945,
29900,
29900,
539,
29896,
29889,
29896,
29941,
29953,
29899,
29941,
29955,
29889,
29906,
29900,
29941,
1678,
29900,
29889,
29900,
29941,
29945,
418,
29947,
29889,
29896,
29941,
29941,
29985,
29883,
29985,
539,
29896,
29889,
29896,
29900,
29941,
29899,
29945,
29929,
29889,
29929,
29947,
29953,
1678,
29900,
29889,
29900,
29946,
29900,
462,
462,
259,
13,
13,
29985,
29874,
29985,
1576,
10365,
287,
6323,
471,
7625,
491,
640,
22155,
278,
13879,
310,
9825,
3002,
322,
323,
22950,
29889,
13,
13,
29985,
29890,
29985,
1576,
10365,
287,
6323,
471,
7625,
491,
640,
22155,
278,
13879,
310,
9825,
3002,
322,
21622,
272,
2159,
29889,
13,
13,
29985,
29883,
29985,
1576,
10365,
287,
6323,
471,
7625,
491,
640,
22155,
278,
13879,
310,
5046,
322,
323,
7408,
29889,
13,
13,
23084,
2463,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
3646,
2531,
267,
393,
1795,
367,
9701,
297,
301,
962,
561,
2454,
1539,
579,
25101,
426,
29937,
29879,
29906,
29918,
29945,
29913,
13,
2683,
2683,
2683,
2683,
2683,
489,
13,
13,
29954,
5428,
278,
2114,
393,
278,
4768,
5996,
26002,
310,
3737,
29934,
29940,
2887,
589,
387,
2785,
337,
3687,
373,
278,
8820,
310,
1009,
22525,
29892,
591,
12242,
287,
304,
12439,
278,
7037,
22525,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
9701,
297,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
491,
18988,
322,
848,
1375,
292,
29889,
3824,
368,
29892,
278,
25383,
22525,
310,
278,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
892,
29537,
287,
491,
278,
7395,
2566,
29892,
3737,
4789,
4339,
322,
263,
3001,
310,
29871,
29941,
29941,
29900,
29929,
25383,
3646,
2531,
267,
892,
15659,
29889,
1987,
29892,
402,
1660,
29945,
29896,
29947,
29945,
29906,
322,
402,
1660,
29945,
29896,
29947,
29945,
29941,
892,
16532,
515,
25166,
12809,
29892,
607,
11122,
1716,
278,
286,
29934,
3521,
322,
278,
3737,
29934,
3521,
4603,
8722,
310,
29871,
29896,
29906,
29953,
13030,
23900,
22069,
29889,
29871,
29906,
29900,
29945,
29906,
2531,
267,
1302,
29899,
735,
13120,
411,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
892,
7625,
1156,
29537,
292,
278,
20035,
29889,
18008,
368,
29892,
29871,
29929,
29947,
29941,
13030,
23900,
22069,
472,
405,
29900,
29899,
29941,
7408,
892,
16532,
515,
450,
1815,
2265,
5739,
608,
27076,
313,
9472,
12739,
29897,
322,
29871,
29946,
29947,
29946,
29906,
16712,
13384,
2531,
267,
297,
301,
962,
561,
2943,
1539,
579,
25101,
508,
22543,
9401,
411,
1661,
29899,
2527,
579,
2454,
508,
22543,
892,
15659,
29889,
9788,
29892,
304,
1284,
7037,
9554,
3646,
2531,
267,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
9701,
297,
301,
962,
561,
2943,
1539,
579,
25101,
310,
13030,
23900,
29892,
278,
2582,
515,
278,
2038,
3483,
952,
267,
892,
23387,
322,
263,
3001,
310,
29871,
29953,
29896,
2531,
267,
892,
2175,
313,
3562,
518,
29947,
10514,
29911,
29947,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
1987,
1438,
2531,
267,
892,
4967,
287,
304,
18530,
4625,
3002,
313,
17080,
29897,
7418,
297,
278,
15350,
7967,
4205,
29941,
7395,
2566,
313,
29966,
1124,
597,
1885,
687,
397,
275,
29889,
29883,
9877,
29889,
2395,
293,
29889,
267,
29958,
467,
450,
4768,
5996,
10174,
310,
16798,
415,
19263,
29892,
8608,
29892,
322,
26823,
1374,
25715,
706,
18411,
11122,
2999,
3646,
2531,
267,
29889,
9267,
310,
278,
2531,
267,
892,
4475,
304,
25348,
322,
26823,
9956,
29889,
1126,
1556,
278,
2531,
267,
6766,
408,
22699,
375,
322,
3813,
10800,
7117,
313,
3562,
518,
29929,
10514,
29911,
29929,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
13,
13,
4136,
2277,
450,
7037,
3646,
2531,
267,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
9701,
297,
301,
962,
561,
2454,
1539,
579,
25101,
15659,
491,
8500,
292,
491,
7395,
2566,
29892,
3737,
4789,
4339,
322,
1375,
292,
310,
278,
848,
515,
402,
29923,
29949,
322,
323,
11135,
29909,
13,
13,
29871,
15350,
23858,
259,
15350,
6139,
13,
29871,
448,
9072,
448,
2683,
2683,
2683,
2683,
2683,
1378,
29899,
13,
29871,
383,
29979,
3217,
29896,
308,
383,
29979,
12064,
322,
1302,
2356,
29899,
1111,
309,
5354,
6943,
29871,
29896,
13,
29871,
315,
29990,
29941,
11341,
29896,
4706,
8950,
554,
457,
313,
29907,
29899,
29990,
29941,
29899,
29907,
3184,
361,
29897,
337,
14268,
29871,
29896,
13,
29871,
349,
19127,
29941,
3986,
15680,
5184,
13574,
3632,
1189,
29871,
29941,
313,
29928,
1883,
3021,
4233,
29897,
13,
29871,
17674,
29941,
29941,
3986,
1006,
280,
2679,
262,
29871,
29941,
29941,
13,
29871,
350,
29928,
29950,
29906,
965,
29941,
29899,
29882,
11279,
3594,
4187,
4316,
403,
316,
29882,
11279,
1885,
559,
29892,
1134,
29871,
29906,
13,
29871,
390,
12750,
29896,
29928,
29896,
4706,
18130,
359,
290,
284,
365,
29896,
5354,
6943,
29871,
29896,
13,
29871,
402,
2891,
29906,
3986,
3144,
329,
314,
293,
29899,
2251,
7003,
562,
7492,
1301,
9103,
559,
29871,
29906,
29892,
1380,
2878,
898,
9315,
313,
294,
1595,
403,
626,
262,
25730,
550,
571,
559,
29871,
29906,
29897,
13,
29871,
383,
2190,
5454,
308,
383,
273,
535,
29875,
385,
29747,
29892,
19595,
362,
2318,
319,
13,
29871,
349,
3308,
29955,
3986,
19923,
473,
333,
2904,
403,
14710,
559,
29871,
29955,
3632,
1189,
313,
29903,
29889,
274,
406,
1730,
23395,
29897,
13,
29871,
796,
22498,
29941,
29953,
29906,
4706,
503,
3742,
19917,
26823,
29871,
29941,
29953,
29906,
13,
29871,
349,
3557,
1525,
308,
26823,
7911,
1883,
457,
1374,
25715,
271,
559,
29892,
337,
14268,
1134,
29892,
382,
13,
29871,
315,
29896,
29947,
4877,
29945,
29953,
418,
25173,
359,
608,
29871,
29896,
29947,
1722,
5183,
3515,
29871,
29945,
29953,
13,
29871,
9033,
29950,
29954,
3301,
29896,
29896,
29909,
268,
390,
1251,
402,
3557,
559,
5039,
1218,
26823,
29871,
29896,
29896,
29909,
13,
29871,
349,
29911,
6530,
29896,
308,
11137,
8141,
1417,
412,
415,
680,
12312,
5354,
29871,
29896,
13,
29871,
315,
6530,
29907,
29947,
29945,
29909,
539,
1302,
2356,
29899,
1111,
309,
5354,
6943,
29871,
29947,
29945,
29909,
13,
29871,
7495,
29933,
29906,
3986,
1301,
700,
2265,
310,
8982,
14388,
29906,
29892,
29871,
29906,
13,
29871,
20134,
29963,
29946,
29906,
29900,
29950,
29896,
418,
21301,
272,
310,
722,
5876,
362,
29871,
29946,
29899,
29906,
29900,
3632,
1189,
29871,
29896,
313,
29928,
1883,
3021,
4233,
29897,
13,
29871,
349,
5607,
29934,
29906,
29967,
4706,
24324,
261,
559,
313,
29934,
3521,
29897,
1944,
313,
29928,
3521,
10624,
29897,
1248,
668,
415,
680,
435,
29892,
29871,
29896,
29941,
29889,
29941,
29895,
27838,
13,
29871,
9033,
1367,
29945,
29933,
4706,
15531,
8261,
28923,
5354,
29871,
29945,
29933,
313,
21055,
29943,
29896,
29899,
4561,
29897,
13,
29871,
383,
2190,
8426,
308,
383,
273,
535,
29875,
385,
29747,
29892,
19595,
362,
2318,
306,
13,
29871,
9033,
29950,
1692,
29943,
29896,
29906,
418,
390,
1251,
1410,
273,
457,
22699,
327,
680,
14523,
7329,
313,
1692,
29943,
29897,
29871,
29896,
29906,
13,
29871,
315,
3235,
29950,
3986,
5094,
17082,
457,
9013,
15520,
24972,
29906,
29899,
1285,
17225,
26823,
13,
29871,
317,
29896,
10593,
29906,
308,
269,
561,
292,
359,
457,
29899,
29896,
29899,
561,
25715,
403,
337,
14268,
29871,
29906,
13,
29871,
349,
6530,
15715,
29929,
4706,
17814,
29883,
328,
2276,
262,
15595,
29871,
29929,
13,
29871,
382,
29906,
29943,
29906,
3986,
382,
29906,
29943,
1301,
3395,
7329,
29871,
29906,
13,
29871,
323,
2303,
29924,
29896,
29941,
29900,
539,
18750,
1590,
10800,
26823,
29871,
29896,
29941,
29900,
13,
29871,
24972,
1672,
6488,
29946,
539,
528,
8345,
3942,
4509,
29871,
29946,
13,
29871,
323,
29954,
29943,
15176,
29906,
4706,
4327,
292,
14321,
7329,
29892,
21762,
337,
14268,
1944,
313,
29955,
29900,
29914,
29947,
29900,
29895,
27838,
29897,
13,
29871,
349,
29943,
29968,
18426,
29906,
308,
29953,
29899,
561,
25715,
974,
1247,
29877,
29899,
29906,
29899,
9089,
559,
29914,
29888,
1247,
852,
29899,
29906,
29892,
29953,
29899,
5365,
561,
25715,
271,
559,
29871,
29906,
13,
29871,
341,
11787,
29943,
29896,
29900,
4706,
2999,
382,
29954,
29943,
29899,
4561,
29899,
3129,
2708,
29871,
29896,
29900,
13,
29871,
612,
4162,
29931,
29896,
308,
343,
8377,
3905,
29899,
4561,
29871,
29896,
313,
29928,
1883,
3021,
4233,
29897,
13,
29871,
476,
29902,
6344,
29900,
29906,
29946,
29955,
418,
476,
29902,
6344,
29900,
29906,
29946,
29955,
13,
29871,
19178,
29906,
29928,
29906,
29933,
4706,
1302,
2356,
29899,
1111,
309,
322,
315,
29906,
5354,
6943,
29871,
29906,
29933,
13,
29871,
23958,
29929,
29909,
29906,
4706,
784,
11541,
29892,
1134,
16841,
29892,
15595,
29871,
29906,
13,
29871,
405,
15444,
10363,
29941,
4706,
405,
15444,
12312,
6943,
29871,
29941,
13,
29871,
319,
7390,
29925,
29906,
308,
626,
29891,
417,
333,
21762,
313,
29909,
29946,
29897,
8303,
5966,
29899,
4561,
26823,
29871,
29906,
13,
29871,
796,
22498,
29945,
29929,
29929,
4706,
503,
3742,
19917,
26823,
29871,
29945,
29929,
29929,
13,
29871,
3154,
1299,
5690,
29906,
539,
379,
5667,
29899,
29896,
23260,
28923,
26823,
29871,
29906,
29892,
29871,
29941,
29900,
29895,
27838,
13,
29871,
15531,
29954,
29906,
29933,
308,
15531,
29954,
29906,
1120,
3021,
6485,
4475,
29871,
29906,
3632,
1189,
350,
313,
29903,
29889,
274,
406,
1730,
23395,
29897,
13,
29871,
315,
5194,
29968,
29968,
29896,
4706,
15835,
398,
29914,
1052,
1545,
352,
262,
29899,
18980,
26823,
19015,
559,
19015,
559,
29871,
29896,
29892,
15595,
13,
29871,
315,
29896,
29947,
4877,
29896,
539,
25173,
359,
608,
29871,
29896,
29947,
1722,
5183,
3515,
29871,
29896,
13,
29871,
317,
12182,
29896,
29953,
29909,
29896,
29906,
418,
899,
1082,
1559,
4336,
3942,
29871,
29896,
29953,
29892,
4509,
29871,
29896,
29906,
313,
3712,
542,
279,
1884,
29891,
506,
22193,
1301,
18505,
29871,
29896,
29906,
29897,
13,
29871,
365,
29934,
29934,
3738,
29925,
29906,
539,
454,
1682,
457,
8261,
12312,
313,
262,
383,
29931,
2687,
29897,
16254,
292,
26823,
29871,
29906,
13,
29871,
435,
29924,
29967,
29928,
29953,
308,
432,
398,
265,
2397,
5354,
6943,
29871,
29953,
13,
29871,
315,
29947,
4877,
29946,
29953,
539,
25173,
359,
608,
29871,
29947,
1722,
5183,
3515,
29871,
29946,
29953,
13,
29871,
3725,
29999,
29953,
3986,
409,
466,
545,
4475,
29871,
29953,
3632,
1189,
313,
15769,
29897,
13,
29871,
14445,
29954,
29941,
3986,
408,
862,
22094,
29899,
2324,
287,
330,
368,
3944,
2904,
362,
29871,
29941,
3632,
1189,
313,
29903,
29889,
274,
406,
1730,
23395,
29892,
15595,
29899,
29896,
29892,
29941,
29899,
4403,
359,
2904,
3286,
571,
559,
29897,
13,
29871,
402,
10593,
29896,
29906,
29941,
4706,
402,
26823,
29899,
16589,
552,
29881,
337,
14268,
29871,
29896,
29906,
29941,
13,
29871,
317,
12182,
29941,
29946,
29909,
29906,
539,
899,
1082,
1559,
4336,
3942,
29871,
29941,
29946,
313,
29879,
397,
1974,
1374,
25715,
403,
511,
4509,
29871,
29906,
13,
29871,
10014,
29928,
11490,
29896,
4706,
260,
29934,
3521,
408,
1595,
293,
22193,
286,
621,
2904,
3286,
571,
559,
29871,
29896,
13,
29871,
796,
22498,
29945,
29945,
29906,
4706,
503,
3742,
19917,
26823,
29871,
29945,
29945,
29906,
13,
29871,
390,
2882,
29896,
29909,
308,
390,
2882,
29896,
29909,
29892,
4509,
390,
3289,
373,
29883,
16603,
3942,
13,
29871,
4810,
29990,
29946,
23189,
4706,
4810,
29990,
29946,
12307,
13,
29871,
28816,
29990,
29949,
29941,
29896,
4706,
383,
29899,
1884,
26823,
29871,
29941,
29896,
13,
29871,
350,
24895,
29928,
29955,
308,
350,
24895,
313,
13152,
29999,
29897,
5354,
6943,
29871,
29955,
13,
29871,
317,
1955,
9851,
29896,
4706,
7319,
2109,
322,
24972,
29941,
5354,
6943,
29871,
29896,
13,
29871,
360,
29979,
29934,
29968,
29896,
29909,
4706,
14581,
29899,
14940,
537,
7911,
1883,
457,
17722,
29979,
6817,
561,
25715,
706,
18411,
1072,
7964,
19015,
559,
29871,
29896,
29909,
13,
29871,
476,
29902,
6344,
29900,
29946,
29929,
29946,
418,
476,
29902,
6344,
29900,
29946,
29929,
29946,
13,
29871,
435,
29934,
29968,
965,
432,
261,
3459,
3632,
1189,
313,
15769,
29897,
13,
29871,
315,
29979,
9295,
3986,
5094,
517,
18114,
274,
29892,
1047,
2454,
13,
29871,
16417,
29928,
29946,
308,
27884,
29899,
19672,
274,
465,
2353,
29892,
1014,
29899,
11922,
360,
313,
1964,
29928,
511,
4509,
29871,
29946,
13,
13,
4136,
2277,
21947,
7418,
310,
278,
7037,
3646,
2531,
267,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
4475,
304,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
13,
13,
29871,
21947,
4452,
462,
29871,
349,
995,
259,
5739,
267,
13,
29871,
448,
2683,
1378,
448,
1378,
448,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
2683,
23648,
13,
29871,
3579,
20517,
5996,
1889,
1068,
1669,
13,
29871,
319,
1129,
415,
13574,
1889,
3986,
29900,
29889,
29900,
29946,
29955,
268,
382,
29906,
29943,
29906,
29892,
9033,
29950,
1692,
29943,
29896,
29906,
29892,
323,
29954,
29943,
15176,
29906,
29892,
315,
29979,
9295,
29892,
435,
29924,
29967,
29928,
29953,
13,
29871,
15710,
462,
29871,
29900,
29889,
29900,
29946,
29947,
268,
402,
2891,
29906,
29892,
16417,
29928,
29946,
29892,
317,
1955,
9851,
29896,
29892,
315,
29979,
9295,
29892,
383,
29979,
3217,
29896,
13,
29871,
14409,
262,
1374,
25715,
706,
18411,
1678,
29900,
29889,
29900,
29946,
29953,
268,
349,
5607,
29934,
29906,
29967,
29892,
360,
29979,
29934,
29968,
29896,
29909,
29892,
323,
29954,
29943,
15176,
29906,
29892,
349,
3557,
1525,
13,
29871,
3579,
29924,
1772,
16637,
740,
1068,
1669,
13,
29871,
25348,
9956,
18884,
29900,
29889,
29900,
29941,
29896,
268,
382,
29906,
29943,
29906,
29892,
9033,
1367,
29945,
29933,
29892,
349,
19127,
29941,
29892,
349,
5607,
29934,
29906,
29967,
29892,
796,
22498,
29945,
29945,
29906,
29892,
319,
7390,
29925,
29906,
29892,
796,
22498,
29941,
29953,
29906,
29892,
796,
22498,
29945,
29929,
29929,
29892,
10014,
29928,
11490,
29896,
13,
29871,
14409,
262,
9956,
9651,
29900,
29889,
29900,
29906,
29946,
268,
382,
29906,
29943,
29906,
29892,
17674,
29941,
29941,
29892,
383,
2190,
5454,
29892,
9033,
1367,
29945,
29933,
29892,
349,
5607,
29934,
29906,
29967,
29892,
383,
2190,
8426,
29892,
360,
29979,
29934,
29968,
29896,
29909,
29892,
365,
29934,
29934,
3738,
29925,
29906,
29892,
319,
7390,
29925,
29906,
29892,
315,
29990,
29941,
11341,
29896,
29892,
323,
29954,
29943,
15176,
29906,
29892,
349,
29943,
29968,
18426,
29906,
29892,
3154,
1299,
5690,
29906,
29892,
317,
1955,
9851,
29896,
29892,
349,
3557,
1525,
29892,
315,
29979,
9295,
29892,
383,
29979,
3217,
29896,
29892,
435,
29924,
29967,
29928,
29953,
13,
29871,
3579,
4617,
1070,
4163,
1068,
1669,
13,
29871,
405,
1682,
280,
375,
462,
1678,
29900,
29889,
29900,
29900,
29900,
268,
382,
29906,
29943,
29906,
29892,
383,
2190,
5454,
29892,
9033,
1367,
29945,
29933,
29892,
390,
12750,
29896,
29928,
29896,
29892,
349,
19127,
29941,
29892,
349,
5607,
29934,
29906,
29967,
29892,
383,
2190,
8426,
29892,
612,
4162,
29931,
29896,
29892,
796,
22498,
29945,
29945,
29906,
29892,
360,
29979,
29934,
29968,
29896,
29909,
29892,
319,
7390,
29925,
29906,
29892,
796,
22498,
29941,
29953,
29906,
29892,
796,
22498,
29945,
29929,
29929,
29892,
24972,
1672,
6488,
29946,
29892,
20134,
29963,
29946,
29906,
29900,
29950,
29896,
29892,
3154,
1299,
5690,
29906,
29892,
317,
1955,
9851,
29896,
29892,
4810,
29990,
29946,
23189,
29892,
7495,
29933,
29906,
29892,
349,
3557,
1525,
29892,
10014,
29928,
11490,
29896,
29892,
315,
29979,
9295,
29892,
435,
29924,
29967,
29928,
29953,
29892,
315,
5194,
29968,
29968,
29896,
13,
29871,
17100,
284,
304,
3813,
10800,
539,
29900,
29889,
29900,
29906,
29955,
268,
317,
12182,
29896,
29953,
29909,
29896,
29906,
29892,
317,
12182,
29941,
29946,
29909,
29906,
29892,
14445,
29954,
29941,
29892,
341,
11787,
29943,
29896,
29900,
29892,
315,
29896,
29947,
4877,
29896,
29892,
3725,
29999,
29953,
29892,
319,
7390,
29925,
29906,
29892,
315,
29990,
29941,
11341,
29896,
29892,
402,
10593,
29896,
29906,
29941,
29892,
323,
29954,
29943,
15176,
29906,
29892,
16417,
29928,
29946,
29892,
349,
3557,
1525,
29892,
476,
29902,
6344,
29900,
29906,
29946,
29955,
29892,
383,
29979,
3217,
29896,
29892,
323,
2303,
29924,
29896,
29941,
29900,
29892,
317,
29896,
10593,
29906,
29892,
349,
6530,
15715,
29929,
13,
29871,
1858,
25392,
3813,
10800,
9651,
29900,
29889,
29900,
29896,
29906,
268,
317,
12182,
29896,
29953,
29909,
29896,
29906,
29892,
317,
12182,
29941,
29946,
29909,
29906,
29892,
383,
2190,
8426,
29892,
341,
11787,
29943,
29896,
29900,
29892,
315,
29896,
29947,
4877,
29896,
29892,
3725,
29999,
29953,
29892,
319,
7390,
29925,
29906,
29892,
315,
29990,
29941,
11341,
29896,
29892,
402,
10593,
29896,
29906,
29941,
29892,
323,
29954,
29943,
15176,
29906,
29892,
402,
2891,
29906,
29892,
317,
1955,
9851,
29896,
29892,
349,
3557,
1525,
29892,
435,
29924,
29967,
29928,
29953,
29892,
317,
29896,
10593,
29906,
29892,
349,
6530,
15715,
29929,
13,
13,
23711,
29907,
29965,
13507,
426,
29937,
29879,
29941,
29913,
13,
4936,
1360,
13,
13,
797,
278,
2198,
6559,
29892,
591,
4315,
287,
9554,
18342,
1218,
3737,
29934,
29940,
2887,
297,
8500,
292,
301,
962,
561,
2943,
1539,
579,
25101,
297,
13030,
23900,
29889,
3118,
9554,
3737,
29934,
3521,
29892,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
29892,
10018,
278,
9939,
652,
21780,
995,
9401,
411,
916,
3737,
29934,
29940,
2887,
322,
13807,
21622,
272,
29320,
29892,
1316,
408,
14645,
29909,
29892,
12766,
29896,
29929,
29929,
29892,
322,
315,
29979,
16359,
29909,
29906,
29896,
29896,
29889,
16478,
29892,
263,
8845,
16165,
441,
5718,
310,
29871,
29945,
29896,
13030,
23900,
22069,
471,
1162,
582,
1573,
304,
9659,
278,
652,
21780,
995,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
29889,
16641,
29907,
11672,
3483,
952,
267,
17845,
393,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
25622,
263,
1880,
319,
23129,
995,
310,
29871,
29900,
29889,
29947,
29947,
29900,
411,
4771,
24858,
310,
29871,
29947,
29953,
29889,
29906,
29906,
29995,
322,
2702,
537,
310,
29871,
29929,
29953,
29889,
29945,
29945,
15543,
3834,
3737,
29934,
29940,
2887,
505,
1063,
8967,
304,
367,
8855,
630,
411,
301,
962,
561,
2454,
1539,
579,
25101,
322,
10018,
297,
1749,
12845,
9076,
29889,
1152,
1342,
29892,
3737,
29934,
29899,
29896,
29929,
29953,
29874,
5539,
17548,
29934,
29896,
29941,
10725,
29962,
322,
3737,
29934,
29899,
29896,
29941,
29900,
29874,
5539,
17548,
29934,
29896,
29946,
10725,
29962,
892,
13686,
3598,
6942,
411,
301,
962,
561,
2943,
1539,
579,
25101,
29892,
1550,
3737,
29934,
29899,
29946,
29945,
29896,
5539,
17548,
29934,
29896,
29945,
10725,
29962,
471,
3480,
6703,
6942,
411,
301,
962,
561,
2943,
1539,
579,
25101,
29889,
3599,
296,
11898,
505,
21309,
373,
278,
8974,
310,
18342,
7606,
13206,
16637,
4768,
290,
935,
414,
5539,
17548,
29934,
29896,
29953,
10725,
1822,
512,
3517,
9076,
15055,
1048,
8500,
573,
1819,
310,
18342,
1218,
26529,
715,
25392,
21622,
272,
29320,
29892,
278,
13600,
363,
1539,
579,
25101,
15326,
364,
4618,
515,
29871,
29900,
29889,
29947,
29896,
29945,
313,
29907,
29979,
29943,
4717,
29871,
29906,
29896,
29899,
29896,
29897,
304,
29871,
29900,
29889,
29955,
29906,
29946,
313,
4741,
29909,
511,
8307,
313,
29909,
23129,
1819,
29897,
5539,
17548,
29934,
29896,
29955,
1402,
518,
29992,
29934,
29896,
29947,
10725,
1822,
13,
13,
2460,
29934,
29899,
29946,
29906,
29906,
29874,
471,
263,
3109,
12399,
3737,
29934,
3521,
29889,
319,
2846,
11898,
505,
17845,
278,
5297,
29841,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
5199,
508,
22543,
29889,
739,
338,
270,
952,
1727,
7964,
297,
288,
1655,
359,
279,
510,
29874,
5539,
17548,
29934,
29896,
29929,
10725,
1402,
784,
487,
312,
284,
23900,
5539,
17548,
29934,
29906,
29900,
29962,
489,
17548,
29934,
29906,
29906,
10725,
1402,
540,
5031,
542,
5666,
262,
4125,
5539,
17548,
29934,
29906,
29941,
10725,
1402,
322,
330,
7614,
293,
23900,
5539,
17548,
29934,
29906,
29946,
10725,
1822,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
338,
385,
4221,
1230,
17456,
363,
6460,
410,
5138,
19263,
297,
288,
1655,
359,
279,
510,
29874,
29892,
330,
7614,
293,
23900,
29892,
322,
540,
5031,
542,
5666,
262,
4125,
5539,
17548,
29934,
29906,
29941,
10725,
1822,
739,
338,
884,
6942,
411,
8950,
29877,
29899,
690,
21558,
297,
288,
1655,
359,
279,
510,
29874,
5539,
17548,
29934,
29906,
29945,
10725,
1822,
512,
13030,
23900,
29892,
697,
6559,
7829,
393,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
508,
367,
1304,
304,
770,
1598,
13030,
594,
264,
542,
5666,
262,
4125,
515,
13030,
10674,
314,
681,
3038,
1559,
16381,
4125,
5539,
17548,
29934,
29906,
29953,
10725,
1822,
512,
278,
2198,
6559,
29892,
591,
1476,
393,
715,
25392,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
11174,
892,
701,
1727,
7964,
297,
13030,
23900,
16500,
411,
301,
962,
561,
2454,
1539,
579,
25101,
1135,
393,
297,
22069,
1728,
301,
962,
561,
2454,
1539,
579,
25101,
29889,
2266,
29892,
278,
4603,
3620,
534,
1975,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
471,
11564,
411,
278,
2582,
310,
278,
9200,
2378,
7418,
29889,
1334,
25383,
393,
278,
4559,
2159,
297,
9200,
2378,
7418,
471,
1407,
2319,
322,
769,
278,
5375,
4328,
5331,
304,
263,
3058,
7426,
310,
24003,
746,
3902,
8253,
278,
16712,
13384,
9200,
29934,
29940,
2887,
297,
278,
22069,
411,
301,
962,
561,
2454,
1539,
579,
25101,
470,
451,
29889,
450,
701,
1727,
2785,
310,
715,
25392,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
301,
962,
561,
2454,
1539,
579,
2454,
22069,
892,
884,
3415,
3615,
1133,
491,
385,
7417,
16165,
441,
29892,
402,
1660,
29896,
29953,
29900,
29906,
29945,
29892,
607,
29537,
292,
278,
286,
29934,
3521,
4603,
8722,
310,
13030,
23900,
260,
12175,
9310,
20182,
944,
653,
11479,
29871,
29896,
10514,
7230,
29896,
2597,
999,
29899,
1853,
543,
19303,
944,
653,
29899,
15388,
29908,
7690,
1126,
1749,
6559,
29892,
363,
937,
931,
29892,
1476,
393,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
750,
263,
7037,
652,
21780,
995,
297,
2313,
20386,
1218,
301,
962,
561,
2943,
1539,
579,
25101,
310,
13030,
23900,
29889,
1763,
4340,
15544,
278,
15477,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
322,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
29892,
591,
29537,
287,
278,
27733,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
411,
278,
24899,
936,
4128,
322,
278,
27733,
310,
301,
962,
561,
2454,
1539,
579,
25101,
411,
278,
24899,
936,
4128,
29889,
1126,
278,
2582,
7829,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
471,
6942,
411,
9825,
3002,
322,
323,
7408,
29914,
29873,
398,
272,
24235,
29892,
607,
1795,
367,
278,
1970,
12449,
13879,
363,
278,
15477,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
411,
301,
962,
561,
2454,
1539,
579,
25101,
29889,
2216,
2197,
29892,
263,
4549,
7282,
15477,
471,
1603,
8900,
1546,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
322,
301,
962,
561,
2454,
1539,
579,
25101,
1156,
10365,
358,
310,
278,
1970,
12449,
13879,
313,
3562,
518,
29955,
10514,
29911,
29955,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
16478,
29892,
491,
3483,
952,
267,
278,
286,
29934,
3521,
8722,
848,
297,
23900,
260,
12175,
297,
402,
1660,
29896,
29953,
29900,
29906,
29945,
29892,
263,
2788,
15477,
471,
8900,
1546,
23900,
260,
15118,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
3233,
322,
301,
962,
561,
2454,
1539,
579,
25101,
297,
13030,
23900,
29889,
13,
13,
797,
15837,
29892,
1749,
1284,
886,
12141,
393,
263,
9554,
18342,
1218,
3737,
29934,
3521,
29892,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
29892,
1122,
9080,
408,
263,
1661,
29899,
262,
4428,
573,
4768,
290,
935,
261,
411,
8002,
13600,
297,
8500,
292,
301,
962,
561,
2943,
1539,
579,
25101,
297,
13030,
23900,
22069,
29889,
1126,
278,
2280,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
24899,
936,
6944,
1122,
1371,
363,
410,
11461,
433,
20009,
1006,
7316,
304,
1380,
335,
403,
3036,
23883,
537,
322,
5758,
2877,
29889,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
1122,
884,
3867,
263,
716,
3646,
363,
266,
1572,
412,
329,
293,
13501,
297,
10643,
310,
13030,
23900,
29889,
13,
13,
29924,
1299,
1001,
25758,
29903,
5300,
341,
2544,
8187,
8452,
426,
29937,
29879,
29946,
29913,
13,
9166,
2751,
29922,
13,
13,
24938,
1535,
9076,
426,
29937,
29879,
29946,
29918,
29896,
29913,
13,
2683,
29899,
13,
13,
1762,
15837,
278,
27733,
310,
3737,
29934,
29940,
2887,
411,
301,
962,
561,
2943,
1539,
579,
25101,
297,
13030,
23900,
29892,
263,
1788,
2454,
12845,
2740,
471,
8560,
25499,
491,
1023,
15717,
297,
1023,
21218,
313,
21076,
19302,
322,
27295,
25416,
29897,
701,
304,
5306,
29871,
29941,
29900,
29892,
29871,
29906,
29900,
29896,
29953,
29889,
450,
1494,
1840,
287,
892,
1304,
29901,
376,
8285,
23900,
613,
376,
368,
29885,
561,
2943,
6323,
301,
962,
561,
2943,
1539,
579,
25101,
29892,
6323,
301,
962,
561,
2454,
1539,
579,
25101,
613,
322,
376,
29924,
293,
729,
1056,
6323,
3737,
29934,
3521,
1642,
512,
10085,
16614,
29901,
313,
29896,
29897,
4223,
4086,
15055,
29936,
313,
29906,
29897,
450,
27733,
310,
3737,
29934,
3521,
411,
301,
962,
561,
2943,
1539,
579,
25101,
892,
10087,
297,
24899,
936,
11916,
29936,
313,
29941,
29897,
2323,
3737,
29934,
3521,
541,
451,
9451,
470,
12608,
310,
5478,
29875,
552,
3737,
29934,
29940,
2887,
471,
7405,
630,
29889,
13,
13,
11457,
10070,
322,
11916,
426,
29937,
29879,
29946,
29918,
29906,
29913,
13,
2683,
807,
13,
13,
2744,
4735,
1891,
10849,
1539,
579,
2454,
301,
962,
561,
2943,
11916,
322,
278,
9401,
1661,
3068,
2265,
681,
301,
962,
561,
7573,
515,
5320,
13030,
23900,
22069,
892,
16531,
1156,
25300,
936,
620,
9739,
363,
3737,
29934,
3521,
8722,
7418,
29889,
1987,
29892,
29871,
29906,
29953,
13030,
23900,
22069,
313,
29896,
29946,
4251,
411,
301,
962,
561,
2454,
1539,
579,
25101,
322,
29871,
29896,
29906,
4251,
1728,
301,
962,
561,
2454,
1539,
579,
25101,
29897,
515,
3111,
29871,
29906,
29900,
29896,
29941,
304,
2610,
29871,
29906,
29900,
29896,
29946,
892,
5134,
408,
263,
6694,
16165,
441,
304,
8161,
278,
24876,
19263,
995,
310,
278,
2246,
16712,
368,
13384,
3737,
29934,
29940,
2887,
515,
3737,
29934,
3521,
8722,
7418,
313,
3562,
518,
29906,
10514,
29911,
29906,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
512,
6124,
29892,
5320,
22069,
411,
3856,
647,
13030,
10267,
2129,
1728,
508,
22543,
892,
1162,
582,
1573,
408,
11761,
29889,
16478,
29892,
1790,
16165,
441,
310,
29871,
29945,
29896,
13030,
23900,
22069,
313,
29931,
29940,
29974,
29892,
29871,
29946,
29900,
29936,
365,
29940,
15767,
29871,
29896,
29896,
29897,
471,
1162,
582,
1573,
515,
5306,
29871,
29906,
29900,
29896,
29946,
304,
5533,
29871,
29906,
29900,
29896,
29945,
304,
12725,
278,
3737,
29934,
3521,
411,
9939,
24876,
19263,
13600,
297,
278,
6694,
16165,
441,
313,
3562,
518,
29906,
10514,
29911,
29906,
2597,
999,
29899,
1853,
543,
2371,
29908,
7690,
853,
4561,
411,
278,
9200,
2378,
7418,
29892,
10849,
23603,
8096,
284,
10416,
11916,
892,
1304,
29889,
315,
1915,
293,
459,
493,
5996,
21862,
310,
22069,
411,
13030,
23900,
892,
3342,
5034,
304,
278,
323,
29940,
29924,
380,
6751,
1788,
16614,
310,
278,
7761,
363,
4623,
1815,
2265,
11264,
29889,
1126,
9825,
5996,
24876,
19263,
471,
2729,
373,
278,
16083,
6475,
29889,
383,
2759,
262,
29899,
20227,
1702,
600,
262,
29899,
17987,
7176,
313,
4198,
4162,
29897,
13926,
892,
16112,
9076,
287,
363,
278,
24876,
19263,
310,
1539,
579,
2454,
301,
962,
561,
7573,
322,
1661,
3068,
2265,
681,
301,
962,
561,
7573,
29889,
2178,
28648,
892,
23454,
491,
278,
13772,
1199,
12930,
310,
349,
1416,
292,
3014,
29889,
16849,
841,
23388,
1136,
1237,
892,
7625,
515,
599,
22069,
470,
1009,
13175,
29889,
13,
13,
2460,
29934,
3521,
9200,
2378,
7418,
426,
29937,
29879,
29946,
29918,
29941,
29913,
13,
2683,
1378,
29899,
13,
13,
1576,
19228,
14671,
2256,
260,
15118,
11916,
310,
1539,
579,
2454,
322,
1661,
3068,
2265,
681,
301,
962,
561,
7573,
515,
278,
1021,
22069,
892,
1304,
304,
2189,
3737,
29934,
3521,
9200,
2378,
7418,
29889,
14990,
390,
3521,
313,
29896,
29900,
29900,
8736,
29897,
471,
15680,
29909,
29899,
941,
2356,
322,
14172,
630,
304,
4768,
327,
262,
2904,
630,
7182,
13206,
21337,
773,
278,
21967,
10522,
30536,
3457,
327,
262,
390,
3521,
15796,
292,
26240,
313,
15462,
275,
9085,
29892,
365,
29880,
29883,
297,
25966,
2671,
29892,
17687,
29892,
8278,
467,
530,
427,
14022,
29872,
29899,
2324,
287,
288,
3473,
29877,
7319,
29890,
296,
4323,
23378,
29899,
2388,
300,
3321,
1223,
388,
471,
8560,
304,
11539,
278,
3858,
292,
7536,
304,
1409,
7498,
19515,
2133,
304,
15350,
1451,
666,
30342,
3737,
29934,
3521,
9200,
2378,
29879,
313,
27867,
962,
300,
2126,
29892,
7510,
29042,
29892,
12766,
29892,
8278,
467,
1126,
769,
7498,
19515,
2133,
29892,
471,
2790,
29892,
380,
17225,
29892,
322,
885,
9450,
892,
18043,
773,
13737,
962,
300,
2126,
15350,
678,
666,
30342,
1788,
23643,
322,
9608,
29879,
313,
27867,
962,
300,
2126,
29892,
7510,
29042,
29892,
12766,
29892,
8278,
467,
3323,
27284,
29892,
278,
9200,
2378,
1967,
471,
29537,
287,
322,
278,
26171,
1819,
892,
12833,
491,
13737,
962,
300,
2126,
15350,
678,
666,
30342,
10516,
9405,
18540,
1873,
29871,
29941,
29889,
29900,
29889,
29896,
29889,
8725,
7418,
471,
8560,
773,
1459,
12681,
5739,
290,
1199,
2166,
568,
313,
2177,
12681,
29892,
624,
29889,
5899,
29892,
16999,
29892,
8278,
467,
13,
13,
22930,
23378,
1855,
29899,
2230,
24324,
261,
559,
9704,
19848,
313,
29939,
13079,
29899,
9026,
29934,
29897,
426,
29937,
29879,
29946,
29918,
29946,
29913,
13,
2683,
2683,
2683,
28400,
13,
13,
29924,
29875,
29934,
29940,
2887,
892,
23892,
515,
278,
715,
25392,
11916,
515,
13030,
23900,
22069,
773,
3737,
29934,
8139,
8995,
341,
2172,
26240,
313,
29984,
29875,
5370,
29892,
2630,
5760,
29892,
12766,
29892,
8278,
29897,
5034,
304,
278,
12012,
9945,
20333,
29879,
11994,
29889,
450,
26702,
322,
3708,
537,
310,
23968,
390,
3521,
471,
15899,
773,
278,
405,
29928,
29899,
29896,
29900,
29900,
29900,
20710,
1883,
1103,
19783,
327,
8328,
313,
1349,
20772,
12030,
261,
23753,
928,
29892,
399,
4298,
314,
29892,
14861,
29892,
8278,
467,
390,
3521,
28410,
471,
1223,
11517,
373,
21184,
2744,
14997,
3298,
29871,
29906,
29896,
29900,
29900,
773,
21184,
2744,
14997,
3298,
390,
3521,
29871,
29953,
29900,
29900,
29900,
405,
1562,
12016,
1451,
666,
26240,
313,
14769,
309,
296,
8364,
11763,
29892,
3793,
29877,
838,
517,
29892,
12766,
29892,
8278,
467,
1987,
10523,
29939,
2517,
3737,
29934,
3521,
1223,
1036,
313,
2052,
2957,
350,
2363,
973,
29879,
29892,
498,
20772,
12030,
261,
23753,
928,
29892,
399,
4298,
314,
29892,
14861,
29892,
8278,
29897,
892,
1304,
304,
6459,
278,
4603,
11174,
310,
286,
1535,
3737,
29934,
29940,
2887,
29889,
1152,
11837,
1301,
3395,
337,
7387,
29892,
29871,
29896,
29900,
8736,
310,
3001,
390,
3521,
471,
12849,
411,
278,
11837,
1301,
3395,
1903,
414,
29892,
7657,
287,
472,
29871,
29896,
29953,
30073,
29907,
363,
29871,
29941,
29900,
1375,
29892,
29871,
29946,
29906,
30073,
29907,
363,
29871,
29941,
29900,
1375,
29892,
322,
29871,
29947,
29945,
30073,
29907,
363,
29871,
29945,
1375,
29892,
322,
769,
19949,
472,
29871,
29946,
30073,
29907,
29889,
12206,
278,
11837,
1301,
3395,
337,
7387,
29892,
29871,
29896,
29871,
30167,
29931,
310,
274,
29928,
3521,
471,
1304,
363,
24324,
261,
559,
9704,
19848,
313,
9026,
29934,
29897,
773,
29871,
29906,
29871,
30167,
29880,
310,
278,
10523,
29939,
2517,
1903,
414,
29889,
9609,
29934,
337,
7387,
892,
18043,
472,
29871,
29929,
29945,
30073,
29907,
363,
29871,
29896,
29900,
1375,
5643,
491,
29871,
29946,
29900,
25785,
310,
29871,
29929,
29945,
30073,
29907,
363,
29871,
29896,
29945,
269,
322,
29871,
29953,
29900,
30073,
29907,
363,
29871,
29953,
29900,
269,
373,
385,
319,
12809,
29871,
29955,
29945,
29900,
29900,
23786,
8195,
29899,
2230,
9609,
29934,
1788,
313,
1349,
20772,
12030,
261,
23753,
928,
29892,
399,
4298,
314,
29892,
14861,
29892,
8278,
467,
8195,
29899,
2230,
9609,
29934,
2582,
892,
29537,
287,
322,
278,
4603,
310,
3737,
29934,
3521,
11174,
471,
12833,
773,
278,
29871,
29906,
29985,
30120,
30293,
30293,
29907,
29873,
29985,
1158,
322,
4226,
1891,
304,
3737,
29934,
29899,
29896,
29953,
29892,
385,
7463,
3407,
2761,
29889,
450,
2070,
267,
310,
278,
14020,
3737,
29934,
29940,
2887,
892,
1510,
297,
518,
20182,
944,
653,
6137,
29871,
29906,
10514,
7230,
29896,
2597,
999,
29899,
1853,
543,
19303,
944,
653,
29899,
15388,
29908,
1836,
13,
13,
23084,
18186,
22525,
7418,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
426,
29937,
29879,
29946,
29918,
29945,
29913,
13,
2683,
2683,
22158,
13,
13,
1576,
25383,
22525,
310,
278,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
892,
29537,
287,
491,
385,
7395,
2566,
29892,
3737,
4789,
4339,
313,
29966,
1124,
597,
29883,
29896,
29889,
562,
2764,
294,
15277,
29889,
510,
29914,
2460,
4789,
4339,
3779,
511,
607,
338,
263,
6503,
363,
13019,
3737,
29934,
3521,
29899,
5182,
22060,
29889,
450,
21099,
18186,
17157,
29879,
4163,
310,
286,
29902,
4789,
4339,
3990,
1078,
278,
25383,
22525,
310,
278,
1494,
3737,
29934,
3521,
3646,
18988,
8492,
29901,
22471,
2190,
29909,
29899,
29885,
2357,
29911,
29892,
20140,
797,
21494,
272,
29892,
3737,
29934,
5863,
29892,
11612,
8667,
29906,
29892,
3737,
8667,
29892,
405,
29933,
2460,
13079,
279,
29892,
14612,
29911,
279,
29892,
349,
1806,
29909,
29892,
390,
3521,
29906,
29906,
29892,
390,
3521,
5819,
19515,
29892,
322,
17157,
29083,
29914,
29911,
1191,
814,
29083,
29903,
5539,
17548,
29934,
29906,
29955,
10725,
1822,
450,
3646,
2531,
267,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
892,
10723,
746,
278,
3646,
2531,
267,
892,
25383,
491,
472,
3203,
2211,
14009,
297,
286,
29902,
4789,
4339,
29889,
512,
6124,
29892,
278,
402,
29923,
29949,
20035,
313,
29954,
1660,
29945,
29896,
29947,
29945,
29906,
322,
402,
1660,
29945,
29896,
29947,
29945,
29941,
29897,
892,
16532,
515,
25166,
12809,
29892,
607,
11122,
1716,
278,
286,
29934,
3521,
322,
278,
3737,
29934,
3521,
4603,
8722,
310,
29871,
29896,
29906,
29953,
13030,
23900,
22069,
322,
892,
1304,
304,
1284,
278,
2531,
267,
1302,
29899,
735,
13120,
411,
278,
4629,
3737,
29934,
3521,
29892,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
5539,
17548,
29934,
29906,
29947,
10725,
1822,
16478,
29892,
286,
29934,
3521,
8722,
848,
310,
29871,
29929,
29947,
29941,
13030,
23900,
22069,
471,
16532,
515,
323,
11135,
29909,
2566,
29892,
24410,
287,
491,
301,
962,
561,
2454,
1539,
579,
25101,
470,
451,
29892,
322,
1304,
304,
1284,
2531,
267,
4475,
304,
301,
962,
561,
2454,
1539,
579,
25101,
29889,
1987,
29892,
278,
7037,
3646,
2531,
267,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
9701,
297,
301,
962,
561,
2454,
1539,
579,
25101,
892,
15659,
491,
23387,
7418,
310,
25383,
22525,
515,
3737,
29934,
29883,
4339,
322,
848,
1375,
292,
310,
402,
29923,
29949,
322,
323,
11135,
29909,
29889,
9788,
29892,
278,
7037,
22525,
892,
4967,
287,
304,
21947,
7418,
297,
278,
15350,
7967,
4205,
29941,
7395,
2566,
313,
29966,
1124,
597,
1885,
687,
397,
275,
29889,
29883,
9877,
29889,
2395,
293,
29889,
267,
29958,
467,
13,
13,
9513,
391,
936,
7418,
426,
29937,
29879,
29946,
29918,
29953,
29913,
13,
2683,
807,
13,
13,
9513,
391,
936,
3483,
952,
267,
892,
8560,
411,
10937,
1799,
29871,
29896,
29953,
29889,
29900,
313,
8979,
29924,
29892,
826,
3712,
29895,
29892,
23526,
29892,
8278,
467,
7365,
17400,
497,
14406,
275,
379,
1243,
471,
1304,
363,
17420,
3737,
29934,
29940,
2887,
4603,
4249,
2999,
6471,
29889,
24328,
2147,
13598,
17443,
313,
1672,
29907,
29897,
19684,
892,
7841,
363,
2313,
20386,
1218,
278,
22069,
411,
301,
962,
561,
2454,
1539,
579,
25101,
470,
451,
29889,
450,
4038,
1090,
11672,
313,
29909,
23129,
29897,
995,
322,
29871,
29929,
29945,
29995,
16420,
18747,
313,
8426,
29897,
892,
12833,
304,
8161,
278,
2702,
537,
322,
4771,
24858,
29889,
796,
29899,
13628,
1158,
471,
1304,
304,
4226,
675,
278,
4603,
848,
310,
3737,
29934,
3521,
297,
6694,
322,
8845,
16165,
441,
29879,
29889,
18168,
29899,
17619,
1243,
471,
1304,
304,
26987,
278,
27733,
310,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
322,
24899,
936,
5680,
322,
278,
27733,
310,
301,
962,
561,
2454,
1539,
579,
25101,
411,
24899,
936,
5680,
297,
278,
599,
1162,
582,
1573,
13030,
23900,
22069,
322,
297,
8783,
402,
1660,
29896,
29953,
29900,
29906,
29945,
29889,
450,
8855,
800,
4249,
278,
3737,
29934,
29940,
2887,
297,
6694,
16165,
441,
322,
278,
8855,
800,
1546,
278,
2531,
267,
322,
3737,
29934,
29899,
29946,
29906,
29906,
29874,
297,
402,
29923,
29949,
848,
892,
29537,
287,
491,
21265,
1100,
20333,
29879,
19869,
10825,
29889,
450,
286,
29934,
3521,
12241,
297,
301,
962,
561,
2454,
1539,
579,
2454,
13030,
23900,
22069,
9401,
411,
1661,
29899,
368,
29885,
561,
2454,
1539,
579,
2454,
22069,
297,
323,
11135,
29909,
848,
892,
29537,
287,
491,
15740,
20333,
29879,
260,
1243,
29889,
2178,
6987,
892,
1023,
29899,
29879,
2618,
29889,
334,
29925,
29930,
3551,
29871,
29900,
29889,
29900,
29945,
471,
5545,
304,
367,
12997,
1711,
7282,
29889,
13,
13,
29903,
4897,
29925,
1307,
13780,
19926,
341,
1299,
1001,
25758,
29903,
383,
6259,
11499,
29903,
5300,
10911,
29903,
426,
29937,
29879,
29945,
29913,
13,
9166,
9166,
4936,
1360,
13,
13,
1068,
13720,
20706,
1068,
13,
13,
29931,
29940,
29956,
29892,
350,
29950,
322,
350,
29911,
29999,
13240,
278,
27593,
29889,
612,
25103,
29892,
612,
29979,
322,
365,
29967,
29999,
8688,
278,
6559,
322,
8560,
278,
24148,
7418,
29889,
435,
8610,
10628,
2347,
278,
6559,
29892,
25223,
297,
967,
2874,
322,
29311,
3381,
29892,
322,
9213,
304,
18195,
278,
27593,
29889,
2178,
15717,
1303,
322,
23454,
278,
2186,
27593,
29889,
13,
13,
1068,
6007,
29943,
5265,
1783,
29903,
8079,
2672,
4945,
29923,
1254,
1068,
13,
13,
1576,
15717,
9607,
694,
28792,
310,
4066,
29889,
13,
13,
1068,
29943,
18783,
4214,
1068,
13,
13,
4013,
664,
471,
6969,
491,
278,
867,
1934,
515,
9327,
10606,
310,
349,
1416,
292,
3014,
1815,
2265,
15967,
669,
8907,
313,
3782,
29889,
29871,
29906,
29900,
29896,
29941,
489,
29896,
29947,
511,
1522,
823,
292,
21327,
23303,
310,
379,
4705,
277,
1338,
315,
1915,
936,
27529,
14650,
310,
4266,
5220,
292,
2304,
313,
29999,
29979,
29931,
29990,
29906,
29900,
29896,
29945,
29900,
29929,
511,
349,
1416,
292,
3014,
313,
21738,
29965,
29897,
29871,
29929,
29947,
29945,
12630,
13249,
292,
363,
13435,
3717,
1230,
10550,
411,
24457,
29965,
379,
4705,
277,
1338,
313,
29906,
29900,
29896,
29941,
29899,
29945,
29899,
29900,
29945,
511,
322,
450,
3086,
5057,
17968,
10550,
322,
14650,
7835,
310,
7551,
313,
29947,
29953,
29941,
7835,
29892,
29871,
29906,
29900,
29896,
29946,
6344,
29900,
29906,
29900,
29953,
29900,
29906,
467,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Priority Ads
Tiny & Adorable Maltipoo puppies. Current in their vaccinations, dewormings, and come with a health guarantee. Very social, happy little puppies. They love to cuddle and play and have great temperaments. They also...
I have some dachshunds puppies. I have 2 males and 1 female. There is one silver dapple (525.00) and a silver female (575.00). The other is a red dapple long hair male (500.00). They are now exploring the world and...
Beautiful 6-week-old CKC registered Rhodesian Ridgeback puppies. Mom and Dad on site. Have not had first series of shots yet but will be glad to do them for you if desired or wait so you can take to your own vet. Will...
I have 4 blacks left all males and 6 blues (2) males (4) females! They are all very well socialized , eating food, love kids and snuggling! They are all so cute and smart! They would be a wonderful addition to any...
READY TO GO TO NEW HOMES, BORN MAY 20TH. Great puppies. Second shots given, wormed every 2 weeks. Excellent bloodline Guarantee Health. Parents are on property. Great pups for family pet or use for herding, frisbee,...
We are a small Kennel with big dreams currently we have 1 male and 3 females. We have working dogs at a workers price. Our dogs are top quality at a workers price. K911 Kennels is a smaller kennel / German Shepherd...
Moving and must sell our adorable AKC English Bulldog Female about 1 year and 5 months old. She comes with Full AKC Registration including Breeding Rights. She is a combination of Black, Red, and White. Reasonable...
UKC miniature American Eskimo male for stud (breeding) service, $300. My male is not for sale. This ad is for those who want to mate (breed) their female dog with my male dog. Please call 713-269-5699 if interested.
Hello i have marvelous home trained puppies. They are both raised in my home and hand fed by me. We spoil and give them the most excellent attention. They are all ready to leave, they are very healthy and very good...
$200 for each pup. both male and female available. pups are 11 weeks old and would make a good companion. Vaccinated, vet checked, micro chipped, AKC Registered and house trained. This two pups have very good... | [
1,
22096,
537,
2087,
29879,
13,
13,
29911,
4901,
669,
2087,
272,
519,
341,
1997,
666,
3634,
2653,
407,
583,
29889,
9626,
297,
1009,
325,
5753,
262,
800,
29892,
316,
29893,
555,
886,
29892,
322,
2041,
411,
263,
9045,
18818,
29889,
18064,
5264,
29892,
9796,
2217,
2653,
407,
583,
29889,
2688,
5360,
304,
274,
566,
29881,
280,
322,
1708,
322,
505,
2107,
6238,
20060,
29889,
2688,
884,
856,
13,
13,
29902,
505,
777,
270,
496,
845,
870,
29879,
2653,
407,
583,
29889,
306,
505,
29871,
29906,
25269,
322,
29871,
29896,
12944,
29889,
1670,
338,
697,
13283,
270,
11548,
313,
29945,
29906,
29945,
29889,
29900,
29900,
29897,
322,
263,
13283,
12944,
313,
29945,
29955,
29945,
29889,
29900,
29900,
467,
450,
916,
338,
263,
2654,
270,
11548,
1472,
11315,
14263,
313,
29945,
29900,
29900,
29889,
29900,
29900,
467,
2688,
526,
1286,
3902,
8253,
278,
3186,
322,
856,
13,
13,
3629,
1300,
6845,
29871,
29953,
29899,
18448,
29899,
1025,
315,
29968,
29907,
15443,
7861,
2631,
713,
390,
5525,
1627,
2653,
407,
583,
29889,
341,
290,
322,
360,
328,
373,
3268,
29889,
6975,
451,
750,
937,
3652,
310,
528,
1862,
3447,
541,
674,
367,
10932,
304,
437,
963,
363,
366,
565,
7429,
470,
4480,
577,
366,
508,
2125,
304,
596,
1914,
325,
300,
29889,
2811,
856,
13,
13,
29902,
505,
29871,
29946,
4628,
29879,
2175,
599,
25269,
322,
29871,
29953,
1999,
1041,
313,
29906,
29897,
25269,
313,
29946,
29897,
24473,
29991,
2688,
526,
599,
1407,
1532,
5264,
1891,
1919,
321,
1218,
9687,
29892,
5360,
413,
4841,
322,
5807,
12981,
1847,
29991,
2688,
526,
599,
577,
274,
1082,
322,
15040,
29991,
2688,
723,
367,
263,
20695,
6124,
304,
738,
856,
13,
13,
16310,
29979,
7495,
21947,
7495,
29091,
29832,
2303,
29903,
29892,
350,
1955,
29940,
14861,
29979,
29871,
29906,
29900,
4690,
29889,
7027,
2653,
407,
583,
29889,
6440,
528,
1862,
2183,
29892,
281,
555,
287,
1432,
29871,
29906,
11405,
29889,
1222,
3729,
296,
10416,
1220,
2088,
9519,
29872,
15202,
29889,
1459,
1237,
526,
373,
2875,
29889,
7027,
2653,
567,
363,
3942,
5697,
470,
671,
363,
902,
8497,
29892,
1424,
275,
915,
29872,
29892,
856,
13,
13,
4806,
526,
263,
2319,
13276,
295,
411,
4802,
12561,
29879,
5279,
591,
505,
29871,
29896,
14263,
322,
29871,
29941,
24473,
29889,
1334,
505,
1985,
26361,
472,
263,
17162,
8666,
29889,
8680,
26361,
526,
2246,
11029,
472,
263,
17162,
8666,
29889,
476,
29929,
29896,
29896,
13276,
1379,
338,
263,
7968,
413,
2108,
295,
847,
5332,
2296,
561,
2018,
856,
13,
13,
29924,
21081,
322,
1818,
19417,
1749,
594,
272,
519,
319,
29968,
29907,
4223,
8313,
430,
468,
19361,
744,
1048,
29871,
29896,
1629,
322,
29871,
29945,
7378,
2030,
29889,
2296,
5304,
411,
14846,
319,
29968,
29907,
2169,
8306,
3704,
5826,
21219,
26863,
29889,
2296,
338,
263,
10296,
310,
6054,
29892,
4367,
29892,
322,
8037,
29889,
830,
1658,
519,
856,
13,
13,
19960,
29907,
20629,
1535,
3082,
382,
808,
4200,
14263,
363,
1921,
313,
1030,
21219,
29897,
2669,
29892,
395,
29941,
29900,
29900,
29889,
1619,
14263,
338,
451,
363,
14686,
29889,
910,
594,
338,
363,
1906,
1058,
864,
304,
15358,
313,
1030,
287,
29897,
1009,
12944,
11203,
411,
590,
14263,
11203,
29889,
3529,
1246,
29871,
29955,
29896,
29941,
29899,
29906,
29953,
29929,
29899,
29945,
29953,
29929,
29929,
565,
8852,
29889,
13,
13,
10994,
474,
505,
1766,
955,
681,
3271,
16370,
2653,
407,
583,
29889,
2688,
526,
1716,
10425,
297,
590,
3271,
322,
1361,
21242,
491,
592,
29889,
1334,
13345,
309,
322,
2367,
963,
278,
1556,
15129,
8570,
29889,
2688,
526,
599,
7960,
304,
5967,
29892,
896,
526,
1407,
9045,
29891,
322,
1407,
1781,
856,
13,
13,
29938,
29906,
29900,
29900,
363,
1269,
23449,
29889,
1716,
14263,
322,
12944,
3625,
29889,
2653,
567,
526,
29871,
29896,
29896,
11405,
2030,
322,
723,
1207,
263,
1781,
18708,
29889,
478,
5753,
262,
630,
29892,
325,
300,
7120,
29892,
9200,
521,
16242,
29892,
319,
29968,
29907,
12577,
287,
322,
3699,
16370,
29889,
910,
1023,
2653,
567,
505,
1407,
1781,
856
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
# Developer guide
## Continuous integration
* There are a private Team City and SonarQube servers configured for our project
* As a project developer ask for developer access
* These builds shouldn't be used as public available development builds (beta or RC)
## How to configure environment
* Install Visual Studio, With Database tools, Install Wix, Resharper.
* Configure the database server to accept the database connection string in test project app.config file.
* Run chocolatey script Build\installprerequisities.ps1 to configure development tools.
# Application life cycle
* To publish release version:
* the application version should be updated in Setup project and in Common.AsssemblyInfo.cs
* Use build.ps1 script in build directory and publish both generated files
* Update related build version in Team City builds
* Mark release with tag. If you want to rollback to previous version load selected version release tag
* Create and publish the Chocolatey package at Chocolatey.org using Build\createChocolateyPackage.ps1 script
* When fixing an issue, mark it as Closed, after the changes are released (not when it is fixed in code base).
## Cooperation rules
* Miguel de Icaza has a good post on [Open Source Contribution Etiquette](http://tirania.org/blog/archive/2010/Dec-31.html)
that is worth reading, as the guidance he gives applies well to Terminals (inspired by Nuget project).
* Pickup from task stack by Votings
* Select only task, which you are able to solve in no more than two months
* Don't keep your checkouts long time, use Shelve sets instead
* Always associate check-in change set with task, if your check in is related to it
* In case of formatting make two separate checkins: one which holds only code formatting changes, second with fix/feature changes
## Project structure
* Current development tool is Visual Studio 2017 with .NET C#.
* The main solution project is configured to target .NET framework 4. But there are other external projects, which are still targeting .NET 2.0. Don't change the target framework for them.
* Terminals solution references libraries and images from Resources directory.
* For Logging the Log4Net is configured. Log files are stored under application Logs subdirectory.
* To build the release setup use the "Distribution release" solution configuration. For general development use standard debug and release.
* Output directory is "Build\Output" directory.
* Put all localize able resources under the Localization directory in resource file stored there.
* All external components and other resources like images should be stored under "Resources" directory in its branch
## Develop new plugins
It is also possible to provide new protocol specific connection extension see [Write new plugin](/Docs/WriteNewPlugin.md)
## External components
* SSH protocol from Granados project (actually developed as [Poderosa](http://sourceforge.net/projects/poderosa/))
* Terminal emulator control for ssh and telnet [Terminal control](http://www.codeproject.com/KB/IP/Terminal_Control_Project.aspx)
* Amazon S3 component from Amazon SDK [Amazon SDK for .NET](http://aws.amazon.com/sdkfornet/)
* zLib compression library [zLib](http://www.componentace.com/)
* VNC client library [VncSharp](http://cdot.senecac.on.ca/projects/vncsharp/)
* [Log4Net](http://logging.apache.org/log4net/)
* Packet manipulation library [SharpPcap](http://www.tamirgal.com/blog/page/SharpPcap.aspx)
* ICA Citrix component
* RDP imported as activeX component
* Setup WIX toolkit [WIX Toolkit](http://WixToolSet.org)
* PowerShell comunity extensions
* Chocolatey to download external dependecies in build
## Coding rules
* Use Visual Studio 2017 default settings or similar settings in another editor.
* For developer who are using Resharper, there is a Team shared configuration file for coding rules. Don't change this file, if you want to apply some rules. Discuss it first within the team.
* Indents are 4 spaces. You can use Productivity Power Tools for VS to convert tab characters into spaces.
* Fields should be declared private and above all methods.
* Put curly brackets on a new line and close it in the same indentation.
* Keep classes small up to maximum 500 lines
* Keep methods small up to maximum 35 lines
* Use usings as much as possible and remove not used usings
* Members order: constants and statics, fields, properties, events, constructors, methods.
* When using an if condition with one statement, put the statement on the next line.
```cs
if (true)
DoSomething();
```
* When using an if condition with one statement after if condition and else condition, curly brackets are optional.
```cs
if(true)
DoSomething();
else
DoSomethingElse();
```
* When using an if condition with curly brackets, use curly brackets for all attached conditions
```cs
if (true)
{
x++;
DoSomething();
}
else
{
DoSomethingElse();
}
```
* After an if, while, for each or other conditions that can use curly brackets, leave an empty line.
```cs
if (true)
DoSomething();
x++;
foreach(String s in stringArray)
{
Debug.Print(s);
}
DoTheNextThing();
```
* Use String.Format when possible.
* Use String.Empty instead of "", use String.IsNullOrEmpty() instead of (x == null | x = "").
| [
1,
396,
10682,
261,
10754,
13,
2277,
2866,
8675,
681,
13465,
13,
29930,
1670,
526,
263,
2024,
8583,
4412,
322,
5791,
279,
29984,
4003,
12424,
13252,
363,
1749,
2060,
29871,
13,
29930,
1094,
263,
2060,
13897,
2244,
363,
13897,
2130,
13,
29930,
4525,
23315,
9273,
29915,
29873,
367,
1304,
408,
970,
3625,
5849,
23315,
313,
3571,
470,
29138,
29897,
13,
13,
2277,
1128,
304,
10822,
5177,
13,
29930,
16052,
9249,
7448,
29892,
2973,
5470,
8492,
29892,
16052,
399,
861,
29892,
2538,
8222,
546,
29889,
13,
29930,
1281,
4532,
278,
2566,
1923,
304,
3544,
278,
2566,
3957,
1347,
297,
1243,
2060,
623,
29889,
2917,
934,
29889,
13,
29930,
7525,
521,
542,
23167,
29891,
2471,
8878,
29905,
6252,
558,
406,
7680,
1907,
29889,
567,
29896,
304,
10822,
5849,
8492,
29889,
13,
13,
29937,
8427,
2834,
11412,
13,
29930,
1763,
9805,
6507,
1873,
29901,
13,
29871,
334,
278,
2280,
1873,
881,
367,
4784,
297,
3789,
786,
2060,
322,
297,
13103,
29889,
7900,
29879,
5789,
3401,
29889,
2395,
13,
29871,
334,
4803,
2048,
29889,
567,
29896,
2471,
297,
2048,
3884,
322,
9805,
1716,
5759,
2066,
13,
29871,
334,
10318,
4475,
2048,
1873,
297,
8583,
4412,
23315,
13,
29871,
334,
4485,
6507,
411,
4055,
29889,
960,
366,
864,
304,
9679,
1627,
304,
3517,
1873,
2254,
4629,
1873,
6507,
4055,
13,
29871,
334,
6204,
322,
9805,
278,
678,
542,
23167,
29891,
3577,
472,
678,
542,
23167,
29891,
29889,
990,
773,
8878,
29905,
3258,
1451,
542,
23167,
29891,
14459,
29889,
567,
29896,
2471,
13,
29930,
1932,
27826,
385,
2228,
29892,
2791,
372,
408,
2233,
2662,
29892,
1156,
278,
3620,
526,
5492,
313,
1333,
746,
372,
338,
4343,
297,
775,
2967,
467,
13,
13,
2277,
3189,
16453,
6865,
13,
29930,
16682,
316,
306,
29883,
19924,
756,
263,
1781,
1400,
373,
518,
6585,
7562,
2866,
3224,
382,
2034,
339,
2353,
850,
1124,
597,
29873,
381,
4807,
29889,
990,
29914,
7312,
29914,
10867,
29914,
29906,
29900,
29896,
29900,
29914,
6185,
29899,
29941,
29896,
29889,
1420,
29897,
13,
393,
338,
7088,
5183,
29892,
408,
278,
27323,
540,
4076,
16058,
1532,
304,
11814,
19016,
313,
262,
1028,
2859,
491,
12487,
657,
2060,
467,
13,
29930,
23868,
786,
515,
3414,
5096,
491,
478,
327,
886,
13,
29930,
7605,
871,
3414,
29892,
607,
366,
526,
2221,
304,
4505,
297,
694,
901,
1135,
1023,
7378,
13,
29930,
3872,
29915,
29873,
3013,
596,
1423,
17718,
1472,
931,
29892,
671,
1383,
13841,
6166,
2012,
13,
29930,
29849,
25836,
1423,
29899,
262,
1735,
731,
411,
3414,
29892,
565,
596,
1423,
297,
338,
4475,
304,
372,
13,
29930,
512,
1206,
310,
15998,
1207,
1023,
5004,
1423,
1144,
29901,
697,
607,
8640,
871,
775,
15998,
3620,
29892,
1473,
411,
2329,
29914,
14394,
3620,
13,
13,
2277,
8010,
3829,
13,
29930,
9626,
5849,
5780,
338,
9249,
7448,
29871,
29906,
29900,
29896,
29955,
411,
869,
6006,
315,
29937,
29889,
13,
29930,
450,
1667,
1650,
2060,
338,
13252,
304,
3646,
869,
6006,
6890,
29871,
29946,
29889,
1205,
727,
526,
916,
7029,
9279,
29892,
607,
526,
1603,
3646,
292,
869,
6006,
29871,
29906,
29889,
29900,
29889,
3872,
29915,
29873,
1735,
278,
3646,
6890,
363,
963,
29889,
13,
29930,
11814,
19016,
1650,
9282,
9562,
322,
4558,
515,
27562,
3884,
29889,
13,
29930,
1152,
4522,
3460,
278,
4522,
29946,
6779,
338,
13252,
29889,
4522,
2066,
526,
6087,
1090,
2280,
4522,
29879,
1014,
12322,
29889,
13,
29930,
1763,
2048,
278,
6507,
6230,
671,
278,
376,
13398,
3224,
6507,
29908,
1650,
5285,
29889,
1152,
2498,
5849,
671,
3918,
4744,
322,
6507,
29889,
13,
29930,
10604,
3884,
338,
376,
8893,
29905,
6466,
29908,
3884,
29889,
13,
29930,
12065,
599,
1887,
675,
2221,
7788,
1090,
278,
9959,
2133,
3884,
297,
6503,
934,
6087,
727,
29889,
13,
29930,
2178,
7029,
7117,
322,
916,
7788,
763,
4558,
881,
367,
6087,
1090,
376,
13770,
29908,
3884,
297,
967,
5443,
13,
13,
2277,
10682,
716,
18224,
13,
3112,
338,
884,
1950,
304,
3867,
716,
9608,
2702,
3957,
6081,
1074,
518,
6113,
716,
7079,
26909,
29928,
12332,
29914,
6113,
4373,
16288,
29889,
3487,
29897,
13,
13,
2277,
3985,
7117,
13,
29930,
22343,
9608,
515,
6274,
2255,
2060,
313,
627,
1474,
8906,
408,
518,
29925,
6119,
3628,
850,
1124,
597,
28315,
29889,
1212,
29914,
16418,
29914,
29886,
6119,
3628,
29914,
876,
13,
29930,
29175,
26364,
2761,
363,
13927,
322,
13547,
1212,
518,
14343,
979,
2761,
850,
1124,
597,
1636,
29889,
401,
4836,
29889,
510,
29914,
26067,
29914,
5690,
29914,
14343,
979,
29918,
4809,
29918,
7653,
29889,
6307,
29897,
13,
29930,
16631,
317,
29941,
4163,
515,
16631,
12967,
518,
29909,
655,
6626,
12967,
363,
869,
6006,
850,
1124,
597,
10467,
29889,
17260,
29889,
510,
29914,
15348,
1454,
1212,
4551,
13,
29930,
503,
14868,
24221,
3489,
518,
29920,
14868,
850,
1124,
597,
1636,
29889,
9700,
815,
29889,
510,
4551,
13,
29930,
478,
15868,
3132,
3489,
518,
29963,
17608,
2713,
6834,
850,
1124,
597,
3822,
29889,
4881,
687,
562,
29889,
265,
29889,
1113,
29914,
16418,
29914,
29894,
17608,
22064,
4551,
13,
29930,
518,
3403,
29946,
6779,
850,
1124,
597,
21027,
29889,
4288,
29889,
990,
29914,
1188,
29946,
1212,
4551,
13,
29930,
18744,
300,
11525,
2785,
3489,
518,
2713,
6834,
29925,
5030,
850,
1124,
597,
1636,
29889,
29873,
314,
381,
23014,
29889,
510,
29914,
7312,
29914,
3488,
29914,
2713,
6834,
29925,
5030,
29889,
6307,
29897,
13,
29930,
306,
5454,
21353,
2126,
4163,
13,
29930,
390,
11191,
19673,
408,
6136,
29990,
4163,
13,
29930,
3789,
786,
399,
6415,
5780,
7354,
518,
29956,
6415,
21704,
7354,
850,
1124,
597,
29956,
861,
12229,
2697,
29889,
990,
29897,
13,
29930,
9206,
16037,
419,
6997,
17752,
13,
29930,
678,
542,
23167,
29891,
304,
5142,
7029,
1401,
3324,
2478,
297,
2048,
13,
13,
2277,
315,
3689,
6865,
13,
29930,
4803,
9249,
7448,
29871,
29906,
29900,
29896,
29955,
2322,
6055,
470,
2788,
6055,
297,
1790,
6920,
29889,
13,
29930,
1152,
13897,
1058,
526,
773,
2538,
8222,
546,
29892,
727,
338,
263,
8583,
7258,
5285,
934,
363,
14137,
6865,
29889,
3872,
29915,
29873,
1735,
445,
934,
29892,
565,
366,
864,
304,
3394,
777,
6865,
29889,
8565,
1558,
372,
937,
2629,
278,
3815,
29889,
13,
29930,
1894,
1237,
526,
29871,
29946,
8162,
29889,
887,
508,
671,
10969,
2068,
9206,
27564,
363,
12221,
304,
3588,
4434,
4890,
964,
8162,
29889,
13,
29930,
8989,
29879,
881,
367,
8052,
2024,
322,
2038,
599,
3519,
29889,
13,
29930,
12065,
3151,
368,
20476,
373,
263,
716,
1196,
322,
3802,
372,
297,
278,
1021,
1399,
9233,
29889,
13,
29930,
19152,
4413,
2319,
701,
304,
7472,
29871,
29945,
29900,
29900,
3454,
13,
29930,
19152,
3519,
2319,
701,
304,
7472,
29871,
29941,
29945,
3454,
13,
29930,
4803,
773,
29879,
408,
1568,
408,
1950,
322,
3349,
451,
1304,
773,
29879,
29871,
13,
29930,
341,
13415,
1797,
29901,
17727,
322,
1002,
1199,
29892,
4235,
29892,
4426,
29892,
4959,
29892,
3386,
943,
29892,
3519,
29889,
13,
29930,
1932,
773,
385,
565,
4195,
411,
697,
3229,
29892,
1925,
278,
3229,
373,
278,
2446,
1196,
29889,
13,
13,
28956,
2395,
13,
565,
313,
3009,
29897,
13,
539,
1938,
16804,
890,
13,
28956,
13,
13,
29930,
1932,
773,
385,
565,
4195,
411,
697,
3229,
1156,
565,
4195,
322,
1683,
4195,
29892,
3151,
368,
20476,
526,
13136,
29889,
13,
13,
28956,
2395,
13,
361,
29898,
3009,
29897,
13,
539,
1938,
16804,
890,
13,
259,
1683,
13,
539,
1938,
16804,
27406,
890,
13,
28956,
13,
13,
29930,
1932,
773,
385,
565,
4195,
411,
3151,
368,
20476,
29892,
671,
3151,
368,
20476,
363,
599,
10959,
5855,
13,
13,
28956,
2395,
13,
259,
565,
313,
3009,
29897,
13,
259,
426,
13,
539,
921,
9107,
13,
539,
1938,
16804,
890,
13,
259,
500,
13,
259,
1683,
13,
259,
426,
13,
539,
1938,
16804,
27406,
890,
13,
259,
500,
13,
28956,
13,
13,
29930,
2860,
385,
565,
29892,
1550,
29892,
363,
1269,
470,
916,
5855,
393,
508,
671,
3151,
368,
20476,
29892,
5967,
385,
4069,
1196,
29889,
13,
13,
28956,
2395,
13,
361,
313,
3009,
29897,
13,
418,
1938,
16804,
890,
13,
13,
29916,
9107,
13,
13150,
29898,
1231,
269,
297,
1347,
2588,
29897,
13,
29912,
13,
1678,
16171,
29889,
11816,
29898,
29879,
416,
13,
29913,
13,
1678,
13,
259,
1938,
1576,
9190,
1349,
292,
890,
13,
28956,
13,
13,
29930,
4803,
1714,
29889,
5809,
746,
1950,
29889,
13,
29930,
4803,
1714,
29889,
8915,
2012,
310,
12633,
671,
1714,
29889,
3624,
7327,
2816,
8915,
580,
2012,
310,
313,
29916,
1275,
1870,
891,
921,
353,
376,
2564,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
A camera module which is used for a cellular phone with a camera, a digital camera, a security camera, or the like has a structure in which, for example, an image sensor such as a CCD (Charge Coupled Device) and a CMOS (Complementary Metal Oxide Semiconductor), a transparent plate such as glass, a wiring substrate having terminals, a cover body holding the above, a concentrating portion including lenses, a lens barrel, and the like, and a lens holder holding the lenses and the barrel are integrated.
FIGS. 15(a) to (e) illustrate a structure of a camera module of PTL 1. As illustrated in FIG. 15(a), the camera module includes a concentrating portion 20 and an imaging portion 10. The concentrating portion 20 is provided with a lens holder 22 and a lens unit which is fixed to the lens holder 22 and includes a lens 21. The imaging portion 10 is provided with a wiring substrate 11, an image sensor 13 which is mounted on the wiring substrate 11 via an adhesive 12, a transparent plate 17 made of glass, plastics, or the like, and a cover body 14 which covers the wiring substrate 11 and the image sensor. The cover body 14 is mounted on the wiring substrate 11. The image sensor 13 is electrically connected to the wiring substrate 11 with wires 15 or the like. Peripheral part of the transparent plate 17 is fixed to the cover body 14 with an adhesive 16. The lens unit is provided above the image sensor 13 and the transparent plate 17 which are in the imaging portion 10.
An aperture is provided in the center of the cover body 14, and the transparent plate 17 is arranged on the aperture. As a result, an internal space 18 surrounded by the transparent plate 17, the cover body 14, and the wiring substrate 11 is formed in the imaging portion 10.
In a case where the internal space 18 is sealed up, there is a possibility that a gas in the internal space 18 thermally expands in accordance with an increase in temperature and then a crack and the like occurs at a joining part serving as a starting point. Moreover, there is also a possibility that the transparent plate 17 loses transparency due to an influence of a gas or ions which are generated from the adhesive 12, 16, and the like because of a change in temperature or pressure. In the camera module, by providing a ventilation groove G in the cover body 14, the internal space 18 and an outside of the cover body 14 are made to communicate with each other via the ventilation groove G and a gap 19. Note that, a structure of the ventilation groove G is as illustrated in plan view in FIGS. 15(b) to (e).
In this case, when the internal space 18 and the outside of the cover body 14 are made to communicate with each other as described above, there is a possibility that a foreign matter enters the internal space 18 from the outside and the foreign matter adheres to the image sensor 13. In the camera module, a recess part GH is formed by partially digging a bottom of the ventilation groove G deeply as illustrated in FIG. 15(e), and the foreign matter which has entered into the ventilation groove G is trapped by the recess part GH. | [
1,
319,
10656,
3883,
607,
338,
1304,
363,
263,
3038,
1070,
9008,
411,
263,
10656,
29892,
263,
13436,
10656,
29892,
263,
6993,
10656,
29892,
470,
278,
763,
756,
263,
3829,
297,
607,
29892,
363,
1342,
29892,
385,
1967,
23530,
1316,
408,
263,
315,
6530,
313,
5914,
479,
19565,
552,
29881,
21830,
29897,
322,
263,
315,
29924,
3267,
313,
1523,
2037,
653,
24992,
9471,
680,
9444,
4144,
2199,
272,
511,
263,
17772,
15284,
1316,
408,
12917,
29892,
263,
281,
8491,
25148,
403,
2534,
8638,
29879,
29892,
263,
4612,
3573,
13587,
278,
2038,
29892,
263,
14953,
1218,
11910,
3704,
301,
11259,
29892,
263,
301,
575,
2594,
2674,
29892,
322,
278,
763,
29892,
322,
263,
301,
575,
19464,
13587,
278,
301,
11259,
322,
278,
2594,
2674,
526,
23387,
29889,
13,
3738,
10749,
29889,
29871,
29896,
29945,
29898,
29874,
29897,
304,
313,
29872,
29897,
28475,
263,
3829,
310,
263,
10656,
3883,
310,
349,
14632,
29871,
29896,
29889,
1094,
26848,
297,
383,
6259,
29889,
29871,
29896,
29945,
29898,
29874,
511,
278,
10656,
3883,
7805,
263,
14953,
1218,
11910,
29871,
29906,
29900,
322,
385,
6382,
292,
11910,
29871,
29896,
29900,
29889,
450,
14953,
1218,
11910,
29871,
29906,
29900,
338,
4944,
411,
263,
301,
575,
19464,
29871,
29906,
29906,
322,
263,
301,
575,
5190,
607,
338,
4343,
304,
278,
301,
575,
19464,
29871,
29906,
29906,
322,
7805,
263,
301,
575,
29871,
29906,
29896,
29889,
450,
6382,
292,
11910,
29871,
29896,
29900,
338,
4944,
411,
263,
281,
8491,
25148,
403,
29871,
29896,
29896,
29892,
385,
1967,
23530,
29871,
29896,
29941,
607,
338,
19239,
373,
278,
281,
8491,
25148,
403,
29871,
29896,
29896,
3025,
385,
594,
13244,
573,
29871,
29896,
29906,
29892,
263,
17772,
15284,
29871,
29896,
29955,
1754,
310,
12917,
29892,
715,
579,
1199,
29892,
470,
278,
763,
29892,
322,
263,
4612,
3573,
29871,
29896,
29946,
607,
18469,
278,
281,
8491,
25148,
403,
29871,
29896,
29896,
322,
278,
1967,
23530,
29889,
450,
4612,
3573,
29871,
29896,
29946,
338,
19239,
373,
278,
281,
8491,
25148,
403,
29871,
29896,
29896,
29889,
450,
1967,
23530,
29871,
29896,
29941,
338,
3546,
29878,
1711,
6631,
304,
278,
281,
8491,
25148,
403,
29871,
29896,
29896,
411,
281,
2658,
29871,
29896,
29945,
470,
278,
763,
29889,
2431,
29875,
8096,
284,
760,
310,
278,
17772,
15284,
29871,
29896,
29955,
338,
4343,
304,
278,
4612,
3573,
29871,
29896,
29946,
411,
385,
594,
13244,
573,
29871,
29896,
29953,
29889,
450,
301,
575,
5190,
338,
4944,
2038,
278,
1967,
23530,
29871,
29896,
29941,
322,
278,
17772,
15284,
29871,
29896,
29955,
607,
526,
297,
278,
6382,
292,
11910,
29871,
29896,
29900,
29889,
13,
2744,
263,
10700,
545,
338,
4944,
297,
278,
4818,
310,
278,
4612,
3573,
29871,
29896,
29946,
29892,
322,
278,
17772,
15284,
29871,
29896,
29955,
338,
21050,
373,
278,
263,
10700,
545,
29889,
1094,
263,
1121,
29892,
385,
7463,
2913,
29871,
29896,
29947,
22047,
491,
278,
17772,
15284,
29871,
29896,
29955,
29892,
278,
4612,
3573,
29871,
29896,
29946,
29892,
322,
278,
281,
8491,
25148,
403,
29871,
29896,
29896,
338,
8429,
297,
278,
6382,
292,
11910,
29871,
29896,
29900,
29889,
13,
797,
263,
1206,
988,
278,
7463,
2913,
29871,
29896,
29947,
338,
409,
7943,
701,
29892,
727,
338,
263,
13331,
393,
263,
10489,
297,
278,
7463,
2913,
29871,
29896,
29947,
14563,
635,
1518,
4167,
297,
15017,
749,
411,
385,
7910,
297,
10430,
322,
769,
263,
26755,
322,
278,
763,
10008,
472,
263,
22960,
760,
16330,
408,
263,
6257,
1298,
29889,
12808,
29892,
727,
338,
884,
263,
13331,
393,
278,
17772,
15284,
29871,
29896,
29955,
1232,
267,
1301,
862,
3819,
2861,
304,
385,
9949,
310,
263,
10489,
470,
29871,
1080,
607,
526,
5759,
515,
278,
594,
13244,
573,
29871,
29896,
29906,
29892,
29871,
29896,
29953,
29892,
322,
278,
763,
1363,
310,
263,
1735,
297,
10430,
470,
12959,
29889,
512,
278,
10656,
3883,
29892,
491,
13138,
263,
9712,
8634,
4071,
994,
402,
297,
278,
4612,
3573,
29871,
29896,
29946,
29892,
278,
7463,
2913,
29871,
29896,
29947,
322,
385,
5377,
310,
278,
4612,
3573,
29871,
29896,
29946,
526,
1754,
304,
23120,
411,
1269,
916,
3025,
278,
9712,
8634,
4071,
994,
402,
322,
263,
17261,
29871,
29896,
29929,
29889,
3940,
393,
29892,
263,
3829,
310,
278,
9712,
8634,
4071,
994,
402,
338,
408,
26848,
297,
3814,
1776,
297,
383,
6259,
29903,
29889,
29871,
29896,
29945,
29898,
29890,
29897,
304,
313,
29872,
467,
13,
797,
445,
1206,
29892,
746,
278,
7463,
2913,
29871,
29896,
29947,
322,
278,
5377,
310,
278,
4612,
3573,
29871,
29896,
29946,
526,
1754,
304,
23120,
411,
1269,
916,
408,
5439,
2038,
29892,
727,
338,
263,
13331,
393,
263,
9117,
4383,
24395,
278,
7463,
2913,
29871,
29896,
29947,
515,
278,
5377,
322,
278,
9117,
4383,
594,
2276,
267,
304,
278,
1967,
23530,
29871,
29896,
29941,
29889,
512,
278,
10656,
3883,
29892,
263,
337,
985,
760,
402,
29950,
338,
8429,
491,
22039,
4697,
3460,
263,
5970,
310,
278,
9712,
8634,
4071,
994,
402,
24344,
408,
26848,
297,
383,
6259,
29889,
29871,
29896,
29945,
29898,
29872,
511,
322,
278,
9117,
4383,
607,
756,
7802,
964,
278,
9712,
8634,
4071,
994,
402,
338,
1020,
2986,
491,
278,
337,
985,
760,
402,
29950,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Details
ITEM#: 11895870
Place a timeless and stylish finishing touch on any kitchen with the Kraus stainless steel, single-lever kitchen faucet. This faucet is made of 100 percent stainless steel, so it does not discolor or rust, and the faucet's smooth and simple features make it easy to clean and maintain. It boasts a simple and intuitive single-lever design to control both water temperature and pressure. Water pressure has been tested to meet the national standard. All hardware is included for easy installation.
Update the look of your kitchen with this functional and stylish Kraus kitchen faucet
Kraus faucet resists discoloration and corrosion, no brass or copper used
Spout features 100-percent solid stainless steel construction
Sleek contemporary design
Sedal drip-free ceramic cartridge
Single lever water and temperature control
Single-hole
Top-mount installation
Easy to clean and maintain satin stainless steel finish
Water pressure tested for industry standard
Standard U.S. plumbing connections
Flow rate: 2.2 gallons per minute (GPM) at 60 PSI
ADA Compliant
Installation in a 1.4-inch hole
All mounting hardware and hot/cold waterlines included
Faucet: 14 inches high
Spout reach: 7 inches long
Swivels 360 degrees
In Accordance with Industry Codes and Standards for USA and Canada, all Kraus Stainless Steel Kitchen Faucets are Certified and Listed by UPC, cUPC, CSA, IAMPO, ANSI, SCC & NSF
i have 2 return..and i order the 3er.cause i love this faucet..my problems was..1st..the faucen isnt vertical...2nd return ..was leaking from the eurator.not from the faucet...but..this faucet is very good.i hope...if i have any other problem with it..i will request my money back.
This faucet is too hard to control the water flow... It blasts water and you end up with a bath. It's tough to regulate, it seems to be all or none. It does not have a sprayer...which I guess I did not read closely enough...But I absolutely hate this faucet and would have sent it back if I hadn't payed the plumber to put it in and then discovered it's issues...My best advice "avoid it"
Purchased the lever faucet to replace an existing leaky one so my specks for a replacement were particular. I did not want a sprayer and this product fit all of my specifications. The stainless steel finish matches appliances exactly. There must be some airration feature in the faucet because the water pressure coming out of this faucet is powerful. The plumber who installed commented on the quality of the faucet. It didn't come with any installation instructions but that didn't matter since I had it professionally installed. Keep in mind that the lever needs space to be pushed directly back for cold water. I had to install the faucet on a slight angle but it looks great.
Hello Everybody, We're from the N.E. area and These Type's of criteria are what we look for. Life Long materials that will not corrode and or rust nor deteriorate. KRAUS has got a true winner here -----------We
Shopping Tips & Inspiration
DIY Bathroom Remodel
An outdated bathroom can feel out of place in an otherwise beautiful home, but making upgrades on your own is simple.
Advantages of Owning a Pot Filler Faucet
Advantages of Owning a Pot Filler Faucet from Overstock.com. Our guides provide customers with information about the advantages of owning a pot filler faucet and advice about our many brand-name products.
Unique Faucet Designs
Faucet Buying Guide
Faucet Buying Guide from Overstock.com. Our guides provide customers with information about faucets and advice about our many brand-name products.
5 Styles of Danze Fixtures
5 Styles of Danze Fixtures from Overstock.com. Our guides provide customers with information about the top 5 styles of Danze fixtures and advice about our many brand-name products.
5 Styles of Delta Faucets
5 Styles of Delta Faucets from Overstock.com. Delta faucets feature beautiful designs in materials and finishes that will punctuate the style of your kitchen or bath, whether classic or modern.
FAQs about Fixing Faucets
FAQs about Fixing Faucets from Overstock.com. Our guides provide customers with answers to frequently asked questions about repairing faucets and advice about our many brand-name products.
Curb Appeal
From the mailbox to the numbers by the door, the front of your home can make a valuable first impression. It's time to get out your gloves, plant some flowers, and freshen up the front porch with a new door handle, planters and doormat. Your house will be glowing with curb appeal.
* For your protection, all orders are screened for security purposes. If your order is selected for review, our Loss Prevention Team may contact you by phone or email. There may be a two business day delay to process your order.
** Most Oversize orders are delivered within 1-4 weeks. Some orders may take 6 weeks to be
delivered.
Shop Overstock™ and find the best online deals on everything for your home and your family. We work every day to bring you discounts on new products across our entire store. Whether you're looking for memorable gifts or everyday essentials, you can buy them here for less. | [
1,
25577,
13,
13,
9094,
29924,
29937,
29901,
29871,
29896,
29896,
29947,
29929,
29945,
29947,
29955,
29900,
13,
13,
22150,
263,
5335,
6393,
322,
15877,
1674,
28321,
6023,
373,
738,
29181,
411,
278,
19387,
375,
380,
475,
2222,
22973,
29892,
2323,
29899,
280,
369,
29181,
285,
14766,
300,
29889,
910,
285,
14766,
300,
338,
1754,
310,
29871,
29896,
29900,
29900,
10151,
380,
475,
2222,
22973,
29892,
577,
372,
947,
451,
766,
2780,
470,
21580,
29892,
322,
278,
285,
14766,
300,
29915,
29879,
10597,
322,
2560,
5680,
1207,
372,
4780,
304,
5941,
322,
7344,
29889,
739,
1045,
19416,
263,
2560,
322,
27951,
573,
2323,
29899,
280,
369,
2874,
304,
2761,
1716,
4094,
10430,
322,
12959,
29889,
13062,
12959,
756,
1063,
9528,
304,
5870,
278,
4797,
3918,
29889,
2178,
12837,
338,
5134,
363,
4780,
11161,
29889,
13,
13,
6422,
278,
1106,
310,
596,
29181,
411,
445,
13303,
322,
15877,
1674,
19387,
375,
29181,
285,
14766,
300,
13,
13,
29968,
336,
375,
285,
14766,
300,
620,
2879,
766,
2780,
362,
322,
1034,
1883,
291,
29892,
694,
1506,
465,
470,
1302,
2496,
1304,
13,
13,
5592,
449,
5680,
29871,
29896,
29900,
29900,
29899,
25376,
7773,
380,
475,
2222,
22973,
7632,
13,
13,
29903,
280,
1416,
24952,
2874,
13,
13,
29903,
287,
284,
270,
6472,
29899,
9021,
5147,
314,
293,
7774,
8605,
13,
13,
15771,
26610,
4094,
322,
10430,
2761,
13,
13,
15771,
29899,
29716,
13,
13,
7031,
29899,
16476,
11161,
13,
13,
29923,
8995,
304,
5941,
322,
7344,
3290,
262,
380,
475,
2222,
22973,
8341,
13,
13,
29956,
1008,
12959,
9528,
363,
13661,
3918,
13,
13,
15449,
501,
29889,
29903,
29889,
715,
3774,
292,
12368,
13,
13,
17907,
6554,
29901,
29871,
29906,
29889,
29906,
11798,
787,
639,
11015,
313,
29954,
13427,
29897,
472,
29871,
29953,
29900,
349,
5425,
13,
13,
3035,
29909,
3831,
492,
424,
13,
13,
23271,
362,
297,
263,
29871,
29896,
29889,
29946,
29899,
22466,
16188,
13,
13,
3596,
5766,
292,
12837,
322,
7375,
29914,
29883,
1025,
4094,
9012,
5134,
13,
13,
29943,
14766,
300,
29901,
29871,
29896,
29946,
22831,
1880,
13,
13,
5592,
449,
6159,
29901,
29871,
29955,
22831,
1472,
13,
13,
10840,
440,
1379,
29871,
29941,
29953,
29900,
14496,
13,
13,
797,
4831,
536,
749,
411,
12157,
719,
315,
2631,
322,
6679,
3163,
363,
8278,
322,
7400,
29892,
599,
19387,
375,
624,
475,
2222,
2443,
295,
476,
23213,
383,
14766,
1691,
526,
18410,
2164,
322,
2391,
287,
491,
501,
9026,
29892,
274,
4897,
29907,
29892,
315,
8132,
29892,
306,
19297,
29949,
29892,
319,
3059,
29902,
29892,
317,
4174,
669,
3865,
29943,
13,
13,
29875,
505,
29871,
29906,
736,
636,
392,
474,
1797,
278,
29871,
29941,
261,
29889,
29883,
1071,
474,
5360,
445,
285,
14766,
300,
636,
1357,
4828,
471,
636,
29896,
303,
636,
1552,
285,
585,
10278,
338,
593,
11408,
856,
29906,
299,
736,
6317,
11102,
454,
5086,
515,
278,
321,
332,
1061,
29889,
1333,
515,
278,
285,
14766,
300,
856,
4187,
636,
1366,
285,
14766,
300,
338,
1407,
1781,
29889,
29875,
4966,
856,
361,
474,
505,
738,
916,
1108,
411,
372,
636,
29875,
674,
2009,
590,
6909,
1250,
29889,
13,
13,
4013,
285,
14766,
300,
338,
2086,
2898,
304,
2761,
278,
4094,
4972,
856,
739,
1999,
19416,
4094,
322,
366,
1095,
701,
411,
263,
27683,
29889,
739,
29915,
29879,
260,
820,
304,
1072,
5987,
29892,
372,
2444,
304,
367,
599,
470,
5642,
29889,
739,
947,
451,
505,
263,
805,
764,
261,
856,
4716,
306,
4140,
306,
1258,
451,
1303,
16467,
3307,
856,
6246,
306,
13312,
26277,
445,
285,
14766,
300,
322,
723,
505,
2665,
372,
1250,
565,
306,
27222,
29915,
29873,
5146,
287,
278,
715,
2807,
304,
1925,
372,
297,
322,
769,
10943,
372,
29915,
29879,
5626,
856,
3421,
1900,
9848,
376,
485,
3398,
372,
29908,
13,
13,
29925,
2458,
1463,
278,
26610,
285,
14766,
300,
304,
5191,
385,
5923,
24993,
29891,
697,
577,
590,
961,
4684,
363,
263,
16920,
892,
3153,
29889,
306,
1258,
451,
864,
263,
805,
764,
261,
322,
445,
3234,
6216,
599,
310,
590,
2702,
800,
29889,
450,
380,
475,
2222,
22973,
8341,
7087,
623,
492,
2925,
3721,
29889,
1670,
1818,
367,
777,
4799,
29878,
362,
4682,
297,
278,
285,
14766,
300,
1363,
278,
4094,
12959,
6421,
714,
310,
445,
285,
14766,
300,
338,
13988,
29889,
450,
715,
2807,
1058,
5130,
19952,
373,
278,
11029,
310,
278,
285,
14766,
300,
29889,
739,
3282,
29915,
29873,
2041,
411,
738,
11161,
11994,
541,
393,
3282,
29915,
29873,
4383,
1951,
306,
750,
372,
6351,
635,
5130,
29889,
19152,
297,
3458,
393,
278,
26610,
4225,
2913,
304,
367,
18760,
4153,
1250,
363,
11220,
4094,
29889,
306,
750,
304,
2601,
278,
285,
14766,
300,
373,
263,
7248,
10696,
541,
372,
3430,
2107,
29889,
13,
13,
10994,
7569,
2587,
29892,
1334,
29915,
276,
515,
278,
405,
29889,
29923,
29889,
4038,
322,
4525,
5167,
29915,
29879,
310,
16614,
526,
825,
591,
1106,
363,
29889,
4634,
6242,
17279,
393,
674,
451,
1034,
307,
311,
322,
470,
21580,
3643,
270,
1308,
1611,
403,
29889,
476,
4717,
3308,
756,
2355,
263,
1565,
19576,
1244,
448,
28400,
4806,
13,
13,
29903,
1251,
3262,
323,
4512,
669,
512,
1028,
12232,
13,
13,
4571,
29979,
28256,
8345,
5240,
27224,
13,
13,
2744,
714,
9715,
27683,
8345,
508,
4459,
714,
310,
2058,
297,
385,
6467,
9560,
3271,
29892,
541,
3907,
701,
629,
3076,
373,
596,
1914,
338,
2560,
29889,
13,
13,
3253,
29894,
19771,
310,
438,
29893,
1076,
263,
10173,
383,
5495,
383,
14766,
300,
13,
13,
3253,
29894,
19771,
310,
438,
29893,
1076,
263,
10173,
383,
5495,
383,
14766,
300,
515,
6811,
17712,
29889,
510,
29889,
8680,
1410,
2247,
3867,
20330,
411,
2472,
1048,
278,
25486,
310,
8152,
1076,
263,
3104,
5445,
261,
285,
14766,
300,
322,
9848,
1048,
1749,
1784,
14982,
29899,
978,
9316,
29889,
13,
13,
8110,
802,
383,
14766,
300,
12037,
29879,
13,
13,
29943,
14766,
300,
5373,
5414,
16886,
13,
13,
29943,
14766,
300,
5373,
5414,
16886,
515,
6811,
17712,
29889,
510,
29889,
8680,
1410,
2247,
3867,
20330,
411,
2472,
1048,
285,
14766,
1691,
322,
9848,
1048,
1749,
1784,
14982,
29899,
978,
9316,
29889,
13,
13,
29945,
624,
5577,
310,
3951,
911,
383,
29875,
486,
1973,
13,
13,
29945,
624,
5577,
310,
3951,
911,
383,
29875,
486,
1973,
515,
6811,
17712,
29889,
510,
29889,
8680,
1410,
2247,
3867,
20330,
411,
2472,
1048,
278,
2246,
29871,
29945,
11949,
310,
3951,
911,
5713,
486,
1973,
322,
9848,
1048,
1749,
1784,
14982,
29899,
978,
9316,
29889,
13,
13,
29945,
624,
5577,
310,
360,
2554,
383,
14766,
1691,
13,
13,
29945,
624,
5577,
310,
360,
2554,
383,
14766,
1691,
515,
6811,
17712,
29889,
510,
29889,
360,
2554,
285,
14766,
1691,
4682,
9560,
25517,
297,
17279,
322,
8341,
267,
393,
674,
6035,
22999,
403,
278,
3114,
310,
596,
29181,
470,
27683,
29892,
3692,
22037,
470,
5400,
29889,
13,
13,
4519,
29984,
29879,
1048,
24778,
292,
383,
14766,
1691,
13,
13,
4519,
29984,
29879,
1048,
24778,
292,
383,
14766,
1691,
515,
6811,
17712,
29889,
510,
29889,
8680,
1410,
2247,
3867,
20330,
411,
6089,
304,
13672,
4433,
5155,
1048,
26032,
292,
285,
14766,
1691,
322,
9848,
1048,
1749,
1784,
14982,
29899,
978,
9316,
29889,
13,
13,
29907,
9265,
2401,
29872,
284,
13,
13,
4591,
278,
10524,
1884,
304,
278,
3694,
491,
278,
3050,
29892,
278,
4565,
310,
596,
3271,
508,
1207,
263,
21114,
937,
17188,
29889,
739,
29915,
29879,
931,
304,
679,
714,
596,
15482,
1960,
29892,
8024,
777,
18281,
29892,
322,
29595,
3169,
701,
278,
4565,
1277,
305,
411,
263,
716,
3050,
4386,
29892,
3814,
2153,
322,
437,
555,
271,
29889,
3575,
3699,
674,
367,
330,
677,
292,
411,
3151,
29890,
25530,
29889,
13,
13,
29930,
1152,
596,
13047,
29892,
599,
11299,
526,
4315,
287,
363,
6993,
11976,
29889,
960,
596,
1797,
338,
4629,
363,
9076,
29892,
1749,
365,
2209,
4721,
7316,
8583,
1122,
6958,
366,
491,
9008,
470,
4876,
29889,
1670,
1122,
367,
263,
1023,
5381,
2462,
9055,
304,
1889,
596,
1797,
29889,
13,
13,
1068,
7849,
438,
874,
675,
11299,
526,
20115,
2629,
29871,
29896,
29899,
29946,
11405,
29889,
3834,
11299,
1122,
2125,
29871,
29953,
11405,
304,
367,
13,
6144,
2147,
287,
29889,
13,
13,
2713,
459,
6811,
17712,
30536,
322,
1284,
278,
1900,
7395,
316,
1338,
373,
4129,
363,
596,
3271,
322,
596,
3942,
29889,
1334,
664,
1432,
2462,
304,
6963,
366,
2313,
792,
29879,
373,
716,
9316,
4822,
1749,
4152,
3787,
29889,
26460,
366,
29915,
276,
3063,
363,
26959,
519,
330,
17741,
470,
1432,
3250,
3686,
9409,
29892,
366,
508,
15649,
963,
1244,
363,
3109,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
WWE and Warner Bros. Interactive today announced WWE Immortals, a free-to-play mobile game developed by Mortal Kombat studio NetherRealm in association with Phosphor Game Studios.
Due to launch worldwide in 2015, WWE Immortals is coming to iPad, iPhone, iPod Touch and Android devices. Unfortunately, WWE and Warner Bros. aren't sharing many details about the game. All we know is that it will "feature epic Superstar battles in a fantastically re-imagined WWE world."
WWE and Warner say further details, including information about gameplay features, will be announced sometime ahead of WWE Immortals' release next year. We also don't have any images or video to look at, so the picture of gamer-guy Big Show above will have to do for now.
In addition to WWE Immortals, NetherRealm is working on Mortal Kombat X, which will be released for consoles and PC in 2015. | [
1,
399,
8851,
322,
26699,
350,
1883,
29889,
4124,
4925,
9826,
9326,
399,
8851,
1954,
29720,
1338,
29892,
263,
3889,
29899,
517,
29899,
1456,
10426,
3748,
8906,
491,
15533,
284,
476,
3424,
271,
8693,
22528,
1123,
17120,
297,
15477,
411,
1963,
25715,
272,
8448,
23268,
29889,
13,
13,
29928,
434,
304,
6826,
3186,
8157,
297,
29871,
29906,
29900,
29896,
29945,
29892,
399,
8851,
1954,
29720,
1338,
338,
6421,
304,
474,
20369,
29892,
18483,
29892,
474,
27345,
28675,
322,
5669,
9224,
29889,
11511,
29892,
399,
8851,
322,
26699,
350,
1883,
29889,
9455,
29915,
29873,
19383,
1784,
4902,
1048,
278,
3748,
29889,
2178,
591,
1073,
338,
393,
372,
674,
376,
14394,
9358,
293,
5670,
8508,
8957,
793,
297,
263,
13568,
579,
1711,
337,
29899,
326,
351,
1312,
399,
8851,
3186,
1213,
13,
13,
29956,
8851,
322,
26699,
1827,
4340,
4902,
29892,
3704,
2472,
1048,
3748,
1456,
5680,
29892,
674,
367,
9326,
1047,
5410,
14432,
310,
399,
8851,
1954,
29720,
1338,
29915,
6507,
2446,
1629,
29889,
1334,
884,
1016,
29915,
29873,
505,
738,
4558,
470,
4863,
304,
1106,
472,
29892,
577,
278,
7623,
310,
330,
4183,
29899,
2543,
29891,
7997,
7704,
2038,
674,
505,
304,
437,
363,
1286,
29889,
13,
13,
797,
6124,
304,
399,
8851,
1954,
29720,
1338,
29892,
22528,
1123,
17120,
338,
1985,
373,
15533,
284,
476,
3424,
271,
1060,
29892,
607,
674,
367,
5492,
363,
1136,
6544,
322,
9609,
297,
29871,
29906,
29900,
29896,
29945,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Main menu
a clusterfuck of words
Tag Archives: reckless
I was once asked if I would ever track you down,or even if I wanted to meet you; Lex knows how I feel about you but he still had to ask.
I thought it would have be easier, you’ve done nothing for me, but instead a lump formed in my throat and my heart broke a little when i said fuck no.
Why would I?
I can’t even remember your face,let alone voice.
I do remember the last we spoke- I don’t remember the words you said but I know I hung up on you and never spoke to you again.
I won’t admit that I think about you from time to time; I remember the mural by what I assume was your home,do you still live there?
Or if you had another family,do I have half siblings out there somewhere?
I’d never admit that jealousy was my best friend during my younger years;seeing fathers with their children, enjoying themselves- I told myself over and over that it didnt matter, it was okay.
I used to ask mother about you but she must have hated you as much as I did because I never got a straight answer, only ever saying your name once.
What did you do?
Why did you give up so easily?
Its fucking hard to admit that I did need you. I hate myself for it and I hate you. You gave up.
Writing this, shit, I never thought I would; I dont even know why I am- you’ll never see it,is making me feel slightly better.
For years I acted out recklessly, craving an attention I would never get, even know,destroying everything in my path;putting relationships at risk.
But I’m finally starting to realize it wasn’t in my control, I don’t know what you did and I dont care. I don’t say that I forgive you because I don’t think I can(you’ll go back into the forget box until someone asks me about you)but I understand, you did what you had to do.
I do thank you for not being there since I am the person I am today without you. I may not like myself all the time and have some issues but I wouldn’t trade it for a single day with you. | [
1,
4241,
6143,
13,
13,
29874,
9867,
29888,
2707,
310,
3838,
13,
13,
8176,
28320,
29901,
25527,
2222,
13,
13,
29902,
471,
2748,
4433,
565,
306,
723,
3926,
5702,
366,
1623,
29892,
272,
1584,
565,
306,
5131,
304,
5870,
366,
29936,
15045,
9906,
920,
306,
4459,
1048,
366,
541,
540,
1603,
750,
304,
2244,
29889,
13,
13,
29902,
2714,
372,
723,
505,
367,
6775,
29892,
366,
30010,
345,
2309,
3078,
363,
592,
29892,
541,
2012,
263,
301,
3427,
8429,
297,
590,
20961,
271,
322,
590,
5192,
14455,
263,
2217,
746,
474,
1497,
285,
2707,
694,
29889,
13,
13,
11008,
723,
306,
29973,
13,
13,
29902,
508,
30010,
29873,
1584,
6456,
596,
3700,
29892,
1026,
7432,
7314,
29889,
13,
13,
29902,
437,
6456,
278,
1833,
591,
12707,
29899,
306,
1016,
30010,
29873,
6456,
278,
3838,
366,
1497,
541,
306,
1073,
306,
18757,
701,
373,
366,
322,
2360,
12707,
304,
366,
1449,
29889,
13,
13,
29902,
2113,
30010,
29873,
20000,
393,
306,
1348,
1048,
366,
515,
931,
304,
931,
29936,
306,
6456,
278,
286,
3631,
491,
825,
306,
5251,
471,
596,
3271,
29892,
1867,
366,
1603,
5735,
727,
29973,
13,
13,
2816,
565,
366,
750,
1790,
3942,
29892,
1867,
306,
505,
4203,
27767,
18964,
714,
727,
9051,
29973,
13,
13,
29902,
30010,
29881,
2360,
20000,
393,
1444,
20521,
29891,
471,
590,
1900,
5121,
2645,
590,
20023,
2440,
29936,
4149,
292,
285,
19467,
411,
1009,
4344,
29892,
11418,
5414,
6053,
29899,
306,
5429,
6142,
975,
322,
975,
393,
372,
28950,
4383,
29892,
372,
471,
20759,
29889,
13,
13,
29902,
1304,
304,
2244,
5637,
1048,
366,
541,
1183,
1818,
505,
298,
630,
366,
408,
1568,
408,
306,
1258,
1363,
306,
2360,
2355,
263,
7812,
1234,
29892,
871,
3926,
5934,
596,
1024,
2748,
29889,
13,
13,
5618,
1258,
366,
437,
29973,
13,
13,
11008,
1258,
366,
2367,
701,
577,
5948,
29973,
13,
13,
29902,
1372,
285,
2707,
292,
2898,
304,
20000,
393,
306,
1258,
817,
366,
29889,
306,
26277,
6142,
363,
372,
322,
306,
26277,
366,
29889,
887,
4846,
701,
29889,
13,
13,
29956,
768,
292,
445,
29892,
528,
277,
29892,
306,
2360,
2714,
306,
723,
29936,
306,
4555,
1584,
1073,
2020,
306,
626,
29899,
366,
30010,
645,
2360,
1074,
372,
29892,
275,
3907,
592,
4459,
10029,
2253,
29889,
13,
13,
2831,
2440,
306,
27320,
714,
25527,
23769,
29892,
12220,
1747,
385,
8570,
306,
723,
2360,
679,
29892,
1584,
1073,
29892,
20524,
292,
4129,
297,
590,
2224,
29936,
649,
1259,
21702,
472,
12045,
29889,
13,
13,
6246,
306,
30010,
29885,
7146,
6257,
304,
16289,
372,
9007,
30010,
29873,
297,
590,
2761,
29892,
306,
1016,
30010,
29873,
1073,
825,
366,
1258,
322,
306,
4555,
2562,
29889,
306,
1016,
30010,
29873,
1827,
393,
306,
18879,
573,
366,
1363,
306,
1016,
30010,
29873,
1348,
306,
508,
29898,
6293,
30010,
645,
748,
1250,
964,
278,
9566,
3800,
2745,
4856,
19514,
592,
1048,
366,
29897,
4187,
306,
2274,
29892,
366,
1258,
825,
366,
750,
304,
437,
29889,
13,
13,
29902,
437,
6452,
366,
363,
451,
1641,
727,
1951,
306,
626,
278,
2022,
306,
626,
9826,
1728,
366,
29889,
306,
1122,
451,
763,
6142,
599,
278,
931,
322,
505,
777,
5626,
541,
306,
7656,
30010,
29873,
11302,
372,
363,
263,
2323,
2462,
411,
366,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Here is a simple set-up for backyard practice. All you’ll need are four jumps, one tunnel and an A-frame (although you can substitute the dog walk or teeter – just tweak the spacing to accommodate those obstacles.) | [
1,
2266,
338,
263,
2560,
731,
29899,
786,
363,
1250,
19852,
6944,
29889,
2178,
366,
30010,
645,
817,
526,
3023,
432,
17204,
29892,
697,
26086,
322,
385,
319,
29899,
2557,
313,
26492,
366,
508,
23764,
278,
11203,
6686,
470,
734,
1308,
785,
925,
7780,
557,
278,
29250,
304,
24803,
403,
1906,
14979,
23435,
1846
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
26.ru report:
domain age is 19,
global rank is 214285,
google pagerank is 3/10
page loading time is 925 (ms),
archive.org record count is 238
26.ru is working speed with a value of 236 ms. is fine. We recommend that you keep this value. If necessary, you can speed up even more by making new studies.
Visitor Traffic
Traffic Source
Site Map Explanation
Site Map
When we analyse your 26.ru web site's codes, we determined that you didn't use a sitemap. If you don't use a sitemap, It will be efficent to give link this sitemap page from your homepage. Also sitemap pages name is generally determined as sitemap.xml. You can prepare a sitemap page named www.c-arts.ru/sitemap.xml
Html Validation Explanation
There are comments below about HTML structure of 26.ru. We recommend you to check it for making sure your website works right and is suitable for search engines.
Html Validation
181 Error
When we analyse your web site, we saw that your error number in W3 html standarts is 181. Html standards means It is fitness coding for search engine scructure. When Search engine's spiders visit your web site, they can stay your site more time for these errors. This will affect your quality point badly. With correcting this errors, You can raise the transformation of your web site to the search engines.
Top Search Queries Explanation
26.ru's searched keywords and search rates are shown in graphic below. You can plan new strategies by examining shown data.
Top Search Queries
работа в ставрополе43.61%
2629.62%
gosuslugi6.41%
справочник организаций6.20%
курс доллара1.92%
rehc tdhj1.81%
курс евро1.14%
справочник0.98%
работа ставрополь0.68%
2amp;quot;0.63%
View More
Title Length Explanation
You can see comment for 26.ru's title. You can plan improvements considering comments.
Title Length : 90 Character
90
Your title character item is 90. To us , it is a bit more than Standart number , If you want to ask us , you should make 80 characters. This is just our advice.
Meta Language Explanation
With Meta Language tag you can define your site language. This doesn't seem to bring any benefit at all, but you can use it as a standard.
Meta Language Explanation
Language in meta language section on 26.ru internet site is. If you think that your web site's content was written in this language, It means that you use right meta language. If your web site's language harbour a different language content, This meta language code is wrong. You should change your site's meta language code.
Global-Alexa Rank Explanation
Lots of domains registered all around the world. Around 50.000.000 of these domains are being used with websites active. Related to belonged website, these domains are ranked.
26.ru website is 214285. website in the world.
Global-Alexa Rank : 214285
www.26.ru has 214285 rank out of 50.000.000 sites. For additional information see alexa.com.
Estimated Value Explanation
https:www.wboxy.site has determined a value for 26.ru based on spesific criterias. Some of them :
Google pagerank, global rank, website traffic, how much time do users spend on website, domain extension, domain creation date.
Estimated Value
111.984
Page Speed Explanation
Shows how much does it take to load the website. Colors on image shows suitability, green for fast and suitable, yellow for moderate and needs improvement, red for very slow and needs urgent improvement.
Page Speed
925
Ms
Meta Description Explanation
Meta Description tag allows you to tell search engines what your website is about. This process has benefits. You can find information of how should be a meta description tag on comments below.
Meta Description Length
56
Character length in meta description code section of your 26.ru web site is 56 character. You could put in the information to sum up your internet site's content. But you have a chance to raise this number to 150 characters because search engines read almost 150 characters. For a better optimization, You can sum up your site's content in meta description part.
Meta Keywords Explanation
Meta Keywords tag allows you to define keywords of your website. This process has benefits. You can find information of how should be a meta description tag on comments below.
Meta Keywords Length
93
Character number in meta keywords area related to your 26.ru internet site is 93. You character number is seen adequate to explain your site's content but search engines allow keywords till 200 characters. If you raise your keywords, you can also raise the visitors traffic out of internet. If you want your web site gets more visitors , please make a better keywords analysis about your site and put in these keywords in title and meta keywords section. | [
1,
29871,
29906,
29953,
29889,
582,
3461,
29901,
13,
7247,
5046,
338,
29871,
29896,
29929,
29892,
13,
10945,
7115,
338,
29871,
29906,
29896,
29946,
29906,
29947,
29945,
29892,
13,
3608,
282,
1875,
804,
338,
29871,
29941,
29914,
29896,
29900,
13,
3488,
8363,
931,
338,
29871,
29929,
29906,
29945,
313,
1516,
511,
13,
10867,
29889,
990,
2407,
2302,
338,
29871,
29906,
29941,
29947,
13,
29906,
29953,
29889,
582,
338,
1985,
6210,
411,
263,
995,
310,
29871,
29906,
29941,
29953,
10887,
29889,
338,
2691,
29889,
1334,
6907,
393,
366,
3013,
445,
995,
29889,
960,
5181,
29892,
366,
508,
6210,
701,
1584,
901,
491,
3907,
716,
11898,
29889,
13,
13,
6116,
2105,
3201,
2416,
13,
13,
5323,
2416,
7562,
13,
13,
17033,
7315,
1222,
9018,
362,
13,
13,
17033,
7315,
13,
13,
10401,
591,
16455,
344,
596,
29871,
29906,
29953,
29889,
582,
1856,
3268,
29915,
29879,
11561,
29892,
591,
10087,
393,
366,
3282,
29915,
29873,
671,
263,
269,
667,
481,
29889,
960,
366,
1016,
29915,
29873,
671,
263,
269,
667,
481,
29892,
739,
674,
367,
6366,
296,
304,
2367,
1544,
445,
269,
667,
481,
1813,
515,
596,
3271,
3488,
29889,
3115,
269,
667,
481,
6515,
1024,
338,
6892,
10087,
408,
269,
667,
481,
29889,
3134,
29889,
887,
508,
19012,
263,
269,
667,
481,
1813,
4257,
7821,
29889,
29883,
29899,
5708,
29889,
582,
29914,
29879,
667,
481,
29889,
3134,
13,
13,
10922,
15758,
362,
1222,
9018,
362,
13,
13,
8439,
526,
6589,
2400,
1048,
4544,
3829,
310,
29871,
29906,
29953,
29889,
582,
29889,
1334,
6907,
366,
304,
1423,
372,
363,
3907,
1854,
596,
4700,
1736,
1492,
322,
338,
13907,
363,
2740,
24000,
29889,
13,
13,
10922,
15758,
362,
13,
13,
29896,
29947,
29896,
4829,
13,
13,
10401,
591,
16455,
344,
596,
1856,
3268,
29892,
591,
4446,
393,
596,
1059,
1353,
297,
399,
29941,
3472,
2317,
5708,
338,
29871,
29896,
29947,
29896,
29889,
24726,
20801,
2794,
739,
338,
6216,
2264,
14137,
363,
2740,
6012,
885,
1247,
545,
29889,
1932,
11856,
6012,
29915,
29879,
805,
11376,
6493,
596,
1856,
3268,
29892,
896,
508,
7952,
596,
3268,
901,
931,
363,
1438,
4436,
29889,
910,
674,
6602,
596,
11029,
1298,
28042,
29889,
2973,
1959,
292,
445,
4436,
29892,
887,
508,
12020,
278,
13852,
310,
596,
1856,
3268,
304,
278,
2740,
24000,
29889,
13,
13,
7031,
11856,
751,
6358,
1222,
9018,
362,
13,
13,
29906,
29953,
29889,
582,
29915,
29879,
17371,
29361,
322,
2740,
19257,
526,
4318,
297,
3983,
293,
2400,
29889,
887,
508,
3814,
716,
16650,
583,
491,
4392,
2827,
4318,
848,
29889,
13,
13,
7031,
11856,
751,
6358,
13,
13,
15384,
676,
490,
2591,
8627,
1268,
753,
29946,
29941,
29889,
29953,
29896,
29995,
13,
13,
29906,
29953,
29906,
29929,
29889,
29953,
29906,
29995,
13,
13,
29887,
359,
375,
29880,
688,
29875,
29953,
29889,
29946,
29896,
29995,
13,
13,
29935,
8821,
984,
27944,
17289,
15071,
29953,
29889,
29906,
29900,
29995,
13,
13,
23893,
29935,
11213,
684,
494,
29896,
29889,
29929,
29906,
29995,
13,
13,
9003,
29883,
260,
12744,
29926,
29896,
29889,
29947,
29896,
29995,
13,
13,
23893,
29935,
1694,
8627,
29896,
29889,
29896,
29946,
29995,
13,
13,
29935,
8821,
984,
27944,
29900,
29889,
29929,
29947,
29995,
13,
13,
15384,
676,
2591,
8627,
18360,
29900,
29889,
29953,
29947,
29995,
13,
13,
29906,
1160,
29936,
23083,
29936,
29900,
29889,
29953,
29941,
29995,
13,
13,
1043,
5853,
13,
13,
7030,
365,
1477,
1222,
9018,
362,
13,
13,
3492,
508,
1074,
3440,
363,
29871,
29906,
29953,
29889,
582,
29915,
29879,
3611,
29889,
887,
508,
3814,
28473,
13858,
6589,
29889,
13,
13,
7030,
365,
1477,
584,
29871,
29929,
29900,
26804,
13,
13,
29929,
29900,
13,
13,
10858,
3611,
2931,
2944,
338,
29871,
29929,
29900,
29889,
1763,
502,
1919,
372,
338,
263,
2586,
901,
1135,
6679,
442,
1353,
1919,
960,
366,
864,
304,
2244,
502,
1919,
366,
881,
1207,
29871,
29947,
29900,
4890,
29889,
910,
338,
925,
1749,
9848,
29889,
13,
13,
19346,
17088,
1222,
9018,
362,
13,
13,
3047,
20553,
17088,
4055,
366,
508,
4529,
596,
3268,
4086,
29889,
910,
1838,
29915,
29873,
2833,
304,
6963,
738,
14169,
472,
599,
29892,
541,
366,
508,
671,
372,
408,
263,
3918,
29889,
13,
13,
19346,
17088,
1222,
9018,
362,
13,
13,
21233,
297,
12700,
4086,
4004,
373,
29871,
29906,
29953,
29889,
582,
8986,
3268,
338,
29889,
960,
366,
1348,
393,
596,
1856,
3268,
29915,
29879,
2793,
471,
3971,
297,
445,
4086,
29892,
739,
2794,
393,
366,
671,
1492,
12700,
4086,
29889,
960,
596,
1856,
3268,
29915,
29879,
4086,
4023,
6526,
263,
1422,
4086,
2793,
29892,
910,
12700,
4086,
775,
338,
2743,
29889,
887,
881,
1735,
596,
3268,
29915,
29879,
12700,
4086,
775,
29889,
13,
13,
12756,
29899,
17406,
29874,
22125,
1222,
9018,
362,
13,
13,
29931,
1862,
310,
21904,
15443,
599,
2820,
278,
3186,
29889,
826,
618,
29871,
29945,
29900,
29889,
29900,
29900,
29900,
29889,
29900,
29900,
29900,
310,
1438,
21904,
526,
1641,
1304,
411,
28007,
6136,
29889,
6376,
630,
304,
28911,
4700,
29892,
1438,
21904,
526,
26642,
29889,
13,
29906,
29953,
29889,
582,
4700,
338,
29871,
29906,
29896,
29946,
29906,
29947,
29945,
29889,
4700,
297,
278,
3186,
29889,
13,
13,
12756,
29899,
17406,
29874,
22125,
584,
29871,
29906,
29896,
29946,
29906,
29947,
29945,
13,
13,
1636,
29889,
29906,
29953,
29889,
582,
756,
29871,
29906,
29896,
29946,
29906,
29947,
29945,
7115,
714,
310,
29871,
29945,
29900,
29889,
29900,
29900,
29900,
29889,
29900,
29900,
29900,
11840,
29889,
1152,
5684,
2472,
1074,
263,
2506,
29874,
29889,
510,
29889,
13,
13,
12787,
326,
630,
7865,
1222,
9018,
362,
13,
13,
991,
29901,
1636,
29889,
29893,
1884,
29891,
29889,
2746,
756,
10087,
263,
995,
363,
29871,
29906,
29953,
29889,
582,
2729,
373,
805,
267,
928,
28770,
3173,
29889,
3834,
310,
963,
584,
13,
14207,
282,
1875,
804,
29892,
5534,
7115,
29892,
4700,
12469,
29892,
920,
1568,
931,
437,
4160,
18864,
373,
4700,
29892,
5354,
6081,
29892,
5354,
11265,
2635,
29889,
13,
13,
12787,
326,
630,
7865,
13,
13,
29896,
29896,
29896,
29889,
29929,
29947,
29946,
13,
13,
5074,
24839,
1222,
9018,
362,
13,
13,
2713,
1242,
920,
1568,
947,
372,
2125,
304,
2254,
278,
4700,
29889,
29183,
373,
1967,
3697,
14726,
3097,
29892,
7933,
363,
5172,
322,
13907,
29892,
13328,
363,
17768,
403,
322,
4225,
20414,
29892,
2654,
363,
1407,
5232,
322,
4225,
5065,
5362,
20414,
29889,
13,
13,
5074,
24839,
13,
13,
29929,
29906,
29945,
13,
29924,
29879,
13,
13,
19346,
12953,
1222,
9018,
362,
13,
13,
19346,
12953,
4055,
6511,
366,
304,
2649,
2740,
24000,
825,
596,
4700,
338,
1048,
29889,
910,
1889,
756,
23633,
29889,
887,
508,
1284,
2472,
310,
920,
881,
367,
263,
12700,
6139,
4055,
373,
6589,
2400,
29889,
13,
13,
19346,
12953,
365,
1477,
13,
13,
29945,
29953,
13,
13,
20755,
3309,
297,
12700,
6139,
775,
4004,
310,
596,
29871,
29906,
29953,
29889,
582,
1856,
3268,
338,
29871,
29945,
29953,
2931,
29889,
887,
1033,
1925,
297,
278,
2472,
304,
2533,
701,
596,
8986,
3268,
29915,
29879,
2793,
29889,
1205,
366,
505,
263,
8825,
304,
12020,
445,
1353,
304,
29871,
29896,
29945,
29900,
4890,
1363,
2740,
24000,
1303,
4359,
29871,
29896,
29945,
29900,
4890,
29889,
1152,
263,
2253,
13883,
29892,
887,
508,
2533,
701,
596,
3268,
29915,
29879,
2793,
297,
12700,
6139,
760,
29889,
13,
13,
19346,
7670,
9303,
1222,
9018,
362,
13,
13,
19346,
7670,
9303,
4055,
6511,
366,
304,
4529,
29361,
310,
596,
4700,
29889,
910,
1889,
756,
23633,
29889,
887,
508,
1284,
2472,
310,
920,
881,
367,
263,
12700,
6139,
4055,
373,
6589,
2400,
29889,
13,
13,
19346,
7670,
9303,
365,
1477,
13,
13,
29929,
29941,
13,
13,
20755,
1353,
297,
12700,
29361,
4038,
4475,
304,
596,
29871,
29906,
29953,
29889,
582,
8986,
3268,
338,
29871,
29929,
29941,
29889,
887,
2931,
1353,
338,
3595,
19967,
339,
403,
304,
5649,
596,
3268,
29915,
29879,
2793,
541,
2740,
24000,
2758,
29361,
3428,
29871,
29906,
29900,
29900,
4890,
29889,
960,
366,
12020,
596,
29361,
29892,
366,
508,
884,
12020,
278,
26824,
12469,
714,
310,
8986,
29889,
960,
366,
864,
596,
1856,
3268,
4947,
901,
26824,
1919,
3113,
1207,
263,
2253,
29361,
7418,
1048,
596,
3268,
322,
1925,
297,
1438,
29361,
297,
3611,
322,
12700,
29361,
4004,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
package jetbrains.mps.samples.formulaLanguage.editor;
/*Generated by MPS */
import jetbrains.mps.nodeEditor.DefaultNodeEditor;
import jetbrains.mps.openapi.editor.cells.EditorCell;
import jetbrains.mps.openapi.editor.EditorContext;
import org.jetbrains.mps.openapi.model.SNode;
public class AndOperation_Editor extends DefaultNodeEditor {
public EditorCell createEditorCell(EditorContext editorContext, SNode node) {
return new AndOperation_EditorBuilder_a(editorContext, node).createCell();
}
}
| [
1,
3577,
22588,
29705,
29889,
29885,
567,
29889,
27736,
29889,
689,
2497,
21233,
29889,
15204,
29936,
13,
13,
5515,
24565,
491,
341,
7024,
3776,
13,
13,
5215,
22588,
29705,
29889,
29885,
567,
29889,
3177,
15280,
29889,
4592,
4247,
15280,
29936,
13,
5215,
22588,
29705,
29889,
29885,
567,
29889,
3150,
2754,
29889,
15204,
29889,
3729,
29879,
29889,
15280,
4617,
29936,
13,
5215,
22588,
29705,
29889,
29885,
567,
29889,
3150,
2754,
29889,
15204,
29889,
15280,
2677,
29936,
13,
5215,
1638,
29889,
4026,
29705,
29889,
29885,
567,
29889,
3150,
2754,
29889,
4299,
29889,
29903,
4247,
29936,
13,
13,
3597,
770,
1126,
10925,
29918,
15280,
4988,
13109,
4247,
15280,
426,
13,
29871,
970,
14059,
4617,
1653,
15280,
4617,
29898,
15280,
2677,
6920,
2677,
29892,
317,
4247,
2943,
29897,
426,
13,
1678,
736,
716,
1126,
10925,
29918,
15280,
5627,
29918,
29874,
29898,
15204,
2677,
29892,
2943,
467,
3258,
4617,
890,
13,
29871,
500,
13,
29913,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
package com.crawljax.plugins.testcasegenerator.report;
import java.util.LinkedList;
import java.util.List;
import com.crawljax.condition.invariant.Invariant;
import com.crawljax.core.state.Eventable;
import com.crawljax.core.state.StateVertex;
public class MethodResult {
private LinkedList<StateVertexResult> crawlStates;
private LinkedList<EventableResult> crawlPath;
private boolean success;
private String methodName;
public MethodResult(String methodName) {
this.methodName = methodName;
this.crawlPath = new LinkedList<EventableResult>();
this.crawlStates = new LinkedList<StateVertexResult>();
this.success = false;
}
public void setSuccess(boolean success) {
this.success = success;
}
public void addEventable(Eventable eventable) {
this.crawlPath.add(new EventableResult(eventable));
}
public void addState(StateVertex state) {
this.crawlStates.add(new StateVertexResult(state));
}
public void markLastEventableFailed() {
this.crawlPath.getLast().setSuccess(false);
}
public void markLastStateFailed(List<Invariant> failedInvariants) {
this.crawlStates.getLast().setSuccess(false);
this.crawlStates.getLast().setFailedInvariants(failedInvariants);
}
public void markLastStateDifferent() {
this.crawlStates.getLast().setIdentical(false);
}
}
| [
1,
3577,
419,
29889,
29883,
1610,
29880,
6487,
29889,
12800,
29889,
1688,
9398,
387,
759,
1061,
29889,
12276,
29936,
13,
13,
5215,
2115,
29889,
4422,
29889,
6595,
287,
1293,
29936,
13,
5215,
2115,
29889,
4422,
29889,
1293,
29936,
13,
13,
5215,
419,
29889,
29883,
1610,
29880,
6487,
29889,
16122,
29889,
262,
19365,
29889,
797,
19365,
29936,
13,
5215,
419,
29889,
29883,
1610,
29880,
6487,
29889,
3221,
29889,
3859,
29889,
2624,
519,
29936,
13,
5215,
419,
29889,
29883,
1610,
29880,
6487,
29889,
3221,
29889,
3859,
29889,
2792,
22479,
29936,
13,
13,
3597,
770,
8108,
3591,
426,
13,
12,
9053,
28547,
1293,
29966,
2792,
22479,
3591,
29958,
29349,
29880,
855,
1078,
29936,
13,
12,
9053,
28547,
1293,
29966,
2624,
519,
3591,
29958,
29349,
29880,
2605,
29936,
13,
12,
9053,
7223,
2551,
29936,
13,
12,
9053,
1714,
1158,
1170,
29936,
13,
13,
12,
3597,
8108,
3591,
29898,
1231,
1158,
1170,
29897,
426,
13,
12,
12,
1366,
29889,
5696,
1170,
353,
1158,
1170,
29936,
13,
12,
12,
1366,
29889,
29883,
1610,
29880,
2605,
353,
716,
28547,
1293,
29966,
2624,
519,
3591,
8295,
13,
12,
12,
1366,
29889,
29883,
1610,
29880,
855,
1078,
353,
716,
28547,
1293,
29966,
2792,
22479,
3591,
8295,
13,
12,
12,
1366,
29889,
8698,
353,
2089,
29936,
13,
12,
29913,
13,
13,
12,
3597,
1780,
731,
14191,
29898,
20054,
2551,
29897,
426,
13,
12,
12,
1366,
29889,
8698,
353,
2551,
29936,
13,
12,
29913,
13,
13,
12,
3597,
1780,
788,
2624,
519,
29898,
2624,
519,
1741,
519,
29897,
426,
13,
12,
12,
1366,
29889,
29883,
1610,
29880,
2605,
29889,
1202,
29898,
1482,
6864,
519,
3591,
29898,
3696,
519,
2483,
13,
12,
29913,
13,
13,
12,
3597,
1780,
788,
2792,
29898,
2792,
22479,
2106,
29897,
426,
13,
12,
12,
1366,
29889,
29883,
1610,
29880,
855,
1078,
29889,
1202,
29898,
1482,
4306,
22479,
3591,
29898,
3859,
2483,
13,
12,
29913,
13,
13,
12,
3597,
1780,
2791,
8897,
2624,
519,
17776,
580,
426,
13,
12,
12,
1366,
29889,
29883,
1610,
29880,
2605,
29889,
657,
8897,
2141,
842,
14191,
29898,
4541,
416,
13,
12,
29913,
13,
13,
12,
3597,
1780,
2791,
8897,
2792,
17776,
29898,
1293,
29966,
797,
19365,
29958,
5229,
797,
5927,
1934,
29897,
426,
13,
12,
12,
1366,
29889,
29883,
1610,
29880,
855,
1078,
29889,
657,
8897,
2141,
842,
14191,
29898,
4541,
416,
13,
12,
12,
1366,
29889,
29883,
1610,
29880,
855,
1078,
29889,
657,
8897,
2141,
842,
17776,
797,
5927,
1934,
29898,
26061,
797,
5927,
1934,
416,
13,
12,
29913,
13,
13,
12,
3597,
1780,
2791,
8897,
2792,
29928,
15622,
580,
426,
13,
12,
12,
1366,
29889,
29883,
1610,
29880,
855,
1078,
29889,
657,
8897,
2141,
842,
7648,
936,
29898,
4541,
416,
13,
12,
29913,
13,
29913,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Are organisational factors affecting the emotional withdrawal of community nurses?
Objective The aim of the present study was to investigate the effects of work organisation on the emotional labour withdrawal behaviour of Australian community nurses. Methods Using a paper-based survey, a sample of 312 Australian community nurses reported on their emotional dissonance, withdrawal behaviours (i.e. job neglect, job dissatisfaction, stress-related presenteeism) and work organisation. A model to determine the partial mediation effect of work organisation was developed based on a literature review. The fit of the proposed model was assessed via structural equation modelling using Analysis of Moment Structures (AMOS; IMB). Results Community nurses with higher levels of emotional dissonance were less likely to be satisfied with their job and work organisation and had a higher tendency to exhibit withdrawal behaviours. Work organisational factors mediated this relationship. Conclusion Emotional dissonance can be a potential stressor for community nurses that can trigger withdrawal behaviours. Improving work organisational factors may help reduce emotional conflict and its effect on withdrawal behaviours. What is known about the topic? Although emotional labour has been broadly investigated in the literature, very few studies have addressed the effect of the quality of work organisation on nurses' withdrawal behaviours in a nursing setting. What does this paper add? This paper provides evidence that work organisation affects levels of emotional dissonance and has an effect on job neglect through stress-related presenteeism. What are the implications for practitioners? In order to minimise stress-related presenteeism and job neglect, healthcare organisations need to establish a positive working environment, designed to improve the quality of relationships with management, provide appropriate rewards, recognition and effective workload management and support high-quality relationships with colleagues. | [
1,
4683,
17459,
1288,
13879,
6602,
292,
278,
23023,
1848,
28679,
284,
310,
7881,
302,
1295,
267,
29973,
13,
2061,
573,
450,
12242,
310,
278,
2198,
6559,
471,
304,
23033,
278,
9545,
310,
664,
24788,
373,
278,
23023,
1848,
23390,
28679,
284,
10468,
310,
9870,
7881,
302,
1295,
267,
29889,
8108,
29879,
5293,
263,
5650,
29899,
6707,
18994,
29892,
263,
4559,
310,
29871,
29941,
29896,
29906,
9870,
7881,
302,
1295,
267,
8967,
373,
1009,
23023,
1848,
766,
1100,
749,
29892,
28679,
284,
4010,
29875,
2470,
313,
29875,
29889,
29872,
29889,
4982,
22851,
29892,
4982,
16317,
27685,
2467,
29892,
22884,
29899,
12817,
2198,
3905,
1608,
29897,
322,
664,
24788,
29889,
319,
1904,
304,
8161,
278,
7687,
1612,
11685,
2779,
310,
664,
24788,
471,
8906,
2729,
373,
263,
12845,
9076,
29889,
450,
6216,
310,
278,
7972,
1904,
471,
1223,
11517,
3025,
2281,
3631,
6306,
878,
7807,
773,
24352,
310,
341,
2932,
28771,
1973,
313,
5194,
3267,
29936,
306,
9486,
467,
17212,
19184,
302,
1295,
267,
411,
6133,
11174,
310,
23023,
1848,
766,
1100,
749,
892,
3109,
5517,
304,
367,
15787,
411,
1009,
4982,
322,
664,
24788,
322,
750,
263,
6133,
260,
5197,
304,
10371,
277,
28679,
284,
4010,
29875,
2470,
29889,
5244,
17459,
1288,
13879,
14457,
630,
445,
9443,
29889,
1281,
10085,
2812,
327,
1848,
766,
1100,
749,
508,
367,
263,
7037,
851,
6329,
363,
7881,
302,
1295,
267,
393,
508,
7135,
28679,
284,
4010,
29875,
2470,
29889,
1954,
771,
1747,
664,
17459,
1288,
13879,
1122,
1371,
10032,
23023,
1848,
14529,
322,
967,
2779,
373,
28679,
284,
4010,
29875,
2470,
29889,
1724,
338,
2998,
1048,
278,
11261,
29973,
8512,
23023,
1848,
23390,
756,
1063,
7300,
368,
7405,
630,
297,
278,
12845,
29892,
1407,
2846,
11898,
505,
20976,
278,
2779,
310,
278,
11029,
310,
664,
24788,
373,
302,
1295,
267,
29915,
28679,
284,
4010,
29875,
2470,
297,
263,
302,
1295,
292,
4444,
29889,
1724,
947,
445,
5650,
788,
29973,
910,
5650,
8128,
10757,
393,
664,
24788,
6602,
29879,
11174,
310,
23023,
1848,
766,
1100,
749,
322,
756,
385,
2779,
373,
4982,
22851,
1549,
22884,
29899,
12817,
2198,
3905,
1608,
29889,
1724,
526,
278,
2411,
5795,
363,
4120,
654,
414,
29973,
512,
1797,
304,
6260,
895,
22884,
29899,
12817,
2198,
3905,
1608,
322,
4982,
22851,
29892,
9045,
18020,
17459,
800,
817,
304,
10127,
263,
6374,
1985,
5177,
29892,
8688,
304,
11157,
278,
11029,
310,
21702,
411,
10643,
29892,
3867,
8210,
337,
2935,
29892,
19679,
322,
11828,
664,
1359,
10643,
322,
2304,
1880,
29899,
29567,
21702,
411,
23056,
21628,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
iRobot Warrior 700 designed to deliver... more robots
The new iRobot Warrior 700 robot looks like the (much) bigger brother of the company’s PackBot. In fact the Warrior is a much larger, more powerful platform designed to deliver, well, PackBots (among other missions). The Warrior 700 can carry a PackBot at the end of an articulated arm, and insert the it through a window for reconnaissance, explosive ordnance disposal, rescue, or other missions.
The Warrior 700 was recently put through its paces at the Association for Unmanned Vehicle Systems International (AUVSI) unmanned systems event in Washington, DC. By rising up on the articulated treads, the Warrior was able to extend its arm and drop the PackBot through a window. The PackBot is rugged enough to survive the short drop to the floor, and using the Warrior to deliver it keeps the operators safely out of harm’s way.
The Warrior 700 has the same general design as the smaller PackBot, including articulated, tracked “flippers” for propulsion and a versatile platform for attaching accessories. Like the PackBot, the Warrior can maneuver across rough terrain, climb stairs, and even ford streams. However, the Warrior is scaled up to handle heavy-duty missions. Where the PackBot has a payload capacity of 46lbs (20.9kg), the Warrior can carry 150lbs (68kg) and has enough power to drag a person.
The PackBot, as its name implies, is small enough to be carried in a pack and deployed by one person. The Warrior 700 is not as portable and is designed for tougher tasks such as explosives disposal, route clearing, and surveillance. Its top speed is 9.3 mph (15 km/h), which isn’t bad for a robot that weighs 342.5lbs (155.3kg).
The first iRobot Warrior 700 production units should be available in the third quarter of 2009. | [
1,
474,
21860,
327,
3362,
13479,
29871,
29955,
29900,
29900,
8688,
304,
12021,
856,
901,
10832,
1862,
13,
13,
1576,
716,
474,
21860,
327,
3362,
13479,
29871,
29955,
29900,
29900,
19964,
3430,
763,
278,
313,
29885,
987,
29897,
16600,
8099,
310,
278,
5001,
30010,
29879,
18744,
29933,
327,
29889,
512,
2114,
278,
3362,
13479,
338,
263,
1568,
7200,
29892,
901,
13988,
7481,
8688,
304,
12021,
29892,
1532,
29892,
18744,
29933,
1862,
313,
314,
549,
916,
3052,
1080,
467,
450,
3362,
13479,
29871,
29955,
29900,
29900,
508,
8677,
263,
18744,
29933,
327,
472,
278,
1095,
310,
385,
1616,
293,
7964,
5075,
29892,
322,
4635,
278,
372,
1549,
263,
3474,
363,
25238,
9948,
29892,
20389,
573,
4356,
29876,
749,
11549,
284,
29892,
26429,
29892,
470,
916,
3052,
1080,
29889,
13,
13,
1576,
3362,
13479,
29871,
29955,
29900,
29900,
471,
10325,
1925,
1549,
967,
282,
3302,
472,
278,
7993,
363,
853,
4403,
287,
8980,
29882,
2512,
23985,
4623,
313,
25951,
29963,
5425,
29897,
443,
4403,
287,
6757,
1741,
297,
7660,
29892,
13681,
29889,
2648,
20493,
701,
373,
278,
1616,
293,
7964,
260,
949,
29879,
29892,
278,
3362,
13479,
471,
2221,
304,
10985,
967,
5075,
322,
5768,
278,
18744,
29933,
327,
1549,
263,
3474,
29889,
450,
18744,
29933,
327,
338,
29833,
3192,
3307,
304,
10503,
573,
278,
3273,
5768,
304,
278,
11904,
29892,
322,
773,
278,
3362,
13479,
304,
12021,
372,
14874,
278,
12768,
23511,
714,
310,
10311,
30010,
29879,
982,
29889,
13,
13,
1576,
3362,
13479,
29871,
29955,
29900,
29900,
756,
278,
1021,
2498,
2874,
408,
278,
7968,
18744,
29933,
327,
29892,
3704,
1616,
293,
7964,
29892,
5702,
287,
1346,
20157,
22437,
30024,
363,
3107,
25381,
322,
263,
1224,
24285,
7481,
363,
1098,
9733,
2130,
3842,
29889,
8502,
278,
18744,
29933,
327,
29892,
278,
3362,
13479,
508,
767,
12932,
369,
4822,
12164,
28439,
29892,
10784,
29890,
380,
7121,
29892,
322,
1584,
25779,
20873,
29889,
2398,
29892,
278,
3362,
13479,
338,
6287,
29881,
701,
304,
4386,
9416,
29899,
29881,
329,
29891,
3052,
1080,
29889,
6804,
278,
18744,
29933,
327,
756,
263,
20092,
13284,
310,
29871,
29946,
29953,
29880,
5824,
313,
29906,
29900,
29889,
29929,
9415,
511,
278,
3362,
13479,
508,
8677,
29871,
29896,
29945,
29900,
29880,
5824,
313,
29953,
29947,
9415,
29897,
322,
756,
3307,
3081,
304,
8338,
263,
2022,
29889,
13,
13,
1576,
18744,
29933,
327,
29892,
408,
967,
1024,
10469,
29892,
338,
2319,
3307,
304,
367,
8988,
297,
263,
4870,
322,
21168,
491,
697,
2022,
29889,
450,
3362,
13479,
29871,
29955,
29900,
29900,
338,
451,
408,
2011,
519,
322,
338,
8688,
363,
260,
820,
261,
9595,
1316,
408,
20389,
3145,
11549,
284,
29892,
5782,
2821,
292,
29892,
322,
26946,
453,
749,
29889,
8011,
2246,
6210,
338,
29871,
29929,
29889,
29941,
286,
561,
313,
29896,
29945,
2383,
29914,
29882,
511,
607,
3508,
30010,
29873,
4319,
363,
263,
19964,
393,
591,
1141,
29879,
29871,
29941,
29946,
29906,
29889,
29945,
29880,
5824,
313,
29896,
29945,
29945,
29889,
29941,
9415,
467,
13,
13,
1576,
937,
474,
21860,
327,
3362,
13479,
29871,
29955,
29900,
29900,
5802,
10340,
881,
367,
3625,
297,
278,
4654,
12616,
310,
29871,
29906,
29900,
29900,
29929,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
J-A06029-17
NON-PRECEDENTIAL DECISION - SEE SUPERIOR COURT I.O.P. 65.37
WALNUT STREET 2014-1 ISSUER, LLC, IN THE SUPERIOR COURT OF
BY AND THROUGH THE BANCORP BANK, PENNSYLVANIA
ITS SERVICER AND AGENT,
Appellee
v.
MICHAEL S. PEARLSTEIN,
Appellant No. 2557 EDA 2016
Appeal from the Order Entered July 7, 2016
In the Court of Common Pleas of Philadelphia County
Civil Division at No(s): March Term, 2016 No. 01672
BEFORE: PANELLA, SHOGAN, and RANSOM, JJ.
MEMORANDUM BY SHOGAN, J.: FILED JUNE 22, 2017
Appellant Michael Pearlstein (“Pearlstein”) appeals from the order
denying his petition to open the confessed judgment obtained by Walnut
Street 2014-1 Issuer, LLC (“Walnut”), through its predecessor-in-interest
and agent The Bancorp Bank (“the Bank”). We affirm.
Pearlstein is the sole member of the General Partnership of Empire
Schuylkill, L.P. (“Empire”), which owns a shopping mall in Frackville, PA
(“the Property”). On May 5, 2007, Empire and the Bank entered into a
series of transactions to finance the purchase, maintenance, and operation
of the Property (“Original Loan Agreement”). Pursuant to the Original Loan
Agreement, Empire borrowed $27,200,000 from the Bank. The parties
entered additional transactions in 2009 and 2010.
J-A06029-17
In late 2010, Empire was prepared to sell the Property. To retain the
Property as collateral for its loans to Empire, the Bank sought and obtained a
guaranty from the United States Department of Agriculture (“USDA”). In
submitting its application for the USDA guaranty, the Bank valued the
Property at $30,372,821, despite a recent appraisal of $15,150,000 by
Quinn & Associates. The USDA accepted the Bank’s application and issued a
guaranty (“USDA guaranty”).
Empire and the Bank modified the Original Loan Agreement in
February of 2011 (“Amended Loan Agreement”), at which time Pearlstein
signed a personal guaranty agreement with the Bank (“Personal Guaranty”).
The Personal Guaranty covered three notes: Amended and Restated Note
for $17,300,000, which was reduced to $5,000,000; Term Note A for
$5,862,789; and Term Note B for $4,093,211 (“Notes”).
As of January 21, 2015, the Property had lost several anchor tenants,
and Empire had obtained an appraisal that valued the Property at
$5,300,000. Subsequently, Empire lost more tenants, and the fair market
value of the Property dropped to an estimated $2,000,000. The Bank did
not notify the USDA of Empire’s declining financial state.
The Bank sold the Amended Loan Agreement, Notes, and Personal
Guaranty to Walnut on or about December 30, 2014. Prior to this sale, the
Bank had not previously enforced Empire’s non-payment defaults of Current
Ratio, Minimum Tangible Net Worth, and Debt to Equity. Nonetheless,
-2-
J-A06029-17
pursuant to a warrant of attorney provision in the Amended Loan
Agreement, Walnut confessed judgment against Empire on January 20,
2016, for the non-payment defaults. Empire did not challenge the confessed
judgment.
On March 17, 2016, Walnut confessed judgment against Pearlstein on
the Personal Guaranty. Pearlstein filed a petition to open judgment
(“Petition to Open”) on May 16, 2016, raising defenses of fraudulent
inducement, non-occurrence of default, waiver/estoppel, and breach of
contract.1 Walnut filed an answer on June 27, 2016 (“Answer”). The trial
court denied the Petition to Open on July 7, 2016, finding that Pearlstein did
not raise any meritorious defenses. The trial court also denied Appellant’s
July 15, 2016 motion for reconsideration on August 2, 2016. This appeal
followed. The trial court did not direct Pearlstein to file a statement of errors
complained of on appeal pursuant to Pa.R.A.P. 1925(b). For purposes of
complying with Pa.R.A.P. 1925(a), the trial court relied on its memoranda in
support of the orders denying the Petition to Open and denying
reconsideration. Order and Memorandum Opinion, 7/7/16; Memorandum
Opinion, 8/1/16.
____________________________________________
1
Walnut submits—and we agree—that Pearlstein has not appealed the trial
court’s rejection of several other defenses, i.e., Walnut’s lack of standing to
confess judgment against Pearlstein, the Bank’s breach of the Amended
Loan Agreement, the Bank’s breach of its duty of good faith and fair dealing,
and Walnut’s breach of the warrant of attorney. Walnut’s Brief at 15 n.4.
-3-
J-A06029-17
On appeal, Pearlstein raises the following issues for our consideration:
1. Did the trial court err by prematurely requiring
evidence of the defenses without the issuance of a rule to show
cause, the opportunity to take discovery and the opportunity to
present evidence in support of the defenses, especially where
the trial court found that Pearlstein alleged some legally valid
defenses?
2. Did the trial court err in denying the Petition before
allowing discovery and the opportunity to present evidence
where Pearlstein alleged in a verified Petition all of the factual
elements necessary to establish the meritorious defense of
fraudulent inducement, to which the parol evidence rule does not
apply?
3. Did the trial court err by denying the Petition before
allowing discovery and the opportunity to present evidence
where Pearlstein alleged in a verified Petition all of the factual
elements necessary to establish the meritorious defenses of the
non-occurrence of an alleged default and waiver and/or estoppel
of the alleged defaults, which defenses are not vitiated by the
non-waiver provision in the parties’ agreement?
4. Did the trial court err by denying the Petition before
allowing discovery and the opportunity to present evidence
where Pearlstein alleged in a verified Petition all of the factual
elements necessary to establish the meritorious defense of
breach of contract, which Pearlstein had standing to raise as a
party to the agreements and based on his role as guarantor for
other agreements?
Pearlstein’s Brief at 4.
“A petition to open a confessed judgment is an appeal to the trial
court’s equitable powers.” Crum v. F.L. Shaffer Co., 693 A.2d 984, 986
(Pa. Super. 1997).
It is committed to the sound discretion of the hearing court and
will not be disturbed absent a manifest abuse of that discretion.
Ordinarily, if a petition to open a judgment is to be successful, it
must meet the following test: (1) the petition to open must be
-4-
J-A06029-17
promptly filed; (2) the failure to appear or file a timely answer
must be excused; and (3) the party seeking to open the
judgment must show a meritorious defense....
Century Surety Co. v. Essington Auto Center, LLC, 140 A.3d 46, 53 (Pa.
Super. 2016) (quoting Mother’s Restaurant, Inc. v. Krystkiewicz, 861
A.2d 327, 336 (Pa. Super. 2004) (en banc)); Neducsin v. Caplan, 121
A.3d 498, 505 (Pa. Super. 2015), appeal denied, 131 A.3d 492 (Pa. 2016).
“Judicial discretion requires action in conformity with law on facts and
circumstances before the trial court after hearing and consideration.
Consequently, the court abuses its discretion if, in resolving the issue for
decision, it misapplies the law or exercises its discretion in a manner lacking
reason.” Neducsin, 121 A.3d at 506 (quoting Miller v. Sacred Heart
Hosp., 753 A.2d 829, 832 (Pa. Super. 2000) (internal citations omitted)).
In adjudicating a petition to open a confessed judgment, the trial court
is charged with “determining whether the petitioner presented sufficient
evidence of a meritorious defense to require submission of that issue to a
jury.” Ferrick v. Bianchini, 69 A.3d 642, 647 (Pa. Super. 2013) (citing
Homart Development Co. v. Sgrenci, 662 A.2d 1092 (1995)). “When
determining a petition to open a judgment, matters dehors the record filed
by the party in whose favor the warrant is given, i.e., testimony,
depositions, admissions, and other evidence, may be considered by the
court.” Graystone Bank v. Grove Estates, LP, 58 A.3d 1277, 1282 (Pa.
Super. 2012).
-5-
J-A06029-17
Because the Petition to Open was timely, no one challenges the first
two requirements for opening a confessed judgment; rather, Pearlstein
focuses on the trial court’s determination that the Petition to Open did not
present any meritorious defenses warranting issuance of a rule to show
cause. In his first issue, Pearlstein complains that the trial court disposed of
the Petition to Open based solely on the initial pleadings without “affording”
him the opportunity to develop any evidence in support of his defenses.
Pearlstein’s Brief at 17. Pearlstein asserts that the trial court propagated
error by not following the procedure set forth in Pa.R.C.P. 2959(b) and (e).
Id. According to Pearlstein, the averments in his Petition to Open should
have triggered the trial court’s action in issuing a rule and allowing
discovery. Pearlstein’s Brief at 21.
Pennsylvania Rule of Civil Procedure 2959 governs a petition to open a
confessed judgment and provides, in relevant part, as follows:
(a) Relief from a judgment by confession shall be sought by
petition. . . . [A]ll grounds for relief whether to strike off the
judgment or to open it must be asserted in a single petition. . . .
(b) If the petition states prima facie grounds for relief the court
shall issue a rule to show cause and may grant a stay of
proceedings. After being served with a copy of the petition the
plaintiff shall file an answer on or before the return day of the
rule. The return day of the rule shall be fixed by the court by
local rule or special order.
* * *
(e) The court shall dispose of the rule on petition and answer,
and on any testimony, depositions, admissions and other
evidence. The court for cause shown may stay proceedings on
-6-
J-A06029-17
the petition insofar as it seeks to open the judgment pending
disposition of the application to strike off the judgment. If
evidence is produced which in a jury trial would require the
issues to be submitted to the jury the court shall open the
judgment.
Pa.R.C.P. 2959(a), (b), and (e). We have explained that:
Pa.R.[C.]P. 2959(e) sets forth the standard by which a court
determines whether a moving party has properly averred a
meritorious defense. If evidence is produced which in a jury trial
would require the issues to be submitted to the jury the court
shall open the judgment. Furthermore, the court must view the
evidence presented in the light most favorable to the moving
party, while rejecting contrary evidence of the non-moving
party. The petitioner need not produce evidence proving that if
the judgment is opened, the petitioner will prevail. Moreover,
we must accept as true the petitioner’s evidence and all
reasonable and proper inferences flowing therefrom.
In other words, a judgment of confession will be opened if
a petitioner seeking relief therefrom produces evidence which in
a jury trial would require issues to be submitted to a jury. The
standard of sufficiency here is similar to the standard for a
directed verdict, in that we must view the facts most favorably
to the moving party, we must accept as true all the evidence and
proper inferences in support of the defense raised, and we must
reject all adverse allegations.
Neducsin, 121 A.3d at 506–507 (internal citations and quotation marks
omitted). Under this rule:
a court can no longer weigh the evidence in support of the
defense, but must only determine whether there is sufficient
evidence to allow the issue to go to a jury. The facts must be
viewed in the light most favorable to the petitioner, and a court
must accept as true all evidence and proper inferences therefrom
supporting the defense and must reject the adverse allegations
of the plaintiff.
Van Arkel & Moss Properties, Inc. v. Kendor, Ltd., 419 A.2d 593, 596
(Pa. Super. 1980) (internal citations omitted).
-7-
J-A06029-17
Here, Walnut filed a complaint in confession of judgment, and
judgment was entered. Pearlstein filed the Petition to Open. At that point,
Pa.R.C.P. 2959(b) instructs the trial court to review the Petition to Open only
and determine if it states prima facie grounds for relief. However, Walnut
filed its Answer before the trial court made a finding. Then, based on the
Petition to Open and the Answer, the trial court refused to open the
judgment. Technically, therefore, Pearlstein’s procedural challenge has
merit. See City of Pittsburgh v. ACDI, 488 A.2d 333, 334 (Pa. Super.
1985) (“[The] threshold requirement of subsection (b) must be met before
the other procedures outlined in Rule 2959 are to take place.”).
Nevertheless, because we find support in the record for the trial court’s
finding that Pearlstein failed to present prima facie grounds for relief in the
Petition to Open, we conclude that the technical violation of Pa.R.C.P.
2959(b) in this case does not warrant opening the judgment. Thus,
Pearlstein’s first issue does not merit relief.
In his remaining issues, Pearlstein argues the Petition to Open contains
sufficient factual averments to support prima facie grounds for relief based
on four defenses. In his second question presented, Pearlstein claims the
Petition to Open establishes that the Bank fraudulently induced him to
execute the Amended Loan Agreement based on its misrepresentations
about obtaining the USDA guaranties. Pearlstein’s Brief at 22. According to
Pearlstein, the Bank made a representation to him which was material to the
-8-
J-A06029-17
transaction; the representation was made falsely, with knowledge of its
falsity or reckless disregard as to its veracity, and with the intent of
misleading Pearlstein into relying on it; Pearlstein relied on the
misrepresentation and was proximately injured as a result. Id. (citing
Eigen v. Textron Lycoming Reciprocating Engine Div., 874 A.2d 1179,
1187 (Pa. Super. 2005)).
Also citing Eigen, the trial court disposed of Pearlstein’s fraud-in-the-
inducement defense as follows:
In this case, Pearlstein has offered no evidence showing
that the Bank, with an intent to mislead, falsely made a material
representation upon which Empire relied, and that Empire
suffered an injury proximately caused by such reliance.
Pearlstein has offered none of the . . . elements which are
required for submission to a jury, and for this reason his
[fraudulent inducement] challenge to the confessed judgment is
rejected.
Order and Memorandum Opinion, 7/7/16, at 6. Moreover, in denying
Pearlstein’s motion for consideration, the trial court observed that:
various documents executed by Empire and Pearlstein were fully
integrated contracts. Specifically, the Amended, Restated and
Consolidating Loan Agreement executed by Pearlstein stated as
follows:
Integration. This Agreement and the other
Loan Documents constitute the sole agreement
of the parties with respect to the subject
matter hereof and thereof and supersede all
oral negotiations and prior writings with
respect to the subject matter hereof and
thereof.28
28
Amended, Restated and Consolidating Loan
Agreement, Exhibit 1–D of the answer in
-9-
J-A06029-17
opposition to the petition to open, § 9.10
(emphasis supplied). Also, USDA Form 4279–
14 titled Unconditional Guarantee, states that
Pearlstein, “Guarantor,” “may not use an oral
statement to contradict or alter the written
terms of the Note of this Guarantee….” Exhibit
1–J to the answer in opposition to the petition
to open.
The [c]ourt also notes that under Pennsylvania law—
Once a writing is determined to be the parties’
entire contract, the parole [sic] evidence rule applies
and evidence of any previous oral or written
negotiations or agreements involving the same
subject matter as the contract is … inadmissible to
explain or vary the terms of the contract.29
29
Youndt v. First Natl. Bank of Port Allegany,
686 A.2d 539, 546 (Pa. Super. 2005) (citing
Yocca v. Pittsburgh Steelers Sports, Inc., 854
A.2d 425, 436 (Pa. 2004)).
In this case, parol evidence precluded Pearlstein as a
matter of law from asserting the defense based on fraud-in-the-
inducement; therefore, the allegations based on this defense did
not state prima facie grounds for relief… .
Memorandum Opinion, 8/1/16, at 8–9.
On appeal, Pearlstein claims the Bank represented that it would
“submit complete and accurate information to the USDA in support of its
application” for guarantees. Pearlstein’s Brief at 23. Pearlstein accuses the
Bank of “knowingly and intentionally overstat[ing] the value of the Property
to the USDA” and not correcting “its earlier misrepresentation.” Id.
Pearlstein also asserts that without the Bank’s “representations and
verifications as to the accuracy of the information provided to the USDA,” he
- 10 -
J-A06029-17
“would have never agreed to the Amended Loan Agreement or the
Guaranty” but would have terminated Empire’s relationship with the Bank
and sold the Property, as planned. Id. As for the trial court’s parol evidence
analysis, Pearlstein argues that, because he was not party to the Amended
Loan Agreement, the Personal Guaranty was not fully integrated, and neither
the Amended Loan Agreement nor the Personal Guaranty “‘directly deal’ with
[the Bank’s] obligations with respect to the application process for the USDA
Guaranties, the parol evidence rule would not bar evidence of [the Bank’s]
misrepresentations.” Id. at 26.
In response, Walnut argues that Pearlstein “failed to allege facts
beyond mere conclusions,” which “do not rise to the level of a prima facie
claim for fraudulent inducement[.]” Walnut’s Brief at 25, 26. Specifically,
Walnut points out Pearlstein’s failure to aver “what the actual statement
attributable to the Bank is, who said it, when it was said or why it was
false.” Id. at 27. Similarly, Walnut challenges Pearlstein’s averments
regarding the Bank’s intent to mislead, Pearlstein’s reliance, and Pearlstein’s
injury, as mere conclusions unsupported by the record. Id. at 28–33. With
regard to Pearlstein’s averment of injury, Walnut notes that the Amended
Loan Agreement actually reduced Pearlstein’s overall liability by $12,300,000
and that Empire could have sold the Property at any time. Id. at 32.
Moreover, Walnut asserts that the parole evidence rule precludes Pearlstein’s
- 11 -
J-A06029-17
reliance on the Bank’s purported misrepresentations to support his fraud-in-
the-inducement claim. Walnut’s Brief at 33–39. According to Walnut:
the integration clause in the Amended Loan Agreement applies
to the “parties” who are parties to the Loan Documents, rather
than to parties that are only parties to the Amended Loan
Agreement. Since the 2011 [Personal] Guaranty is included in
the definition of “Loan Documents,” and because Pearlstein is a
party to that agreement, the 2011 [Personal] Guaranty is a fully
integrated document.
Id. at 35 (footnotes omitted).
Upon review, we discern no manifest abuse of the trial court’s
discretion in denying the Petition to Open. Century Surety Co., 140 A.3d
at 53. Pearlstein’s averments of fraudulent inducement are vague,
speculative, and conclusory. Despite the documentation he supplied in
support of the Petition to Open, Pearlstein does not provide facts regarding
who made a material misrepresentation, what the material
misrepresentation was, how the material misrepresentation induced
Pearlstein to reasonably rely upon it, and how the material
misrepresentation caused him harm.
The Bank represented that it would obtain a USDA guaranty, and it
did. The Bank’s alleged failure to comply with certain requirements of the
USDA guaranty does not support Pearlstein’s claim of fraudulent
inducement. Moreover, Pearlstein could not have reasonably relied on the
Bank’s alleged misrepresentations for the various reasons discussed by
Walnut: Empire was obligated to obtain the USDA guaranty, not the Bank—
- 12 -
J-A06029-17
Amended Loan Agreement, 2/2/11, at ¶¶ 5, 5.16; Pearlstein’s liability under
the Personal Guaranty was not conditioned on the USDA guaranty—Personal
Guaranty, 2/2/11, at ¶ 2; Pearlstein obtained an independent valuation of
the Property before he executed the Personal Guaranty—Petition to Open,
5/16/16, at Exhibit Q; and, as guarantor, Pearlstein waived any “value”
related defenses—USDA Form 4279-14, at ¶ 6. Walnut’s Brief at 29–30.
Nor does the Petition to Open include facts establishing that the Bank’s
alleged misrepresentations caused him harm. In fact, the Personal Guaranty
merely restated and reaffirmed Pearlstein’s liability dating back to Empire’s
original obligations for loans in 2007, 2009, and 2010. Under the Amended
and Restated Note, Pearlstein’s overall liability was reduced by $12,300,000.
Moreover, although Pearlstein speculates that he would have sold the
Property at a higher price rather than execute the Personal Guaranty in
2011, he did not aver in the Petition to Open that the loss of value in the
Property was caused by the Bank’s alleged misrepresentations.
Furthermore, nothing of record prevented Empire from selling the Property
rather than continuing its relationship with the Bank.
Lastly, we find support in the record for the trial court’s findings that
the Personal Guaranty was a fully integrated agreement and that parol
evidence of the Bank’s alleged misrepresentations regarding the USDA
guaranty is barred. The Amended Loan Agreement contains an integration
clause which refers to the Amended Loan Agreement and the other Loan
- 13 -
J-A06029-17
Documents. Amended Loan Agreement at § 9.10. “Loan Documents” is
defined in the Amended Loan Agreement as follows:
[The] documents listed in Section 4.1 hereof, including without
limitation this Agreement, the Note, the Mortgage, the
Assignment, and all agreements, amendments, certificates,
financing statements, schedules, reports, notices, and exhibits
now or hereafter executed or delivered in connection with
any of the foregoing, as may be in effective from time to time.
Id. at ¶ 1 (emphasis supplied). Because Pearlstein executed the Personal
Guaranty in connection with the Amended Loan Agreement, it falls squarely
within the definition of Loan Documents and, therefore, it also falls within
the scope of the integration clause. Thus, the parol evidence rule bars
Pearlstein from introducing extrinsic evidence of the Bank’s alleged
misrepresentations. Furthermore, even if we agree with Pearlstein’s claim
that the USDA application and forms are also Loan Documents, the
integration clause and parol evidence rule preclude extrinsic evidence of the
Bank’s alleged misrepresentations regarding those documents. In sum,
Pearlstein’s fraudulent inducement defense does not warrant relief.
In his third issue, Pearlstein argues that a factual dispute exists as to
whether Empire was in default and, therefore, a rule should have been
issued and discovery allowed. Pearlstein’s Brief at 28. According to
Pearlstein, the Bank waived any defaults by remaining silent for five years
during the life of the Amended Loan Agreement; therefore, he posits, Walnut
is estopped from confessing judgment against him personally based on
Empire’s defaults. Id. at 29.
- 14 -
J-A06029-17
In its memorandum addressing Pearlstein’s motion for reconsideration,
the trial court relied on a non-waiver provision in the Personal Guaranty to
dispose of Pearlstein’s waiver/estoppel defense:
In the complaint-in-confession-of-judgment, Walnut
asserted that Empire had defaulted by breaching three financial
covenants, and specifically the covenants identified as “Minimum
Tangible Net Worth,” “Current Ratio,” and “Debt-to-Equity
Ratio.” In the subsequently-filed [Petition to Open], Pearlstein
challenged Walnut’s aforementioned averments by advancing
two defenses: first, Empire had not violated the Current Ratio
covenant at the time Walnut declared a default; and second,
Walnut had failed on prior occasions to enforce the other two
covenants and was therefore estopped from declaring a default
thereunder.
The [c]ourt shall address the second argument—namely,
that Walnut is estopped from declaring a default. To this end,
the [c]ourt turned to the allegations made by Pearlstein in his
Petition to [O]pen. In that petition, Pearlstein had stated that
Walnut was aware of the alleged “violations” of the financial
covenants, yet—
despite being given many opportunities to raise any
issues concerning these covenants, Walnut’s
predecessor remained silent at the time it ought to
have spoken . . . and . . . took no action regarding
these covenants for a period of five years.
* * *
By remaining silent when they should have spoken,
Bank and Walnut waived their ability to assert a
default based on such covenants . . . and Pearlstein
can prove the meritorious defenses of waiver and
estopped.
After examining the afore-quoted allegations in Pearlstein’s
petition, the [c]ourt also turned to the language of the Personal
Guaranty which Pearlstein executed on February 2, 2011.33 That
document stated as follows in pertinent part:
- 15 -
J-A06029-17
[t]he liability of the Guarantor hereunder [Pearlstein]
is absolute and unconditional, and shall not be
affected in any way be reason of (a) … the lack of
prior enforcement of any rights against any person
or persons … (c) any delay in enforcing or failure to
enforce any such rights … or (d) any delay in making
demand on the Guarantor for performance or
payment of the Guarantor’s obligations hereunder.34
33
“The task of interpreting a contract is
generally performed bty a court rather than by
a jury. The goal of that task is … to ascertain
the intent of the parties as manifested by the
language of the written instrument.”
Humberston v. Chevron USA, Inc., 75 A.3d
504, 510 (Pa. Super. 2013).
34
GUARANTY AND SURETYSHIP AGREEMENT, Exhibit
1-E to the answer in opposition to the petition
to open judgment by confession, § 2.
This clear and unambiguous language left the [c]ourt with
no doubt: Pearlstein, as personal guarantor of Empire, had
agreed that his liability could not be washed away by the Bank’s
or Walnut’s lack of prior enforcement of any of their rights, or by
their delay in asserting such rights. Based on the clear language
of the Personal Guaranty, this [c]ourt found that Walnut or its
predecessor had not waived their right to hold Pearlstein liable
as guarantor, and could not be estopped from confessing
judgment against Pearlstein. Therefore, this [c]ourt found that
Pearlstein had failed to state prima facie grounds for relief as to
the Minimum Tangible Net Worth and Debt-to-Equity Ratio
covenants, and for the reason this [c]ourt rejected Pearlstein’s
challenges. Since Pearlstein had failed to state prima facie
grounds for relief under two of the three alleged financial
defaults, this [c]ourt deemed it unnecessary to address whether
Empire had breached the Current Ratio covenant at the time of
default.
Memorandum Opinion, 8/1/16, at 9–10 (three internal footnotes and
emphasis omitted).
- 16 -
J-A06029-17
Pearlstein rebuts the trial court’s reliance on the non-waiver provision
of the Personal Guaranty in one-paragraph:
Instead of recognizing its error in failing to resolve the
Petition pursuant to Pa. R.C.P. 2959, in its opinion on
Pearlstein’s motion for reconsideration, the trial court found that
Pearlstein’s defense related to waiver of the default provisions
were precluded by the Guaranty’s “non-waiver” provision. In
reaching this conclusion, the trial court failed to recognize that,
under Pennsylvania law, a non-waiver provision may itself be
waived. See Gough v. Halperin, 159 A. 447, 448 (Pa. 1932);
McFarland v. Kittanning Ins. Co., 19 A. 796, 796–[7]97 (Pa.
1890); Imperial Fire Ins. Co. of London v. Dunham, 12 A. 668
(Pa. 1888). As [the Bank’s] conduct waived the default
provisions in the Amended Loan Agreement and the non-waiver
provision in the [Personal] Guaranty and “the issue of waiver is a
matter of fact to be shown by the evidence,” it was improper for
the trial court to deny the Petition before giving Pearlstein the
opportunity to conduct discovery.
Pearlstein’s Brief at 30 (footnote and some citations omitted).
Walnut replies that the Personal Guaranty “waiver provision is clear
and unambiguous. Indeed, Pearlstein does not argue otherwise.” Walnut’s
Brief at 42. According to Walnut, Pearlstein’s obligation to repay the loans is
irrespective of:
“any delay in enforcing or failure to enforce any such
rights, even if such rights are thereby lost, or … any delay
in making demand on the Guarantor for performance or
payment of the Guarantor’s obligations.” The Amended
Loan Agreement similarly provides that “no failure or delay on
the part of the Bank in the exercise of any right, power, or
remedy shall operate as a waiver thereof …”, and that “no
waiver of any one or more of the provisions hereof shall
be effective unless set forth in writing and signed by the
parties hereto.”
- 17 -
J-A06029-17
Id. (quoting Personal Guaranty, 2/2/11, at ¶ 2; Amended Loan Agreement,
2/2/11, at ¶¶ 9.1, 9.11) (emphases in original; internal citations omitted)).
Walnut submits that whether the Bank “remained silent as to Empire’s
insolvency or financial requirements is irrelevant to Pearlstein’s obligations
under the [Personal] Guaranty.” Id. at 43. Because Pearlstein waived all
claims, Walnut asserts, “the trial court correctly held that it did not need to
address Pearlstein’s defense that Empire was not in default of one of the
financial covenants – the ‘Current Ratio’ covenant.” Id. at 45.
Upon review, we discern no manifest abuse of the trial court’s
discretion in rejecting Pearlstein’s third defense. We have explained that:
[p]arties to a written contract may abandon, modify or change it
either by words or conduct. While an abandonment or waiver is
not ordinarily presumed in the absence of an express
agreement, if the conduct of the opposite party has been such as
to mislead one, to his prejudice, into an honest belief that such a
waiver or abandonment was either intended or consented to, it
will be presumed. Delay in pressing a claim may be evidence
relevant to the issue of a claim’s abandonment, but such delay
does not give rise to a conclusive presumption.
Barr v. Deiter, 154 A.2d 290, 293 (Pa. Super. 1959) (internal citations
omitted).
Here, the plain language of the Personal Guaranty and the Amended
Loan Agreement indicate that Pearlstein unconditionally waived any
objection to the Bank’s delay in enforcing its rights with regard to Empire’s
default on the financial covenants. Personal Guaranty, 2/2/11, at ¶ 2;
Amended Loan Agreement, 2/2/11, at ¶¶ 9.1, 9.11. Moreover, the Petition
- 18 -
J-A06029-17
to Open contains no averments justifying a conclusion that the Bank acted in
such a way as to waive or abandon the non-waiver provision. Barr, 154
A.2d at 293. Consequently, we discern no basis on which to disturb the trial
court’s rejection of Pearlstein’s estoppel/waiver defense.
In his fourth issue, Pearlstein challenges the denial of his final
defense: The Bank, and Walnut as its successor, breached the USDA
guaranty by misrepresenting the Property’s value and Empire’s financial
weakness to the USDA. Pearlstein’s Brief at 31. According to Pearlstein, he
and Empire were parties to the USDA guaranty because the Bank applied for
them on behalf of Empire and Pearlstein; therefore, the trial court erred in
concluding that Pearlstein could not raise a breach-of-contract defense. Id.
Walnut responds that Pearlstein lacks standing to assert a claim based
on the USDA guaranty because any cause of action arising out of the USDA
guaranty is between the Bank and the USDA; Pearlstein is not a third-party
beneficiary under the USDA guaranty; the USDA guaranty was additional
collateral for the Bank; Pearlstein was not harmed by any alleged breach of
the USDA guaranty; and Pearlstein was the primary guarantor on the Notes.
Walnut’s Brief at 47–48.
The trial court’s opinion mirrors Walnut’s reasoning:
Preliminarily, the [c]ourt notes that—
the petitioning party bears the burden of
producing sufficient evidence to
substantiate its alleged defenses … The
defenses raised must be valid ones.11
- 19 -
J-A06029-17
11
Haggarty v. Fetner, 481 A.2d
641, 644 (Pa. Super. 1984)
(emphasis supplied).
Next, the [c]ourt shall examine the Loan Note Guarantee—a
document executed by the Bank—whereby the USDA specifically
guaranteed a portion of the loan made by the Bank to Empire.
This document states as follows:
in consideration of the making of the subject loan by
the above named Lender (the Bank), the United
States Department of Agriculture (“USDA”), pursuant
to the Consolidated Farm and Rural Development Act
… does hereby agree that … it will pay …
B. The [Bank] …
1. Any loss sustained by such Lender on
the guaranteed portion … or
2. The guaranteed principal advanced to
or assumed by [Empire] under said
notes….12
12
Loan Note Guarantee, UNITED
STATES DEPARTMENT OF AGRICULTURE—
RURAL DEVELOPMENT, Exhibit 7 of
plaintiff Walnut’s answer to the
petition to open the confessed
judgment.
This clear language leaves no doubt: the Loan Note
Guarantee is a contract between USDA as guarantor of the
loans, and the Bank as lender: nowhere in any of the documents
related to this transaction could this [c]ourt find that Pearlstein
was a party to such a contract. Having established that
Pearlstein was not a party to the Loan Note Guarantee, this court
additionally notes that under Pennsylvania law—
in a claim for breach of contract, the plaintiff
must alleged that there was a contract, the
defendant breached it, and plaintiff suffered
damages from the breach.13
- 20 -
J-A06029-17
13
Discover Bank v. Stucka, 33
A.3d 82, 87 (Pa. Super. 2011)
[(emphasis original).]
In this case, Pearlstein may not remotely assert that he
was a party to the Loan Note Guarantee agreement, let alone
that he is a plaintiff entitled to assert thereunder a breach-of-
contract claim. For this reason, it is Pearlstein who has no
standing to assert that the Loan Note Guarantee was breached
by the Bank. As a result, Pearlstein may not rely on this
argument to invalidate the assignment from the Bank to Walnut.
Pearlstein has failed to bear the burden of producing a sufficient,
valid defense in . . . [this] challenge to the confessed judgment,
and for this reason the . . . challenge is rejected.
Memorandum Opinion, 7/7/16, at 4–5 (original brackets and one footnote
omitted).
Generally, a guarantor does not have standing to sue for breach of the
contract to which he was not a party. Accord Borough of Berwick v.
Quandel Grp. Inc., 655 A.2d 606, 608 (Pa. Super. 1995) (“[A]lthough the
borough signed the contract between the Authority and Buchart–Horn, it did
so only as a guarantor. It appeared to us … that the borough was not a
party to the contract.”). “To be considered a third-party beneficiary in
Pennsylvania it is necessary to show both parties to the contract had an
intent to benefit the third party through the contract and did, in fact,
explicitly indicate this intent in the contract.” Ira G. Steffy & Son, Inc. v.
Citizens Bank of Pennsylvania, 7 A.3d 278, 288 (Pa. Super. 2010).
In light of the law above, our review of the record supports the trial
court’s findings. Pearlstein was not a party to the USDA guaranty, nor a
third-party beneficiary of it; he was a guarantor of Empire’s financial
- 21 -
J-A06029-17
performance under the Amended Loan Agreement. As such, Pearlstein lacks
standing to assert a breach-of-contract claim against the Bank based on the
USDA guaranty. Consequently, we discern no abuse of the trial court’s
discretion in denying the Petition to Open based on Pearlstein’s meritless
defense.
Order affirmed.
Judgment Entered.
Joseph D. Seletyn, Esq.
Prothonotary
Date: 6/22/2017
- 22 -
| [
1,
435,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
29940,
1164,
29899,
15094,
29907,
3352,
3919,
25758,
5012,
29907,
3235,
2725,
448,
3725,
29923,
317,
4897,
1001,
29902,
1955,
4810,
4574,
29911,
306,
29889,
29949,
29889,
29925,
29889,
29871,
29953,
29945,
29889,
29941,
29955,
13,
13,
29956,
1964,
29940,
2692,
6850,
1525,
2544,
29871,
29906,
29900,
29896,
29946,
29899,
29896,
306,
1799,
29965,
1001,
29892,
365,
12182,
29892,
632,
2672,
6093,
317,
4897,
1001,
29902,
1955,
4810,
4574,
29911,
8079,
13,
22716,
5300,
3446,
1672,
23338,
29950,
6093,
350,
2190,
29907,
1955,
29925,
350,
2190,
29968,
29892,
462,
1678,
349,
1430,
3059,
29979,
29931,
29963,
2190,
10764,
13,
1806,
29903,
26996,
29963,
2965,
1001,
5300,
16369,
3919,
29892,
13,
13,
462,
308,
2401,
1808,
29872,
13,
13,
462,
1678,
325,
29889,
13,
13,
29924,
2965,
15715,
6670,
317,
29889,
349,
26441,
29931,
1254,
29923,
1177,
29892,
13,
13,
462,
308,
2401,
514,
424,
462,
29871,
1939,
29889,
29871,
29906,
29945,
29945,
29955,
382,
7698,
29871,
29906,
29900,
29896,
29953,
13,
13,
13,
18884,
2401,
29872,
284,
515,
278,
8170,
9041,
287,
5468,
29871,
29955,
29892,
29871,
29906,
29900,
29896,
29953,
13,
965,
512,
278,
9245,
310,
13103,
19777,
294,
310,
18292,
5127,
13,
965,
12886,
7946,
472,
1939,
29898,
29879,
1125,
4779,
11814,
29892,
29871,
29906,
29900,
29896,
29953,
1939,
29889,
29871,
29900,
29896,
29953,
29955,
29906,
13,
13,
13,
15349,
5800,
1525,
29901,
349,
2190,
29923,
2208,
29909,
29892,
317,
8187,
29954,
2190,
29892,
322,
390,
2190,
6156,
29924,
29892,
435,
29967,
29889,
13,
13,
2303,
29924,
1955,
9468,
5005,
6770,
317,
8187,
29954,
2190,
29892,
435,
4898,
462,
9651,
9338,
20566,
435,
3904,
29923,
29871,
29906,
29906,
29892,
29871,
29906,
29900,
29896,
29955,
13,
13,
268,
2401,
514,
424,
5765,
21265,
29880,
5465,
313,
30015,
29925,
799,
29880,
5465,
30024,
29897,
5929,
1338,
515,
278,
1797,
13,
13,
1145,
5414,
670,
5697,
654,
304,
1722,
278,
1970,
11517,
24284,
7625,
491,
5260,
21305,
13,
13,
855,
4521,
29871,
29906,
29900,
29896,
29946,
29899,
29896,
16982,
2853,
29892,
365,
12182,
313,
30015,
29956,
284,
21305,
30024,
511,
1549,
967,
27978,
985,
272,
29899,
262,
29899,
1639,
342,
13,
13,
392,
10823,
450,
10765,
2616,
29886,
10253,
313,
30015,
1552,
10253,
30024,
467,
1334,
2756,
3568,
29889,
13,
13,
268,
21265,
29880,
5465,
338,
278,
14419,
4509,
310,
278,
4593,
3455,
8397,
4034,
310,
13378,
13,
13,
4504,
29884,
2904,
21174,
29892,
365,
29889,
29925,
29889,
313,
30015,
10495,
533,
30024,
511,
607,
1914,
29879,
263,
17394,
3262,
286,
497,
297,
7347,
384,
4909,
29892,
17687,
13,
13,
29898,
30015,
1552,
9079,
30024,
467,
259,
1551,
2610,
29871,
29945,
29892,
29871,
29906,
29900,
29900,
29955,
29892,
13378,
322,
278,
10253,
7802,
964,
263,
13,
13,
13757,
310,
22160,
304,
1436,
749,
278,
20590,
29892,
25413,
29892,
322,
5858,
13,
13,
974,
278,
9079,
313,
30015,
26036,
4309,
273,
4059,
276,
882,
30024,
467,
349,
1295,
29884,
424,
304,
278,
8533,
4309,
273,
13,
13,
29909,
7979,
882,
29892,
13378,
27942,
287,
395,
29906,
29955,
29892,
29906,
29900,
29900,
29892,
29900,
29900,
29900,
515,
278,
10253,
29889,
9651,
450,
13973,
13,
13,
5893,
287,
5684,
22160,
297,
29871,
29906,
29900,
29900,
29929,
322,
29871,
29906,
29900,
29896,
29900,
29889,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
418,
512,
5683,
29871,
29906,
29900,
29896,
29900,
29892,
13378,
471,
13240,
304,
19417,
278,
9079,
29889,
1763,
11551,
278,
13,
13,
4854,
408,
5321,
1008,
284,
363,
967,
658,
550,
304,
13378,
29892,
278,
10253,
18365,
322,
7625,
263,
13,
13,
2543,
279,
424,
29891,
515,
278,
3303,
3900,
10317,
310,
27051,
545,
313,
30015,
3308,
7698,
30024,
467,
4706,
512,
13,
13,
1491,
29885,
5367,
967,
2280,
363,
278,
3148,
7698,
1410,
279,
424,
29891,
29892,
278,
10253,
659,
6742,
278,
13,
13,
4854,
472,
395,
29941,
29900,
29892,
29941,
29955,
29906,
29892,
29947,
29906,
29896,
29892,
15020,
263,
7786,
623,
23469,
284,
310,
395,
29896,
29945,
29892,
29896,
29945,
29900,
29892,
29900,
29900,
29900,
491,
13,
13,
2182,
2559,
669,
6853,
1078,
29889,
450,
3148,
7698,
9259,
278,
10253,
30010,
29879,
2280,
322,
16610,
263,
13,
13,
2543,
279,
424,
29891,
313,
30015,
3308,
7698,
1410,
279,
424,
29891,
30024,
467,
13,
13,
418,
13378,
322,
278,
10253,
9120,
278,
8533,
4309,
273,
4059,
276,
882,
297,
13,
13,
29943,
3205,
653,
310,
29871,
29906,
29900,
29896,
29896,
313,
30015,
6833,
2760,
4309,
273,
4059,
276,
882,
30024,
511,
472,
607,
931,
21265,
29880,
5465,
13,
13,
7433,
263,
7333,
1410,
279,
424,
29891,
17327,
411,
278,
10253,
313,
30015,
7435,
284,
2088,
279,
424,
29891,
30024,
467,
13,
13,
1576,
16224,
2088,
279,
424,
29891,
10664,
2211,
11486,
29901,
418,
1913,
2760,
322,
11654,
630,
3940,
13,
13,
1454,
395,
29896,
29955,
29892,
29941,
29900,
29900,
29892,
29900,
29900,
29900,
29892,
607,
471,
12212,
304,
395,
29945,
29892,
29900,
29900,
29900,
29892,
29900,
29900,
29900,
29936,
11814,
3940,
319,
363,
13,
13,
29938,
29945,
29892,
29947,
29953,
29906,
29892,
29955,
29947,
29929,
29936,
322,
11814,
3940,
350,
363,
395,
29946,
29892,
29900,
29929,
29941,
29892,
29906,
29896,
29896,
313,
30015,
3664,
267,
30024,
467,
13,
13,
418,
1094,
310,
5490,
29871,
29906,
29896,
29892,
29871,
29906,
29900,
29896,
29945,
29892,
278,
9079,
750,
5714,
3196,
17360,
3006,
1934,
29892,
13,
13,
392,
13378,
750,
7625,
385,
623,
23469,
284,
393,
659,
6742,
278,
9079,
472,
13,
13,
29938,
29945,
29892,
29941,
29900,
29900,
29892,
29900,
29900,
29900,
29889,
3323,
27284,
29892,
13378,
5714,
901,
3006,
1934,
29892,
322,
278,
6534,
9999,
13,
13,
1767,
310,
278,
9079,
13700,
304,
385,
15899,
395,
29906,
29892,
29900,
29900,
29900,
29892,
29900,
29900,
29900,
29889,
539,
450,
10253,
1258,
13,
13,
1333,
26051,
278,
3148,
7698,
310,
13378,
30010,
29879,
4845,
2827,
18161,
2106,
29889,
13,
13,
418,
450,
10253,
5239,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
29892,
8695,
29892,
322,
16224,
13,
13,
9485,
279,
424,
29891,
304,
5260,
21305,
373,
470,
1048,
5846,
29871,
29941,
29900,
29892,
29871,
29906,
29900,
29896,
29946,
29889,
22096,
304,
445,
14686,
29892,
278,
13,
13,
29933,
804,
750,
451,
9251,
24555,
1133,
13378,
30010,
29879,
1661,
29899,
27825,
21274,
310,
9626,
13,
13,
29934,
20819,
29892,
3080,
12539,
27378,
1821,
12670,
399,
2072,
29892,
322,
7089,
29873,
304,
11243,
537,
29889,
965,
10050,
621,
6393,
29892,
13,
13,
13,
462,
462,
268,
448,
29906,
29899,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
29886,
1295,
29884,
424,
304,
263,
1370,
21867,
310,
1098,
25252,
25161,
297,
278,
1913,
2760,
4309,
273,
13,
13,
29909,
7979,
882,
29892,
5260,
21305,
1970,
11517,
24284,
2750,
13378,
373,
5490,
29871,
29906,
29900,
29892,
13,
13,
29906,
29900,
29896,
29953,
29892,
363,
278,
1661,
29899,
27825,
21274,
29889,
13378,
1258,
451,
18766,
278,
1970,
11517,
13,
13,
17675,
19422,
29889,
13,
13,
539,
1551,
4779,
29871,
29896,
29955,
29892,
29871,
29906,
29900,
29896,
29953,
29892,
5260,
21305,
1970,
11517,
24284,
2750,
21265,
29880,
5465,
373,
13,
13,
1552,
16224,
2088,
279,
424,
29891,
29889,
965,
21265,
29880,
5465,
934,
29881,
263,
5697,
654,
304,
1722,
24284,
13,
13,
29898,
30015,
29925,
300,
654,
304,
4673,
30024,
29897,
373,
2610,
29871,
29896,
29953,
29892,
29871,
29906,
29900,
29896,
29953,
29892,
29263,
822,
11259,
310,
5227,
566,
352,
296,
13,
13,
513,
1682,
882,
29892,
1661,
29899,
15693,
26841,
310,
2322,
29892,
281,
1794,
369,
29914,
4778,
17344,
29892,
322,
2078,
496,
310,
13,
13,
1285,
1461,
29889,
29896,
5260,
21305,
934,
29881,
385,
1234,
373,
5306,
29871,
29906,
29955,
29892,
29871,
29906,
29900,
29896,
29953,
313,
30015,
22550,
30024,
467,
450,
14260,
13,
13,
27845,
17935,
278,
5879,
654,
304,
4673,
373,
5468,
29871,
29955,
29892,
29871,
29906,
29900,
29896,
29953,
29892,
9138,
393,
21265,
29880,
5465,
1258,
13,
13,
1333,
12020,
738,
2778,
2105,
2738,
822,
11259,
29889,
450,
14260,
8973,
884,
17935,
2401,
514,
424,
30010,
29879,
13,
13,
29967,
11850,
29871,
29896,
29945,
29892,
29871,
29906,
29900,
29896,
29953,
10884,
363,
337,
3200,
1241,
362,
373,
3111,
29871,
29906,
29892,
29871,
29906,
29900,
29896,
29953,
29889,
462,
29871,
910,
25530,
13,
13,
23031,
287,
29889,
450,
14260,
8973,
1258,
451,
1513,
21265,
29880,
5465,
304,
934,
263,
3229,
310,
4436,
13,
13,
2388,
433,
1312,
310,
373,
25530,
12359,
29884,
424,
304,
2621,
29889,
29934,
29889,
29909,
29889,
29925,
29889,
29871,
29896,
29929,
29906,
29945,
29898,
29890,
467,
462,
29871,
1152,
11976,
310,
13,
13,
2388,
5890,
411,
2621,
29889,
29934,
29889,
29909,
29889,
29925,
29889,
29871,
29896,
29929,
29906,
29945,
29898,
29874,
511,
278,
14260,
8973,
337,
2957,
373,
967,
26959,
5863,
297,
13,
13,
5924,
1678,
310,
259,
278,
259,
11299,
1678,
972,
5414,
4706,
278,
259,
5879,
654,
259,
304,
259,
4673,
259,
322,
259,
972,
5414,
13,
13,
276,
3200,
1241,
362,
29889,
418,
8170,
322,
8133,
272,
392,
398,
6461,
262,
291,
29892,
29871,
29955,
29914,
29955,
29914,
29896,
29953,
29936,
8133,
272,
392,
398,
13,
13,
11746,
262,
291,
29892,
29871,
29947,
29914,
29896,
29914,
29896,
29953,
29889,
13,
13,
27097,
27097,
14365,
7652,
13,
13,
13,
29896,
13,
29871,
5260,
21305,
11834,
1169,
30003,
392,
591,
8661,
30003,
5747,
21265,
29880,
5465,
756,
451,
5929,
7943,
278,
14260,
13,
27845,
30010,
29879,
337,
6929,
310,
3196,
916,
822,
11259,
29892,
474,
29889,
29872,
1696,
5260,
21305,
30010,
29879,
10225,
310,
13407,
304,
13,
5527,
404,
24284,
2750,
21265,
29880,
5465,
29892,
278,
10253,
30010,
29879,
2078,
496,
310,
278,
1913,
2760,
13,
3410,
273,
4059,
276,
882,
29892,
278,
10253,
30010,
29879,
2078,
496,
310,
967,
13360,
310,
1781,
10847,
322,
6534,
16743,
29892,
13,
392,
5260,
21305,
30010,
29879,
2078,
496,
310,
278,
1370,
21867,
310,
1098,
25252,
29889,
5260,
21305,
30010,
29879,
1771,
2575,
472,
29871,
29896,
29945,
302,
29889,
29946,
29889,
13,
13,
13,
13,
462,
462,
965,
448,
29941,
29899,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
418,
1551,
25530,
29892,
21265,
29880,
5465,
1153,
4637,
278,
1494,
5626,
363,
1749,
19220,
29901,
13,
13,
632,
29896,
29889,
268,
7440,
278,
14260,
8973,
4589,
491,
5188,
1535,
368,
26795,
13,
418,
10757,
310,
278,
822,
11259,
1728,
278,
17759,
749,
310,
263,
5751,
304,
1510,
13,
418,
4556,
29892,
278,
15130,
304,
2125,
20699,
322,
278,
15130,
304,
13,
418,
2198,
10757,
297,
2304,
310,
278,
822,
11259,
29892,
7148,
988,
13,
418,
278,
14260,
8973,
1476,
393,
21265,
29880,
5465,
16831,
287,
777,
2814,
635,
2854,
13,
418,
822,
11259,
29973,
13,
13,
632,
29906,
29889,
1678,
7440,
278,
14260,
8973,
4589,
297,
972,
5414,
278,
5879,
654,
1434,
13,
418,
14372,
20699,
322,
278,
15130,
304,
2198,
10757,
13,
418,
988,
21265,
29880,
5465,
16831,
287,
297,
263,
26834,
5879,
654,
599,
310,
278,
2114,
950,
13,
418,
3161,
5181,
304,
10127,
278,
2778,
2105,
2738,
26406,
310,
13,
418,
5227,
566,
352,
296,
9013,
13561,
29892,
304,
607,
278,
610,
324,
10757,
5751,
947,
451,
13,
418,
3394,
29973,
13,
13,
632,
29941,
29889,
1678,
7440,
278,
14260,
8973,
4589,
491,
972,
5414,
278,
5879,
654,
1434,
13,
418,
14372,
20699,
322,
278,
15130,
304,
2198,
10757,
13,
418,
988,
21265,
29880,
5465,
16831,
287,
297,
263,
26834,
5879,
654,
599,
310,
278,
2114,
950,
13,
418,
3161,
5181,
304,
10127,
278,
2778,
2105,
2738,
822,
11259,
310,
278,
13,
418,
1661,
29899,
15693,
26841,
310,
385,
16831,
287,
2322,
322,
281,
1794,
369,
322,
29914,
272,
707,
9354,
295,
13,
418,
310,
278,
16831,
287,
21274,
29892,
607,
822,
11259,
526,
451,
325,
4812,
630,
491,
278,
13,
418,
1661,
29899,
29893,
1794,
369,
25161,
297,
278,
13973,
30010,
17327,
29973,
13,
13,
632,
29946,
29889,
1678,
7440,
278,
14260,
8973,
4589,
491,
972,
5414,
278,
5879,
654,
1434,
13,
418,
14372,
20699,
322,
278,
15130,
304,
2198,
10757,
13,
418,
988,
21265,
29880,
5465,
16831,
287,
297,
263,
26834,
5879,
654,
599,
310,
278,
2114,
950,
13,
418,
3161,
5181,
304,
10127,
278,
2778,
2105,
2738,
26406,
310,
13,
418,
2078,
496,
310,
8078,
29892,
607,
21265,
29880,
5465,
750,
13407,
304,
12020,
408,
263,
13,
418,
6263,
304,
278,
8571,
4110,
322,
2729,
373,
670,
6297,
408,
1410,
279,
424,
272,
363,
13,
418,
916,
8571,
4110,
29973,
13,
13,
29925,
799,
29880,
5465,
30010,
29879,
1771,
2575,
472,
29871,
29946,
29889,
13,
13,
418,
1346,
29909,
5697,
654,
304,
1722,
263,
1970,
11517,
24284,
338,
385,
25530,
304,
278,
14260,
13,
13,
27845,
30010,
29879,
1592,
8270,
10801,
3178,
259,
315,
5848,
325,
29889,
383,
29889,
29931,
29889,
1383,
2142,
571,
3189,
1696,
29871,
29953,
29929,
29941,
319,
29889,
29906,
29881,
29871,
29929,
29947,
29946,
29892,
29871,
29929,
29947,
29953,
13,
13,
29898,
11868,
29889,
5670,
29889,
29871,
29896,
29929,
29929,
29955,
467,
13,
13,
418,
739,
338,
19355,
304,
278,
6047,
766,
4838,
291,
310,
278,
22514,
8973,
322,
13,
418,
674,
451,
367,
1320,
28179,
29207,
263,
10419,
633,
1509,
310,
393,
766,
4838,
291,
29889,
13,
418,
16557,
262,
6275,
29892,
565,
263,
5697,
654,
304,
1722,
263,
24284,
338,
304,
367,
9150,
29892,
372,
13,
418,
1818,
5870,
278,
1494,
1243,
29901,
313,
29896,
29897,
278,
5697,
654,
304,
1722,
1818,
367,
13,
13,
462,
462,
268,
448,
29946,
29899,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
308,
9508,
368,
934,
29881,
29936,
313,
29906,
29897,
278,
10672,
304,
2615,
470,
934,
263,
5335,
873,
1234,
13,
308,
1818,
367,
5566,
3880,
29936,
322,
313,
29941,
29897,
278,
6263,
25738,
304,
1722,
278,
13,
308,
24284,
1818,
1510,
263,
2778,
2105,
2738,
26406,
3045,
13,
13,
23369,
2857,
18585,
1017,
3189,
29889,
325,
29889,
11044,
4885,
11133,
7817,
29892,
365,
12182,
29892,
29871,
29896,
29946,
29900,
319,
29889,
29941,
29881,
29871,
29946,
29953,
29892,
29871,
29945,
29941,
313,
11868,
29889,
13,
13,
19111,
29889,
29871,
29906,
29900,
29896,
29953,
29897,
313,
339,
11427,
21869,
30010,
29879,
390,
22837,
424,
29892,
9266,
29889,
325,
29889,
476,
719,
303,
29895,
646,
5175,
29892,
29871,
29947,
29953,
29896,
13,
13,
29909,
29889,
29906,
29881,
29871,
29941,
29906,
29955,
29892,
29871,
29941,
29941,
29953,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29900,
29946,
29897,
313,
264,
289,
4564,
2483,
23375,
1682,
5223,
325,
29889,
5915,
6468,
29892,
29871,
29896,
29906,
29896,
13,
13,
29909,
29889,
29941,
29881,
29871,
29946,
29929,
29947,
29892,
29871,
29945,
29900,
29945,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29896,
29945,
511,
25530,
17935,
29892,
29871,
29896,
29941,
29896,
319,
29889,
29941,
29881,
29871,
29946,
29929,
29906,
313,
11868,
29889,
29871,
29906,
29900,
29896,
29953,
467,
13,
13,
30015,
29967,
566,
5611,
766,
4838,
291,
6858,
3158,
297,
14670,
537,
411,
4307,
373,
17099,
322,
13,
13,
6034,
398,
303,
2925,
1434,
278,
14260,
8973,
1156,
22514,
322,
19220,
29889,
13,
13,
1168,
27284,
29892,
278,
8973,
633,
6394,
967,
766,
4838,
291,
565,
29892,
297,
3770,
1747,
278,
2228,
363,
13,
13,
7099,
2459,
29892,
372,
3984,
932,
3687,
278,
4307,
470,
24472,
3476,
267,
967,
766,
4838,
291,
297,
263,
8214,
10225,
292,
13,
13,
23147,
3178,
268,
23375,
1682,
5223,
29892,
29871,
29896,
29906,
29896,
319,
29889,
29941,
29881,
472,
29871,
29945,
29900,
29953,
313,
339,
11427,
16498,
325,
29889,
15573,
1127,
17778,
13,
13,
29950,
4705,
1696,
29871,
29955,
29945,
29941,
319,
29889,
29906,
29881,
29871,
29947,
29906,
29929,
29892,
29871,
29947,
29941,
29906,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29900,
29900,
29897,
313,
7564,
7537,
800,
25811,
8106,
13,
13,
308,
512,
12109,
566,
293,
1218,
263,
5697,
654,
304,
1722,
263,
1970,
11517,
24284,
29892,
278,
14260,
8973,
13,
13,
275,
20139,
411,
1346,
4801,
837,
2827,
3692,
278,
5697,
654,
261,
9132,
8002,
13,
13,
5750,
5084,
310,
263,
2778,
2105,
2738,
26406,
304,
1996,
29240,
310,
393,
2228,
304,
263,
13,
13,
29926,
2857,
3178,
1678,
16541,
860,
325,
29889,
29860,
305,
2172,
29892,
29871,
29953,
29929,
319,
29889,
29941,
29881,
29871,
29953,
29946,
29906,
29892,
29871,
29953,
29946,
29955,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29896,
29941,
29897,
313,
29883,
11407,
13,
13,
24259,
442,
14650,
3189,
29889,
325,
29889,
317,
629,
13640,
29892,
29871,
29953,
29953,
29906,
319,
29889,
29906,
29881,
29871,
29896,
29900,
29929,
29906,
313,
29896,
29929,
29929,
29945,
8106,
462,
1346,
10401,
13,
13,
4801,
837,
2827,
263,
5697,
654,
304,
1722,
263,
24284,
29892,
13750,
316,
29882,
943,
278,
2407,
934,
29881,
13,
13,
1609,
278,
6263,
297,
5069,
7853,
278,
1370,
21867,
338,
2183,
29892,
474,
29889,
29872,
1696,
28523,
2592,
29892,
13,
13,
311,
1066,
2187,
29892,
7336,
6847,
29892,
322,
916,
10757,
29892,
1122,
367,
5545,
491,
278,
13,
13,
27845,
3178,
18956,
12734,
10253,
325,
29889,
6070,
345,
2661,
1078,
29892,
23671,
29892,
29871,
29945,
29947,
319,
29889,
29941,
29881,
29871,
29896,
29906,
29955,
29955,
29892,
29871,
29896,
29906,
29947,
29906,
313,
11868,
29889,
13,
13,
19111,
29889,
29871,
29906,
29900,
29896,
29906,
467,
13,
13,
13,
462,
462,
539,
448,
29945,
29899,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
418,
7311,
278,
5879,
654,
304,
4673,
471,
5335,
873,
29892,
694,
697,
18066,
267,
278,
937,
13,
13,
10184,
11780,
363,
8718,
263,
1970,
11517,
24284,
29936,
3265,
29892,
21265,
29880,
5465,
13,
13,
18037,
267,
373,
278,
14260,
8973,
30010,
29879,
3683,
3381,
393,
278,
5879,
654,
304,
4673,
1258,
451,
13,
13,
6338,
738,
2778,
2105,
2738,
822,
11259,
1370,
21867,
292,
17759,
749,
310,
263,
5751,
304,
1510,
13,
13,
29883,
1071,
29889,
512,
670,
937,
2228,
29892,
21265,
29880,
5465,
15313,
1144,
393,
278,
14260,
8973,
766,
4752,
310,
13,
13,
1552,
5879,
654,
304,
4673,
2729,
14419,
368,
373,
278,
2847,
5644,
328,
886,
1728,
1346,
3470,
3278,
30024,
13,
13,
26994,
278,
15130,
304,
2693,
738,
10757,
297,
2304,
310,
670,
822,
11259,
29889,
13,
13,
29925,
799,
29880,
5465,
30010,
29879,
1771,
2575,
472,
29871,
29896,
29955,
29889,
259,
21265,
29880,
5465,
408,
643,
1372,
393,
278,
14260,
8973,
13089,
630,
13,
13,
2704,
491,
451,
1494,
278,
8792,
731,
11483,
297,
2621,
29889,
29934,
29889,
29907,
29889,
29925,
29889,
29871,
29906,
29929,
29945,
29929,
29898,
29890,
29897,
322,
313,
29872,
467,
13,
13,
1204,
29889,
259,
7579,
304,
21265,
29880,
5465,
29892,
278,
4759,
1860,
297,
670,
5879,
654,
304,
4673,
881,
13,
13,
17532,
19799,
278,
14260,
8973,
30010,
29879,
3158,
297,
17759,
292,
263,
5751,
322,
14372,
13,
13,
2218,
11911,
29891,
29889,
21265,
29880,
5465,
30010,
29879,
1771,
2575,
472,
29871,
29906,
29896,
29889,
13,
13,
418,
16636,
27308,
310,
12886,
1019,
26600,
29871,
29906,
29929,
29945,
29929,
14765,
1983,
263,
5697,
654,
304,
1722,
263,
13,
13,
5527,
11517,
24284,
322,
8128,
29892,
297,
8018,
760,
29892,
408,
4477,
29901,
13,
13,
418,
313,
29874,
29897,
6376,
2575,
515,
263,
24284,
491,
1970,
1211,
4091,
367,
18365,
491,
13,
418,
5697,
654,
29889,
869,
869,
869,
518,
29909,
29962,
645,
25502,
363,
18892,
3692,
304,
21283,
1283,
278,
13,
418,
24284,
470,
304,
1722,
372,
1818,
367,
4974,
287,
297,
263,
2323,
5697,
654,
29889,
869,
869,
869,
13,
13,
418,
313,
29890,
29897,
960,
278,
5697,
654,
5922,
7233,
4024,
347,
25502,
363,
18892,
278,
8973,
13,
418,
4091,
2228,
263,
5751,
304,
1510,
4556,
322,
1122,
16690,
263,
7952,
310,
13,
418,
8469,
886,
29889,
2860,
1641,
6766,
411,
263,
3509,
310,
278,
5697,
654,
278,
13,
418,
2174,
524,
2593,
4091,
934,
385,
1234,
373,
470,
1434,
278,
736,
2462,
310,
278,
13,
418,
5751,
29889,
450,
736,
2462,
310,
278,
5751,
4091,
367,
4343,
491,
278,
8973,
491,
13,
418,
1887,
5751,
470,
4266,
1797,
29889,
13,
13,
462,
462,
539,
334,
334,
334,
13,
13,
418,
313,
29872,
29897,
450,
8973,
4091,
27905,
310,
278,
5751,
373,
5697,
654,
322,
1234,
29892,
13,
418,
322,
373,
738,
28523,
2592,
29892,
19754,
2187,
29892,
7336,
6847,
322,
916,
13,
418,
10757,
29889,
450,
8973,
363,
4556,
4318,
1122,
7952,
8469,
886,
373,
13,
13,
462,
462,
539,
448,
29953,
29899,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
418,
278,
5697,
654,
297,
578,
15641,
408,
372,
1074,
2039,
304,
1722,
278,
24284,
28235,
13,
418,
27963,
310,
278,
2280,
304,
21283,
1283,
278,
24284,
29889,
960,
13,
418,
10757,
338,
7371,
607,
297,
263,
432,
2857,
14260,
723,
1996,
278,
13,
418,
5626,
304,
367,
18397,
304,
278,
432,
2857,
278,
8973,
4091,
1722,
278,
13,
418,
24284,
29889,
13,
13,
11868,
29889,
29934,
29889,
29907,
29889,
29925,
29889,
29871,
29906,
29929,
29945,
29929,
29898,
29874,
511,
313,
29890,
511,
322,
313,
29872,
467,
1334,
505,
10824,
393,
29901,
13,
13,
418,
2621,
29889,
29934,
7226,
29907,
5586,
29925,
29889,
29871,
29906,
29929,
29945,
29929,
29898,
29872,
29897,
6166,
11483,
278,
3918,
491,
607,
263,
8973,
13,
418,
3683,
1475,
3692,
263,
8401,
6263,
756,
6284,
4759,
1127,
263,
13,
418,
2778,
2105,
2738,
26406,
29889,
960,
10757,
338,
7371,
607,
297,
263,
432,
2857,
14260,
13,
418,
723,
1996,
278,
5626,
304,
367,
18397,
304,
278,
432,
2857,
278,
8973,
13,
418,
4091,
1722,
278,
24284,
29889,
16478,
29892,
278,
8973,
1818,
1776,
278,
13,
418,
10757,
9132,
297,
278,
3578,
1556,
7853,
519,
304,
278,
8401,
13,
418,
6263,
29892,
1550,
12560,
292,
21138,
10757,
310,
278,
1661,
29899,
13529,
292,
13,
418,
6263,
29889,
450,
5697,
654,
261,
817,
451,
7738,
10757,
1326,
292,
393,
565,
13,
418,
278,
24284,
338,
6496,
29892,
278,
5697,
654,
261,
674,
12379,
737,
29889,
12808,
29892,
13,
418,
591,
1818,
3544,
408,
1565,
278,
5697,
654,
261,
30010,
29879,
10757,
322,
599,
13,
418,
15590,
322,
1571,
10115,
2063,
4972,
292,
727,
3166,
29889,
13,
13,
9651,
512,
916,
3838,
29892,
263,
24284,
310,
1970,
1211,
674,
367,
6496,
565,
13,
418,
263,
5697,
654,
261,
25738,
18892,
727,
3166,
13880,
10757,
607,
297,
13,
418,
263,
432,
2857,
14260,
723,
1996,
5626,
304,
367,
18397,
304,
263,
432,
2857,
29889,
450,
13,
418,
3918,
310,
480,
2416,
13396,
1244,
338,
2788,
304,
278,
3918,
363,
263,
13,
418,
10624,
1147,
8977,
29892,
297,
393,
591,
1818,
1776,
278,
17099,
1556,
7853,
2197,
13,
418,
304,
278,
8401,
6263,
29892,
591,
1818,
3544,
408,
1565,
599,
278,
10757,
322,
13,
418,
1571,
10115,
2063,
297,
2304,
310,
278,
26406,
10425,
29892,
322,
591,
1818,
13,
418,
12560,
599,
594,
3901,
16831,
800,
29889,
13,
13,
29940,
287,
1682,
5223,
29892,
29871,
29896,
29906,
29896,
319,
29889,
29941,
29881,
472,
29871,
29945,
29900,
29953,
29994,
29945,
29900,
29955,
313,
7564,
7537,
800,
322,
13911,
362,
17997,
13,
13,
290,
4430,
467,
7634,
445,
5751,
29901,
13,
13,
418,
263,
8973,
508,
694,
5520,
591,
1141,
278,
10757,
297,
2304,
310,
278,
13,
418,
26406,
29892,
541,
1818,
871,
8161,
3692,
727,
338,
8002,
13,
418,
10757,
304,
2758,
278,
2228,
304,
748,
304,
263,
432,
2857,
29889,
450,
17099,
1818,
367,
13,
418,
24774,
297,
278,
3578,
1556,
7853,
519,
304,
278,
5697,
654,
261,
29892,
322,
263,
8973,
13,
418,
1818,
3544,
408,
1565,
599,
10757,
322,
1571,
10115,
2063,
727,
3166,
13,
418,
20382,
278,
26406,
322,
1818,
12560,
278,
594,
3901,
16831,
800,
13,
418,
310,
278,
2174,
524,
2593,
29889,
13,
13,
29963,
273,
826,
10265,
669,
341,
2209,
21582,
29892,
9266,
29889,
325,
29889,
476,
12184,
29892,
19806,
1696,
29871,
29946,
29896,
29929,
319,
29889,
29906,
29881,
29871,
29945,
29929,
29941,
29892,
29871,
29945,
29929,
29953,
13,
13,
29898,
11868,
29889,
5670,
29889,
29871,
29896,
29929,
29947,
29900,
29897,
313,
7564,
7537,
800,
25811,
467,
13,
13,
462,
462,
268,
448,
29955,
29899,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
418,
2266,
29892,
5260,
21305,
934,
29881,
263,
15313,
524,
297,
1970,
1211,
310,
24284,
29892,
322,
13,
13,
17675,
19422,
471,
7802,
29889,
21265,
29880,
5465,
934,
29881,
278,
5879,
654,
304,
4673,
29889,
2180,
393,
1298,
29892,
13,
13,
11868,
29889,
29934,
29889,
29907,
29889,
29925,
29889,
29871,
29906,
29929,
29945,
29929,
29898,
29890,
29897,
18690,
29879,
278,
14260,
8973,
304,
9076,
278,
5879,
654,
304,
4673,
871,
13,
13,
392,
8161,
565,
372,
5922,
7233,
4024,
347,
25502,
363,
18892,
29889,
2398,
29892,
5260,
21305,
13,
13,
1445,
29881,
967,
673,
1434,
278,
14260,
8973,
1754,
263,
9138,
29889,
1987,
29892,
2729,
373,
278,
13,
13,
29925,
300,
654,
304,
4673,
322,
278,
673,
29892,
278,
14260,
8973,
15964,
304,
1722,
278,
13,
13,
17675,
19422,
29889,
268,
8364,
1711,
29892,
5480,
29892,
21265,
29880,
5465,
30010,
29879,
6449,
3631,
18766,
756,
13,
13,
1050,
277,
29889,
259,
2823,
4412,
310,
27150,
13903,
325,
29889,
14614,
4571,
29892,
29871,
29946,
29947,
29947,
319,
29889,
29906,
29881,
29871,
29941,
29941,
29941,
29892,
29871,
29941,
29941,
29946,
313,
11868,
29889,
5670,
29889,
13,
13,
29896,
29929,
29947,
29945,
29897,
313,
30015,
29961,
1576,
29962,
16897,
11809,
310,
1014,
2042,
313,
29890,
29897,
1818,
367,
1539,
1434,
13,
13,
1552,
259,
916,
259,
28648,
259,
714,
21354,
259,
297,
259,
27308,
1678,
29906,
29929,
29945,
29929,
259,
526,
259,
304,
259,
2125,
259,
2058,
3178,
467,
13,
13,
29940,
1310,
16561,
29892,
1363,
591,
1284,
2304,
297,
278,
2407,
363,
278,
14260,
8973,
30010,
29879,
13,
13,
2886,
292,
393,
21265,
29880,
5465,
5229,
304,
2198,
7233,
4024,
347,
25502,
363,
18892,
297,
278,
13,
13,
29925,
300,
654,
304,
4673,
29892,
591,
17668,
393,
278,
16905,
5537,
362,
310,
2621,
29889,
29934,
29889,
29907,
29889,
29925,
29889,
13,
13,
29906,
29929,
29945,
29929,
29898,
29890,
29897,
297,
445,
1206,
947,
451,
1370,
21867,
8718,
278,
24284,
29889,
462,
259,
6549,
29892,
13,
13,
29925,
799,
29880,
5465,
30010,
29879,
937,
2228,
947,
451,
2778,
277,
18892,
29889,
13,
13,
418,
512,
670,
9886,
5626,
29892,
21265,
29880,
5465,
1852,
1041,
278,
5879,
654,
304,
4673,
3743,
13,
13,
2146,
4543,
2114,
950,
4759,
1860,
304,
2304,
7233,
4024,
347,
25502,
363,
18892,
2729,
13,
13,
265,
3023,
822,
11259,
29889,
1678,
512,
670,
1473,
1139,
9132,
29892,
21265,
29880,
5465,
16726,
278,
13,
13,
29925,
300,
654,
304,
4673,
10127,
267,
393,
278,
10253,
5227,
566,
352,
2705,
20974,
1075,
304,
13,
13,
7978,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
2729,
373,
967,
3984,
276,
6338,
800,
13,
13,
12717,
4017,
292,
278,
3148,
7698,
1410,
279,
424,
583,
29889,
21265,
29880,
5465,
30010,
29879,
1771,
2575,
472,
29871,
29906,
29906,
29889,
7579,
304,
13,
13,
29925,
799,
29880,
5465,
29892,
278,
10253,
1754,
263,
8954,
304,
1075,
607,
471,
5518,
304,
278,
13,
13,
13,
462,
462,
539,
448,
29947,
29899,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
20736,
29936,
278,
8954,
471,
1754,
285,
1338,
873,
29892,
411,
7134,
310,
967,
13,
13,
29888,
1338,
537,
470,
25527,
2222,
766,
1727,
538,
408,
304,
967,
1147,
5946,
29892,
322,
411,
278,
7609,
310,
13,
13,
26737,
25369,
1678,
21265,
29880,
5465,
259,
964,
259,
337,
5890,
259,
373,
259,
372,
29936,
259,
21265,
29880,
5465,
259,
337,
2957,
259,
373,
259,
278,
13,
13,
26737,
276,
26081,
322,
471,
23203,
2486,
28606,
408,
263,
1121,
29889,
1669,
5163,
29889,
313,
29883,
11407,
13,
13,
29923,
2101,
325,
29889,
3992,
1617,
8626,
11506,
830,
455,
15439,
1218,
10863,
4910,
1696,
29871,
29947,
29955,
29946,
319,
29889,
29906,
29881,
29871,
29896,
29896,
29955,
29929,
29892,
13,
13,
29896,
29896,
29947,
29955,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29900,
29945,
8106,
13,
13,
418,
3115,
7537,
292,
382,
2101,
29892,
278,
14260,
8973,
766,
4752,
310,
21265,
29880,
5465,
30010,
29879,
5227,
566,
29899,
262,
29899,
1552,
29899,
13,
13,
513,
1682,
882,
26406,
408,
4477,
29901,
13,
13,
9651,
512,
445,
1206,
29892,
21265,
29880,
5465,
756,
12520,
694,
10757,
6445,
13,
418,
393,
278,
10253,
29892,
411,
385,
7609,
304,
3984,
280,
328,
29892,
285,
1338,
873,
1754,
263,
5518,
13,
418,
8954,
2501,
607,
13378,
337,
2957,
29892,
322,
393,
13378,
13,
418,
17654,
385,
24092,
23203,
2486,
8581,
491,
1316,
12536,
749,
29889,
13,
418,
21265,
29880,
5465,
756,
12520,
5642,
310,
278,
869,
869,
869,
3161,
607,
526,
13,
418,
3734,
363,
29240,
304,
263,
432,
2857,
29892,
322,
363,
445,
2769,
670,
13,
418,
518,
20910,
566,
352,
296,
9013,
13561,
29962,
18766,
304,
278,
1970,
11517,
24284,
338,
13,
418,
22225,
29889,
13,
13,
7514,
322,
8133,
272,
392,
398,
6461,
262,
291,
29892,
29871,
29955,
29914,
29955,
29914,
29896,
29953,
29892,
472,
29871,
29953,
29889,
462,
12808,
29892,
297,
972,
5414,
13,
13,
29925,
799,
29880,
5465,
30010,
29879,
10884,
363,
19220,
29892,
278,
14260,
8973,
8900,
393,
29901,
13,
13,
418,
5164,
10701,
8283,
491,
13378,
322,
21265,
29880,
5465,
892,
8072,
13,
418,
23387,
8078,
29879,
29889,
26321,
29892,
278,
1913,
2760,
29892,
11654,
630,
322,
13,
418,
2138,
17211,
1218,
4309,
273,
4059,
276,
882,
8283,
491,
21265,
29880,
5465,
8703,
408,
13,
418,
4477,
29901,
13,
13,
632,
17100,
362,
29889,
29871,
910,
4059,
276,
882,
322,
278,
916,
13,
632,
4309,
273,
10854,
29879,
1040,
12356,
278,
14419,
17327,
13,
632,
310,
278,
13973,
411,
3390,
304,
278,
4967,
13,
632,
4383,
1244,
974,
322,
727,
974,
322,
480,
6774,
2742,
599,
13,
632,
470,
284,
27214,
800,
322,
7536,
2044,
886,
411,
13,
632,
3390,
304,
278,
4967,
4383,
1244,
974,
322,
13,
632,
727,
974,
29889,
29906,
29947,
13,
18884,
29906,
29947,
13,
462,
29871,
1913,
2760,
29892,
11654,
630,
322,
2138,
17211,
1218,
4309,
273,
13,
1669,
4059,
276,
882,
29892,
1222,
6335,
277,
29871,
29896,
29994,
29928,
310,
278,
1234,
297,
13,
13,
462,
462,
539,
448,
29929,
29899,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
795,
19626,
304,
278,
5697,
654,
304,
1722,
29892,
16683,
29871,
29929,
29889,
29896,
29900,
13,
795,
313,
7278,
25101,
19056,
467,
3115,
29892,
3148,
7698,
3812,
29871,
29946,
29906,
29955,
29929,
29994,
13,
1669,
29896,
29946,
25278,
853,
1116,
3245,
2088,
9519,
29872,
29892,
5922,
393,
13,
795,
21265,
29880,
5465,
29892,
1346,
9485,
279,
424,
272,
3995,
1346,
13029,
451,
671,
385,
470,
284,
13,
795,
3229,
304,
27877,
470,
10551,
278,
3971,
13,
795,
4958,
310,
278,
3940,
310,
445,
2088,
9519,
29872,
30098,
3178,
1222,
6335,
277,
13,
1669,
29896,
29994,
29967,
304,
278,
1234,
297,
19626,
304,
278,
5697,
654,
13,
795,
304,
1722,
29889,
13,
13,
965,
450,
518,
29883,
29962,
14316,
884,
11486,
393,
1090,
16636,
4307,
30003,
13,
13,
462,
9038,
263,
5007,
338,
10087,
304,
367,
278,
13973,
30010,
13,
965,
4152,
8078,
29892,
278,
610,
1772,
518,
29879,
293,
29962,
10757,
5751,
16058,
13,
965,
322,
10757,
310,
738,
3517,
470,
284,
470,
3971,
13,
965,
27214,
800,
470,
8571,
4110,
21677,
278,
1021,
13,
965,
4967,
4383,
408,
278,
8078,
338,
16088,
297,
328,
9894,
1821,
304,
13,
965,
5649,
470,
13100,
278,
4958,
310,
278,
8078,
29889,
29906,
29929,
13,
1669,
29906,
29929,
13,
462,
612,
618,
29873,
325,
29889,
3824,
19259,
29880,
29889,
10253,
310,
3371,
838,
1397,
1384,
29892,
13,
1669,
29953,
29947,
29953,
319,
29889,
29906,
29881,
29871,
29945,
29941,
29929,
29892,
29871,
29945,
29946,
29953,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29900,
29945,
29897,
313,
29883,
11407,
13,
795,
612,
542,
1113,
325,
29889,
27150,
13903,
2443,
295,
414,
12453,
29892,
9266,
1696,
29871,
29947,
29945,
29946,
13,
795,
319,
29889,
29906,
29881,
29871,
29946,
29906,
29945,
29892,
29871,
29946,
29941,
29953,
313,
11868,
29889,
29871,
29906,
29900,
29900,
29946,
8106,
13,
13,
965,
512,
445,
1206,
29892,
610,
324,
10757,
758,
13347,
21265,
29880,
5465,
408,
263,
13,
268,
4383,
310,
4307,
515,
408,
643,
1259,
278,
26406,
2729,
373,
5227,
566,
29899,
262,
29899,
1552,
29899,
13,
268,
9013,
13561,
29936,
5480,
29892,
278,
16831,
800,
2729,
373,
445,
26406,
1258,
13,
268,
451,
2106,
7233,
4024,
347,
25502,
363,
18892,
30098,
869,
13,
13,
11442,
272,
392,
398,
6461,
262,
291,
29892,
29871,
29947,
29914,
29896,
29914,
29896,
29953,
29892,
472,
29871,
29947,
29994,
29929,
29889,
13,
13,
268,
1551,
25530,
29892,
21265,
29880,
5465,
16726,
278,
10253,
9875,
393,
372,
723,
13,
13,
30015,
7892,
4866,
322,
16232,
2472,
304,
278,
3148,
7698,
297,
2304,
310,
967,
13,
13,
6214,
30024,
363,
10509,
267,
29889,
21265,
29880,
5465,
30010,
29879,
1771,
2575,
472,
29871,
29906,
29941,
29889,
21265,
29880,
5465,
1035,
6394,
278,
13,
13,
29933,
804,
310,
1346,
28385,
11687,
322,
16392,
635,
975,
6112,
29961,
292,
29962,
278,
995,
310,
278,
9079,
13,
13,
517,
278,
3148,
7698,
30024,
322,
451,
1959,
292,
1346,
1169,
8859,
3984,
276,
26081,
3178,
308,
5163,
29889,
13,
13,
29925,
799,
29880,
5465,
884,
408,
643,
1372,
393,
1728,
278,
10253,
30010,
29879,
1346,
276,
6338,
800,
322,
13,
13,
369,
8232,
408,
304,
278,
13600,
310,
278,
2472,
4944,
304,
278,
3148,
7698,
3995,
540,
13,
13,
13,
462,
462,
259,
448,
29871,
29896,
29900,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
30015,
29893,
483,
505,
2360,
15502,
304,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
470,
278,
13,
13,
9485,
279,
424,
29891,
30024,
541,
723,
505,
29185,
13378,
30010,
29879,
9443,
411,
278,
10253,
13,
13,
392,
5239,
278,
9079,
29892,
408,
20458,
29889,
5163,
29889,
1094,
363,
278,
14260,
8973,
30010,
29879,
610,
324,
10757,
13,
13,
15916,
29892,
21265,
29880,
5465,
1852,
1041,
393,
29892,
1363,
540,
471,
451,
6263,
304,
278,
1913,
2760,
13,
13,
3410,
273,
4059,
276,
882,
29892,
278,
16224,
2088,
279,
424,
29891,
471,
451,
8072,
23387,
29892,
322,
9561,
13,
13,
1552,
1913,
2760,
4309,
273,
4059,
276,
882,
3643,
278,
16224,
2088,
279,
424,
29891,
1346,
30086,
11851,
368,
5376,
30010,
411,
13,
13,
29961,
1552,
10253,
30010,
29879,
29962,
10788,
800,
411,
3390,
304,
278,
2280,
1889,
363,
278,
3148,
7698,
13,
13,
9485,
279,
424,
583,
29892,
278,
610,
324,
10757,
5751,
723,
451,
2594,
10757,
310,
518,
1552,
10253,
30010,
29879,
29962,
13,
13,
26737,
276,
6338,
800,
3178,
5163,
29889,
472,
29871,
29906,
29953,
29889,
13,
13,
418,
512,
2933,
29892,
5260,
21305,
1852,
1041,
393,
21265,
29880,
5465,
1346,
26061,
304,
394,
4424,
17099,
13,
13,
915,
8538,
15187,
21204,
1080,
3995,
607,
1346,
1867,
451,
14451,
304,
278,
3233,
310,
263,
7233,
4024,
347,
13,
13,
29883,
8342,
363,
5227,
566,
352,
296,
9013,
13561,
29961,
5586,
30024,
5260,
21305,
30010,
29879,
1771,
2575,
472,
29871,
29906,
29945,
29892,
29871,
29906,
29953,
29889,
26321,
29892,
13,
13,
29956,
284,
21305,
3291,
714,
21265,
29880,
5465,
30010,
29879,
10672,
304,
4759,
1346,
5816,
278,
3935,
3229,
13,
13,
1131,
1091,
9246,
304,
278,
10253,
338,
29892,
1058,
1497,
372,
29892,
746,
372,
471,
1497,
470,
2020,
372,
471,
13,
13,
4541,
3178,
259,
5163,
29889,
472,
29871,
29906,
29955,
29889,
259,
20175,
29892,
5260,
21305,
18066,
267,
21265,
29880,
5465,
30010,
29879,
4759,
1860,
13,
13,
1727,
20272,
278,
10253,
30010,
29879,
7609,
304,
3984,
280,
328,
29892,
21265,
29880,
5465,
30010,
29879,
12536,
749,
29892,
322,
21265,
29880,
5465,
30010,
29879,
13,
13,
262,
29926,
2857,
29892,
408,
15187,
21204,
1080,
443,
23765,
491,
278,
2407,
29889,
5163,
29889,
472,
29871,
29906,
29947,
29994,
29941,
29941,
29889,
2973,
13,
13,
1727,
538,
304,
21265,
29880,
5465,
30010,
29879,
4759,
358,
310,
24092,
29892,
5260,
21305,
11486,
393,
278,
1913,
2760,
13,
13,
3410,
273,
4059,
276,
882,
2869,
12212,
21265,
29880,
5465,
30010,
29879,
12463,
619,
3097,
491,
395,
29896,
29906,
29892,
29941,
29900,
29900,
29892,
29900,
29900,
29900,
13,
13,
392,
393,
13378,
1033,
505,
5239,
278,
9079,
472,
738,
931,
29889,
3986,
5163,
29889,
472,
29871,
29941,
29906,
29889,
13,
13,
20761,
957,
29892,
5260,
21305,
408,
643,
1372,
393,
278,
610,
1772,
10757,
5751,
758,
27722,
21265,
29880,
5465,
30010,
29879,
13,
13,
13,
13,
13,
462,
462,
1678,
448,
29871,
29896,
29896,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
276,
13036,
373,
278,
10253,
30010,
29879,
3708,
637,
287,
3984,
276,
6338,
800,
304,
2304,
670,
5227,
566,
29899,
262,
29899,
13,
13,
1552,
29899,
513,
1682,
882,
5995,
29889,
5260,
21305,
30010,
29879,
1771,
2575,
472,
29871,
29941,
29941,
29994,
29941,
29929,
29889,
7579,
304,
5260,
21305,
29901,
13,
13,
539,
278,
13465,
11845,
297,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
16058,
13,
539,
304,
278,
1346,
1595,
583,
30024,
1058,
526,
13973,
304,
278,
4309,
273,
10854,
29879,
29892,
3265,
13,
539,
1135,
304,
13973,
393,
526,
871,
13973,
304,
278,
1913,
2760,
4309,
273,
13,
539,
4059,
276,
882,
29889,
4001,
278,
29871,
29906,
29900,
29896,
29896,
518,
7435,
284,
29962,
2088,
279,
424,
29891,
338,
5134,
297,
13,
539,
278,
5023,
310,
1346,
3410,
273,
10854,
29879,
3995,
322,
1363,
21265,
29880,
5465,
338,
263,
13,
539,
6263,
304,
393,
17327,
29892,
278,
29871,
29906,
29900,
29896,
29896,
518,
7435,
284,
29962,
2088,
279,
424,
29891,
338,
263,
8072,
13,
539,
23387,
1842,
29889,
13,
13,
1204,
29889,
472,
29871,
29941,
29945,
313,
6661,
16953,
25811,
467,
13,
13,
539,
19956,
9076,
29892,
591,
2313,
824,
694,
10419,
633,
1509,
310,
278,
14260,
8973,
30010,
29879,
13,
13,
2218,
4838,
291,
297,
972,
5414,
278,
5879,
654,
304,
4673,
29889,
24027,
18585,
1017,
3189,
1696,
29871,
29896,
29946,
29900,
319,
29889,
29941,
29881,
13,
13,
271,
29871,
29945,
29941,
29889,
539,
21265,
29880,
5465,
30010,
29879,
4759,
1860,
310,
5227,
566,
352,
296,
9013,
13561,
526,
25160,
29892,
13,
13,
5965,
1810,
1230,
29892,
322,
21204,
706,
29889,
308,
19454,
278,
5106,
540,
19056,
297,
13,
13,
5924,
310,
278,
5879,
654,
304,
4673,
29892,
21265,
29880,
5465,
947,
451,
3867,
17099,
11211,
13,
13,
15970,
418,
1754,
418,
263,
1678,
5518,
268,
3984,
276,
26081,
29892,
9651,
825,
1678,
278,
1678,
5518,
13,
13,
26737,
276,
26081,
418,
471,
29892,
259,
920,
268,
278,
268,
5518,
539,
3984,
276,
26081,
268,
20974,
13,
13,
29925,
799,
29880,
5465,
1678,
304,
1678,
2769,
2197,
418,
19104,
1678,
2501,
539,
372,
29892,
259,
322,
1678,
920,
1678,
278,
1678,
5518,
13,
13,
26737,
276,
26081,
8581,
1075,
10311,
29889,
13,
13,
539,
450,
10253,
9875,
393,
372,
723,
4017,
263,
3148,
7698,
1410,
279,
424,
29891,
29892,
322,
372,
13,
13,
18361,
29889,
450,
10253,
30010,
29879,
16831,
287,
10672,
304,
752,
368,
411,
3058,
11780,
310,
278,
13,
13,
3308,
7698,
268,
1410,
279,
424,
29891,
418,
947,
259,
451,
1678,
2304,
4706,
21265,
29880,
5465,
30010,
29879,
259,
5995,
259,
310,
1678,
5227,
566,
352,
296,
13,
13,
513,
1682,
882,
29889,
12808,
29892,
21265,
29880,
5465,
1033,
451,
505,
2769,
2197,
337,
2957,
373,
278,
13,
13,
29933,
804,
30010,
29879,
16831,
287,
3984,
276,
6338,
800,
363,
278,
5164,
9590,
15648,
491,
13,
13,
29956,
284,
21305,
29901,
13378,
471,
10788,
630,
304,
4017,
278,
3148,
7698,
1410,
279,
424,
29891,
29892,
451,
278,
10253,
30003,
13,
13,
13,
462,
462,
965,
448,
29871,
29896,
29906,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
6833,
2760,
4309,
273,
4059,
276,
882,
29892,
29871,
29906,
29914,
29906,
29914,
29896,
29896,
29892,
472,
29871,
30497,
30497,
29871,
29945,
29892,
29871,
29945,
29889,
29896,
29953,
29936,
21265,
29880,
5465,
30010,
29879,
619,
3097,
1090,
13,
13,
1552,
16224,
2088,
279,
424,
29891,
471,
451,
4195,
287,
373,
278,
3148,
7698,
1410,
279,
424,
29891,
30003,
7435,
284,
13,
13,
9485,
279,
424,
29891,
29892,
29871,
29906,
29914,
29906,
29914,
29896,
29896,
29892,
472,
29871,
30497,
29871,
29906,
29936,
21265,
29880,
5465,
7625,
385,
7417,
17134,
362,
310,
13,
13,
1552,
9079,
1434,
540,
8283,
278,
16224,
2088,
279,
424,
29891,
30003,
29925,
300,
654,
304,
4673,
29892,
13,
13,
29945,
29914,
29896,
29953,
29914,
29896,
29953,
29892,
472,
1222,
6335,
277,
660,
29936,
322,
29892,
408,
1410,
279,
424,
272,
29892,
21265,
29880,
5465,
11324,
2347,
738,
1346,
1767,
30024,
13,
13,
12817,
822,
11259,
30003,
3308,
7698,
3812,
29871,
29946,
29906,
29955,
29929,
29899,
29896,
29946,
29892,
472,
29871,
30497,
29871,
29953,
29889,
5260,
21305,
30010,
29879,
1771,
2575,
472,
29871,
29906,
29929,
29994,
29941,
29900,
29889,
13,
13,
418,
4186,
947,
278,
5879,
654,
304,
4673,
3160,
17099,
10127,
292,
393,
278,
10253,
30010,
29879,
13,
13,
284,
1397,
287,
3984,
276,
6338,
800,
8581,
1075,
10311,
29889,
512,
2114,
29892,
278,
16224,
2088,
279,
424,
29891,
13,
13,
1050,
873,
1791,
630,
322,
337,
3470,
381,
2168,
21265,
29880,
5465,
30010,
29879,
619,
3097,
270,
1218,
1250,
304,
13378,
30010,
29879,
13,
13,
13492,
10788,
800,
363,
658,
550,
297,
29871,
29906,
29900,
29900,
29955,
29892,
29871,
29906,
29900,
29900,
29929,
29892,
322,
29871,
29906,
29900,
29896,
29900,
29889,
7634,
278,
1913,
2760,
13,
13,
392,
11654,
630,
3940,
29892,
21265,
29880,
5465,
30010,
29879,
12463,
619,
3097,
471,
12212,
491,
395,
29896,
29906,
29892,
29941,
29900,
29900,
29892,
29900,
29900,
29900,
29889,
13,
13,
20761,
957,
29892,
5998,
21265,
29880,
5465,
1580,
352,
1078,
393,
540,
723,
505,
5239,
278,
13,
13,
4854,
472,
263,
6133,
8666,
3265,
1135,
6222,
278,
16224,
2088,
279,
424,
29891,
297,
13,
13,
29906,
29900,
29896,
29896,
29892,
540,
1258,
451,
4759,
297,
278,
5879,
654,
304,
4673,
393,
278,
6410,
310,
995,
297,
278,
13,
13,
4854,
259,
471,
1678,
8581,
259,
491,
1678,
278,
268,
10253,
30010,
29879,
259,
16831,
287,
259,
3984,
276,
6338,
800,
29889,
13,
13,
29943,
332,
721,
5514,
29892,
3078,
310,
2407,
5557,
287,
13378,
515,
269,
7807,
278,
9079,
13,
13,
29878,
1624,
1135,
3133,
292,
967,
9443,
411,
278,
10253,
29889,
13,
13,
418,
9208,
368,
29892,
591,
1284,
2304,
297,
278,
2407,
363,
278,
14260,
8973,
30010,
29879,
1284,
886,
393,
13,
13,
1552,
16224,
2088,
279,
424,
29891,
471,
263,
8072,
23387,
17327,
322,
393,
610,
324,
13,
13,
5750,
5084,
310,
278,
10253,
30010,
29879,
16831,
287,
3984,
276,
6338,
800,
11211,
278,
3148,
7698,
13,
13,
2543,
279,
424,
29891,
338,
2594,
1127,
29889,
450,
1913,
2760,
4309,
273,
4059,
276,
882,
3743,
385,
13465,
13,
13,
16398,
1509,
607,
14637,
304,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
322,
278,
916,
4309,
273,
13,
13,
13,
462,
462,
539,
448,
29871,
29896,
29941,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
20128,
29889,
1678,
1913,
2760,
4309,
273,
4059,
276,
882,
472,
16683,
29871,
29929,
29889,
29896,
29900,
29889,
4706,
1346,
3410,
273,
10854,
29879,
30024,
338,
13,
13,
12119,
297,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
408,
4477,
29901,
13,
13,
268,
518,
1576,
29962,
10701,
9904,
297,
9779,
29871,
29946,
29889,
29896,
1244,
974,
29892,
3704,
1728,
13,
268,
29485,
445,
4059,
276,
882,
29892,
278,
3940,
29892,
278,
15533,
29887,
482,
29892,
278,
13,
268,
4007,
10194,
29892,
322,
599,
8571,
4110,
29892,
626,
355,
1860,
29892,
23199,
1078,
29892,
13,
268,
11782,
3277,
9506,
29892,
28598,
2540,
29892,
13676,
29892,
451,
1575,
29892,
322,
10371,
1169,
13,
268,
1286,
470,
1244,
7045,
8283,
470,
20115,
297,
3957,
411,
13,
268,
738,
310,
278,
363,
2412,
292,
29892,
408,
1122,
367,
297,
11828,
515,
931,
304,
931,
29889,
13,
13,
1204,
29889,
472,
29871,
30497,
29871,
29896,
313,
7278,
25101,
19056,
467,
7311,
21265,
29880,
5465,
8283,
278,
16224,
13,
13,
9485,
279,
424,
29891,
297,
3957,
411,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
29892,
372,
20074,
6862,
368,
13,
13,
2541,
262,
278,
5023,
310,
4309,
273,
10854,
29879,
322,
29892,
5480,
29892,
372,
884,
20074,
2629,
13,
13,
1552,
6874,
310,
278,
13465,
11845,
29889,
1678,
6549,
29892,
278,
610,
324,
10757,
5751,
22306,
13,
13,
29925,
799,
29880,
5465,
515,
4547,
3277,
17541,
28594,
10757,
310,
278,
10253,
30010,
29879,
16831,
287,
13,
13,
26737,
276,
6338,
800,
29889,
259,
16478,
29892,
1584,
565,
591,
8661,
411,
21265,
29880,
5465,
30010,
29879,
5995,
13,
13,
5747,
278,
3148,
7698,
2280,
322,
7190,
526,
884,
4309,
273,
10854,
29879,
29892,
278,
13,
13,
27925,
11845,
322,
610,
324,
10757,
5751,
758,
2325,
17541,
28594,
10757,
310,
278,
13,
13,
29933,
804,
30010,
29879,
16831,
287,
3984,
276,
6338,
800,
11211,
1906,
10701,
29889,
3986,
512,
2533,
29892,
13,
13,
29925,
799,
29880,
5465,
30010,
29879,
5227,
566,
352,
296,
9013,
13561,
26406,
947,
451,
1370,
21867,
18892,
29889,
13,
13,
268,
512,
670,
4654,
2228,
29892,
21265,
29880,
5465,
1852,
1041,
393,
263,
2114,
950,
28447,
4864,
408,
304,
13,
13,
1332,
1979,
13378,
471,
297,
2322,
322,
29892,
5480,
29892,
263,
5751,
881,
505,
1063,
13,
13,
790,
6742,
322,
20699,
6068,
29889,
418,
21265,
29880,
5465,
30010,
29879,
1771,
2575,
472,
29871,
29906,
29947,
29889,
1678,
7579,
304,
13,
13,
29925,
799,
29880,
5465,
29892,
278,
10253,
11324,
2347,
738,
21274,
491,
9886,
17436,
363,
5320,
2440,
13,
13,
29881,
3864,
278,
2834,
310,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
29936,
5480,
29892,
540,
926,
1169,
29892,
5260,
21305,
13,
13,
275,
18261,
2986,
515,
1970,
404,
292,
24284,
2750,
1075,
22345,
2729,
373,
13,
13,
10495,
533,
30010,
29879,
21274,
29889,
5163,
29889,
472,
29871,
29906,
29929,
29889,
13,
13,
462,
462,
259,
448,
29871,
29896,
29946,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
268,
512,
967,
26959,
392,
398,
3211,
292,
21265,
29880,
5465,
30010,
29879,
10884,
363,
337,
3200,
1241,
362,
29892,
13,
13,
1552,
14260,
8973,
337,
2957,
373,
263,
1661,
29899,
29893,
1794,
369,
25161,
297,
278,
16224,
2088,
279,
424,
29891,
304,
13,
13,
2218,
4220,
310,
21265,
29880,
5465,
30010,
29879,
281,
1794,
369,
29914,
4778,
17344,
26406,
29901,
13,
13,
965,
512,
259,
278,
29871,
15313,
524,
29899,
262,
29899,
5527,
1211,
29899,
974,
29899,
17675,
19422,
29892,
539,
5260,
21305,
13,
268,
4974,
287,
393,
13378,
750,
2322,
287,
491,
2078,
9733,
2211,
18161,
13,
268,
274,
9813,
1934,
29892,
322,
10816,
278,
274,
9813,
1934,
15659,
408,
1346,
8140,
12539,
13,
268,
27378,
1821,
12670,
399,
2072,
3995,
1346,
7583,
17450,
601,
3995,
322,
1346,
10251,
29873,
29899,
517,
29899,
6108,
537,
13,
268,
17450,
601,
3178,
512,
278,
17602,
29899,
1445,
29881,
518,
29925,
300,
654,
304,
4673,
1402,
21265,
29880,
5465,
13,
268,
18066,
287,
5260,
21305,
30010,
29879,
263,
1454,
882,
28487,
4759,
1860,
491,
3061,
19985,
13,
268,
1023,
822,
11259,
29901,
937,
29892,
13378,
750,
451,
5537,
630,
278,
9626,
17450,
601,
13,
268,
274,
9813,
424,
472,
278,
931,
5260,
21305,
8052,
263,
2322,
29936,
322,
1473,
29892,
13,
268,
5260,
21305,
750,
5229,
373,
7536,
26108,
304,
427,
10118,
278,
916,
1023,
13,
268,
274,
9813,
1934,
322,
471,
5480,
18261,
2986,
515,
25136,
263,
2322,
13,
268,
727,
5062,
29889,
13,
13,
9651,
450,
518,
29883,
29962,
14316,
4091,
3211,
278,
1473,
2980,
30003,
8588,
873,
29892,
13,
268,
393,
5260,
21305,
338,
18261,
2986,
515,
25136,
263,
2322,
29889,
1763,
445,
1095,
29892,
13,
268,
278,
518,
29883,
29962,
14316,
6077,
304,
278,
16831,
800,
1754,
491,
21265,
29880,
5465,
297,
670,
13,
268,
5879,
654,
304,
518,
29949,
29962,
2238,
29889,
512,
393,
5697,
654,
29892,
21265,
29880,
5465,
750,
8703,
393,
13,
268,
5260,
21305,
471,
9543,
310,
278,
16831,
287,
1346,
1403,
324,
800,
30024,
310,
278,
18161,
13,
268,
274,
9813,
1934,
29892,
3447,
30003,
13,
13,
965,
15020,
1641,
2183,
1784,
28602,
1907,
304,
12020,
738,
13,
965,
5626,
19813,
1438,
274,
9813,
1934,
29892,
5260,
21305,
30010,
29879,
13,
965,
27978,
985,
272,
9488,
17436,
472,
278,
931,
372,
12722,
304,
13,
965,
505,
19182,
869,
869,
869,
322,
869,
869,
869,
3614,
694,
3158,
11211,
13,
965,
1438,
274,
9813,
1934,
363,
263,
3785,
310,
5320,
2440,
29889,
13,
13,
462,
462,
259,
334,
334,
334,
13,
13,
965,
2648,
9886,
17436,
746,
896,
881,
505,
19182,
29892,
13,
965,
10253,
322,
5260,
21305,
11324,
2347,
1009,
11509,
304,
4974,
263,
13,
965,
2322,
2729,
373,
1316,
274,
9813,
1934,
869,
869,
869,
322,
21265,
29880,
5465,
13,
965,
508,
6356,
278,
2778,
2105,
2738,
822,
11259,
310,
281,
1794,
369,
322,
13,
965,
18261,
2986,
29889,
13,
13,
268,
2860,
4392,
2827,
278,
263,
1079,
29899,
339,
5715,
16831,
800,
297,
21265,
29880,
5465,
30010,
29879,
13,
268,
5697,
654,
29892,
278,
518,
29883,
29962,
14316,
884,
6077,
304,
278,
4086,
310,
278,
16224,
13,
268,
2088,
279,
424,
29891,
607,
21265,
29880,
5465,
8283,
373,
6339,
29871,
29906,
29892,
29871,
29906,
29900,
29896,
29896,
29889,
29941,
29941,
2193,
13,
268,
1842,
8703,
408,
4477,
297,
13499,
8946,
760,
29901,
13,
13,
13,
462,
462,
259,
448,
29871,
29896,
29945,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
965,
518,
29873,
29962,
354,
619,
3097,
310,
278,
2088,
279,
424,
272,
1244,
5062,
518,
29925,
799,
29880,
5465,
29962,
13,
965,
338,
8380,
322,
443,
1116,
3245,
29892,
322,
4091,
451,
367,
13,
965,
15201,
297,
738,
982,
367,
2769,
310,
313,
29874,
29897,
16088,
278,
10225,
310,
13,
965,
7536,
24555,
13561,
310,
738,
10462,
2750,
738,
2022,
13,
965,
470,
12407,
16088,
313,
29883,
29897,
738,
9055,
297,
24555,
3277,
470,
10672,
304,
13,
965,
427,
10118,
738,
1316,
10462,
16088,
470,
313,
29881,
29897,
738,
9055,
297,
3907,
13,
965,
9667,
373,
278,
2088,
279,
424,
272,
363,
4180,
470,
13,
965,
19179,
310,
278,
2088,
279,
424,
272,
30010,
29879,
10788,
800,
1244,
5062,
29889,
29941,
29946,
13,
1669,
29941,
29941,
13,
462,
259,
1346,
1576,
3414,
310,
5133,
1259,
263,
8078,
338,
13,
795,
6892,
8560,
289,
1017,
263,
8973,
3265,
1135,
491,
13,
795,
263,
432,
2857,
29889,
450,
7306,
310,
393,
3414,
338,
16088,
304,
408,
14082,
13,
795,
278,
7609,
310,
278,
13973,
408,
14682,
2868,
491,
278,
13,
795,
4086,
268,
310,
259,
278,
1678,
3971,
29871,
11395,
3178,
13,
795,
379,
2807,
7352,
325,
29889,
6561,
29894,
1617,
8278,
29892,
9266,
1696,
29871,
29955,
29945,
319,
29889,
29941,
29881,
13,
1669,
29945,
29900,
29946,
29892,
29871,
29945,
29896,
29900,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29896,
29941,
467,
13,
1669,
29941,
29946,
13,
462,
259,
402,
29965,
1718,
13566,
29979,
5300,
317,
11499,
15631,
7068,
5690,
16369,
1525,
12665,
3919,
29892,
1222,
6335,
277,
13,
1669,
29896,
29899,
29923,
304,
278,
1234,
297,
19626,
304,
278,
5697,
654,
13,
795,
304,
1722,
24284,
491,
1970,
1211,
29892,
16683,
29871,
29906,
29889,
13,
13,
9651,
910,
2821,
322,
443,
14727,
681,
4086,
2175,
278,
518,
29883,
29962,
14316,
411,
13,
268,
694,
7404,
29901,
21265,
29880,
5465,
29892,
408,
7333,
1410,
279,
424,
272,
310,
13378,
29892,
750,
13,
268,
15502,
393,
670,
619,
3097,
1033,
451,
367,
471,
17143,
3448,
491,
278,
10253,
30010,
29879,
13,
268,
470,
5260,
21305,
30010,
29879,
10225,
310,
7536,
24555,
13561,
310,
738,
310,
1009,
10462,
29892,
470,
491,
13,
268,
1009,
9055,
297,
408,
643,
1259,
1316,
10462,
29889,
16564,
373,
278,
2821,
4086,
13,
268,
310,
278,
16224,
2088,
279,
424,
29891,
29892,
445,
518,
29883,
29962,
14316,
1476,
393,
5260,
21305,
470,
967,
13,
268,
27978,
985,
272,
750,
451,
11324,
2347,
1009,
1492,
304,
4808,
21265,
29880,
5465,
619,
519,
13,
268,
408,
1410,
279,
424,
272,
29892,
322,
1033,
451,
367,
18261,
2986,
515,
1970,
404,
292,
13,
268,
24284,
2750,
21265,
29880,
5465,
29889,
7857,
29892,
445,
518,
29883,
29962,
14316,
1476,
393,
13,
268,
21265,
29880,
5465,
750,
5229,
304,
2106,
7233,
4024,
347,
25502,
363,
18892,
408,
304,
13,
268,
278,
3080,
12539,
27378,
1821,
12670,
399,
2072,
322,
7089,
29873,
29899,
517,
29899,
6108,
537,
17450,
601,
13,
268,
274,
9813,
1934,
29892,
322,
363,
278,
2769,
445,
518,
29883,
29962,
14316,
22225,
21265,
29880,
5465,
30010,
29879,
13,
268,
18066,
267,
29889,
4001,
21265,
29880,
5465,
750,
5229,
304,
2106,
7233,
4024,
347,
13,
268,
25502,
363,
18892,
1090,
1023,
310,
278,
2211,
16831,
287,
18161,
13,
268,
21274,
29892,
445,
518,
29883,
29962,
14316,
316,
22580,
372,
19039,
304,
3211,
3692,
13,
268,
13378,
750,
2078,
3791,
278,
9626,
17450,
601,
274,
9813,
424,
472,
278,
931,
310,
13,
268,
2322,
29889,
13,
13,
11442,
272,
392,
398,
6461,
262,
291,
29892,
29871,
29947,
29914,
29896,
29914,
29896,
29953,
29892,
472,
29871,
29929,
29994,
29896,
29900,
313,
17536,
7463,
3661,
16953,
322,
13,
13,
7278,
25101,
25811,
467,
13,
13,
13,
13,
13,
462,
462,
259,
448,
29871,
29896,
29953,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
418,
21265,
29880,
5465,
337,
4187,
29879,
278,
14260,
8973,
30010,
29879,
12536,
749,
373,
278,
1661,
29899,
29893,
1794,
369,
25161,
13,
13,
974,
278,
16224,
2088,
279,
424,
29891,
297,
697,
29899,
26956,
29901,
13,
13,
632,
8669,
310,
5936,
5281,
967,
1059,
297,
17581,
304,
8814,
278,
13,
418,
5879,
654,
12359,
29884,
424,
304,
2621,
29889,
390,
29889,
29907,
29889,
29925,
29889,
29871,
29906,
29929,
29945,
29929,
29892,
297,
967,
9426,
373,
13,
418,
21265,
29880,
5465,
30010,
29879,
10884,
363,
337,
3200,
1241,
362,
29892,
278,
14260,
8973,
1476,
393,
13,
418,
21265,
29880,
5465,
30010,
29879,
26406,
4475,
304,
281,
1794,
369,
310,
278,
2322,
1326,
12112,
13,
418,
892,
758,
13347,
491,
278,
2088,
279,
424,
29891,
30010,
29879,
1346,
5464,
29899,
29893,
1794,
369,
30024,
25161,
29889,
512,
13,
418,
20888,
445,
15997,
29892,
278,
14260,
8973,
5229,
304,
18720,
393,
29892,
13,
418,
1090,
16636,
4307,
29892,
263,
1661,
29899,
29893,
1794,
369,
25161,
1122,
3528,
367,
13,
418,
11324,
2347,
29889,
2823,
402,
820,
325,
29889,
8142,
546,
262,
29892,
29871,
29896,
29945,
29929,
319,
29889,
29871,
29946,
29946,
29955,
29892,
29871,
29946,
29946,
29947,
313,
11868,
29889,
29871,
29896,
29929,
29941,
29906,
416,
13,
418,
4052,
29943,
279,
1049,
325,
29889,
476,
986,
9450,
13377,
29889,
3189,
1696,
29871,
29896,
29929,
319,
29889,
29871,
29955,
29929,
29953,
29892,
29871,
29955,
29929,
29953,
29994,
29961,
29955,
29962,
29929,
29955,
313,
11868,
29889,
13,
539,
29896,
29947,
29929,
29900,
416,
21080,
6438,
13377,
29889,
3189,
29889,
310,
4517,
325,
29889,
11566,
3391,
29892,
29871,
29896,
29906,
319,
29889,
29871,
29953,
29953,
29947,
13,
418,
313,
11868,
29889,
29871,
29896,
29947,
29947,
29947,
467,
418,
1094,
518,
1552,
10253,
30010,
29879,
29962,
7512,
11324,
2347,
278,
2322,
13,
418,
1326,
12112,
297,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
322,
278,
1661,
29899,
29893,
1794,
369,
13,
418,
25161,
297,
278,
518,
7435,
284,
29962,
2088,
279,
424,
29891,
322,
1346,
1552,
2228,
310,
281,
1794,
369,
338,
263,
13,
418,
4383,
310,
2114,
304,
367,
4318,
491,
278,
10757,
3995,
372,
471,
4857,
546,
363,
13,
418,
278,
14260,
8973,
304,
972,
29891,
278,
5879,
654,
1434,
6820,
21265,
29880,
5465,
278,
13,
418,
15130,
304,
7512,
20699,
29889,
13,
13,
29925,
799,
29880,
5465,
30010,
29879,
1771,
2575,
472,
29871,
29941,
29900,
313,
20273,
322,
777,
7537,
800,
25811,
467,
13,
13,
418,
5260,
21305,
1634,
3687,
393,
278,
16224,
2088,
279,
424,
29891,
1346,
29893,
1794,
369,
25161,
338,
2821,
13,
13,
392,
443,
14727,
681,
29889,
14598,
29892,
21265,
29880,
5465,
947,
451,
27754,
6467,
3178,
5260,
21305,
30010,
29879,
13,
13,
29933,
2546,
29888,
472,
29871,
29946,
29906,
29889,
7579,
304,
5260,
21305,
29892,
21265,
29880,
5465,
30010,
29879,
10788,
362,
304,
1634,
388,
278,
658,
550,
338,
13,
13,
381,
690,
12645,
310,
29901,
13,
13,
418,
1346,
1384,
9055,
297,
24555,
3277,
470,
10672,
304,
427,
10118,
738,
1316,
13,
418,
10462,
29892,
1584,
565,
1316,
10462,
526,
27999,
5714,
29892,
470,
16088,
738,
9055,
13,
418,
297,
3907,
9667,
373,
278,
2088,
279,
424,
272,
363,
4180,
470,
13,
418,
19179,
310,
278,
2088,
279,
424,
272,
30010,
29879,
10788,
800,
3178,
450,
1913,
2760,
13,
418,
4309,
273,
4059,
276,
882,
22829,
8128,
393,
1346,
1217,
10672,
470,
9055,
373,
13,
418,
278,
760,
310,
278,
10253,
297,
278,
15058,
310,
738,
1492,
29892,
3081,
29892,
470,
13,
418,
1083,
7584,
4091,
21994,
408,
263,
281,
1794,
369,
727,
974,
16088,
9363,
322,
393,
1346,
1217,
13,
418,
281,
1794,
369,
310,
738,
697,
470,
901,
310,
278,
1326,
12112,
1244,
974,
4091,
13,
418,
367,
11828,
6521,
731,
11483,
297,
5007,
322,
8794,
491,
278,
13,
418,
13973,
902,
10896,
3178,
13,
13,
13,
13,
13,
462,
462,
1678,
448,
29871,
29896,
29955,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
1204,
29889,
313,
339,
11427,
16224,
2088,
279,
424,
29891,
29892,
29871,
29906,
29914,
29906,
29914,
29896,
29896,
29892,
472,
29871,
30497,
29871,
29906,
29936,
1913,
2760,
4309,
273,
4059,
276,
882,
29892,
13,
13,
29906,
29914,
29906,
29914,
29896,
29896,
29892,
472,
29871,
30497,
30497,
29871,
29929,
29889,
29896,
29892,
29871,
29929,
29889,
29896,
29896,
29897,
313,
7278,
2129,
297,
2441,
29936,
7463,
7537,
800,
25811,
8106,
13,
13,
29956,
284,
21305,
11834,
1169,
393,
3692,
278,
10253,
1346,
1745,
7114,
17436,
408,
304,
13378,
30010,
29879,
13,
13,
1144,
324,
854,
1270,
470,
18161,
11780,
338,
28190,
304,
21265,
29880,
5465,
30010,
29879,
10788,
800,
13,
13,
5062,
278,
518,
7435,
284,
29962,
2088,
279,
424,
29891,
3178,
5163,
29889,
472,
29871,
29946,
29941,
29889,
7311,
21265,
29880,
5465,
11324,
2347,
599,
13,
13,
29883,
8342,
29879,
29892,
5260,
21305,
408,
643,
1372,
29892,
1346,
1552,
14260,
8973,
5149,
4934,
393,
372,
1258,
451,
817,
304,
13,
13,
7328,
21265,
29880,
5465,
30010,
29879,
26406,
393,
13378,
471,
451,
297,
2322,
310,
697,
310,
278,
13,
13,
4951,
273,
1455,
274,
9813,
1934,
785,
278,
5129,
7583,
17450,
601,
30010,
274,
9813,
424,
3178,
5163,
29889,
472,
29871,
29946,
29945,
29889,
13,
13,
539,
19956,
9076,
29892,
591,
2313,
824,
694,
10419,
633,
1509,
310,
278,
14260,
8973,
30010,
29879,
13,
13,
2218,
4838,
291,
297,
12560,
292,
21265,
29880,
5465,
30010,
29879,
4654,
26406,
29889,
1334,
505,
10824,
393,
29901,
13,
13,
539,
518,
29886,
29962,
442,
583,
304,
263,
3971,
8078,
1122,
11807,
29892,
6623,
470,
1735,
372,
13,
539,
2845,
491,
3838,
470,
7512,
29889,
5806,
385,
11807,
358,
470,
281,
1794,
369,
338,
13,
539,
451,
22420,
6275,
2225,
21571,
297,
278,
18070,
310,
385,
4653,
13,
539,
17327,
29892,
565,
278,
7512,
310,
278,
11564,
6263,
756,
1063,
1316,
408,
13,
539,
304,
3984,
280,
328,
697,
29892,
304,
670,
758,
17675,
625,
29892,
964,
385,
15993,
17750,
393,
1316,
263,
13,
539,
281,
1794,
369,
470,
11807,
358,
471,
2845,
9146,
470,
1136,
14927,
304,
29892,
372,
13,
539,
674,
367,
2225,
21571,
29889,
5556,
388,
297,
24795,
263,
5995,
1122,
367,
10757,
13,
539,
8018,
304,
278,
2228,
310,
263,
5995,
30010,
29879,
11807,
358,
29892,
541,
1316,
9055,
13,
539,
947,
451,
2367,
14451,
304,
263,
21204,
573,
2225,
28069,
29889,
13,
13,
29933,
2749,
325,
29889,
897,
1524,
29892,
29871,
29896,
29945,
29946,
319,
29889,
29906,
29881,
29871,
29906,
29929,
29900,
29892,
29871,
29906,
29929,
29941,
313,
11868,
29889,
5670,
29889,
29871,
29896,
29929,
29945,
29929,
29897,
313,
7564,
7537,
800,
13,
13,
290,
4430,
467,
13,
13,
539,
2266,
29892,
278,
8656,
4086,
310,
278,
16224,
2088,
279,
424,
29891,
322,
278,
1913,
2760,
13,
13,
3410,
273,
259,
4059,
276,
882,
268,
12266,
259,
393,
259,
21265,
29880,
5465,
259,
443,
16122,
635,
259,
11324,
2347,
259,
738,
13,
13,
711,
6929,
304,
278,
10253,
30010,
29879,
9055,
297,
24555,
3277,
967,
10462,
411,
4880,
304,
13378,
30010,
29879,
13,
13,
4381,
373,
278,
18161,
274,
9813,
1934,
29889,
539,
16224,
2088,
279,
424,
29891,
29892,
29871,
29906,
29914,
29906,
29914,
29896,
29896,
29892,
472,
29871,
30497,
29871,
29906,
29936,
13,
13,
6833,
2760,
4309,
273,
4059,
276,
882,
29892,
29871,
29906,
29914,
29906,
29914,
29896,
29896,
29892,
472,
29871,
30497,
30497,
29871,
29929,
29889,
29896,
29892,
29871,
29929,
29889,
29896,
29896,
29889,
12808,
29892,
278,
5879,
654,
13,
13,
13,
462,
462,
539,
448,
29871,
29896,
29947,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
517,
4673,
3743,
694,
4759,
1860,
925,
9215,
263,
15997,
393,
278,
10253,
27320,
297,
13,
13,
14565,
263,
982,
408,
304,
11324,
573,
470,
11807,
278,
1661,
29899,
29893,
1794,
369,
25161,
29889,
539,
2261,
29878,
29892,
29871,
29896,
29945,
29946,
13,
13,
29909,
29889,
29906,
29881,
472,
29871,
29906,
29929,
29941,
29889,
1281,
27284,
29892,
591,
2313,
824,
694,
8405,
373,
607,
304,
29543,
278,
14260,
13,
13,
27845,
30010,
29879,
337,
6929,
310,
21265,
29880,
5465,
30010,
29879,
707,
9354,
295,
29914,
29893,
1794,
369,
26406,
29889,
13,
13,
418,
512,
670,
11582,
2228,
29892,
21265,
29880,
5465,
18066,
267,
278,
972,
616,
310,
670,
2186,
13,
13,
1753,
1947,
29901,
259,
450,
10253,
29892,
322,
5260,
21305,
408,
967,
29433,
29892,
2078,
3791,
278,
3148,
7698,
13,
13,
2543,
279,
424,
29891,
491,
3984,
276,
6338,
292,
278,
9079,
30010,
29879,
995,
322,
13378,
30010,
29879,
18161,
13,
13,
25129,
2264,
304,
278,
3148,
7698,
29889,
21265,
29880,
5465,
30010,
29879,
1771,
2575,
472,
29871,
29941,
29896,
29889,
7579,
304,
21265,
29880,
5465,
29892,
540,
13,
13,
392,
13378,
892,
13973,
304,
278,
3148,
7698,
1410,
279,
424,
29891,
1363,
278,
10253,
7436,
363,
13,
13,
386,
331,
373,
2306,
3131,
310,
13378,
322,
21265,
29880,
5465,
29936,
5480,
29892,
278,
14260,
8973,
604,
1127,
297,
13,
13,
535,
22368,
393,
21265,
29880,
5465,
1033,
451,
12020,
263,
2078,
496,
29899,
974,
29899,
1285,
1461,
26406,
29889,
5163,
29889,
13,
13,
418,
5260,
21305,
10049,
29879,
393,
21265,
29880,
5465,
425,
4684,
13407,
304,
4974,
263,
5995,
2729,
13,
13,
265,
278,
3148,
7698,
1410,
279,
424,
29891,
1363,
738,
4556,
310,
3158,
564,
5921,
714,
310,
278,
3148,
7698,
13,
13,
2543,
279,
424,
29891,
338,
1546,
278,
10253,
322,
278,
3148,
7698,
29936,
21265,
29880,
5465,
338,
451,
263,
4654,
29899,
22633,
13,
13,
1785,
1389,
1654,
653,
1090,
278,
3148,
7698,
1410,
279,
424,
29891,
29936,
278,
3148,
7698,
1410,
279,
424,
29891,
471,
5684,
13,
13,
22017,
1008,
284,
363,
278,
10253,
29936,
21265,
29880,
5465,
471,
451,
4023,
2168,
491,
738,
16831,
287,
2078,
496,
310,
13,
13,
1552,
3148,
7698,
1410,
279,
424,
29891,
29936,
322,
21265,
29880,
5465,
471,
278,
7601,
1410,
279,
424,
272,
373,
278,
8695,
29889,
13,
13,
29956,
284,
21305,
30010,
29879,
1771,
2575,
472,
29871,
29946,
29955,
29994,
29946,
29947,
29889,
13,
13,
418,
450,
14260,
8973,
30010,
29879,
9426,
19571,
29879,
5260,
21305,
30010,
29879,
24481,
29901,
13,
13,
9651,
4721,
2576,
262,
6275,
29892,
278,
518,
29883,
29962,
14316,
11486,
393,
30003,
13,
13,
462,
29871,
278,
5697,
654,
292,
6263,
367,
1503,
278,
6866,
1145,
310,
13,
462,
29871,
20811,
418,
8002,
29871,
10757,
1678,
304,
13,
462,
29871,
5960,
3656,
403,
967,
16831,
287,
822,
11259,
16088,
450,
13,
462,
29871,
822,
11259,
10425,
1818,
367,
2854,
6743,
29889,
29896,
29896,
13,
13,
462,
462,
1678,
448,
29871,
29896,
29929,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
462,
268,
29896,
29896,
13,
462,
539,
379,
351,
13323,
29891,
325,
29889,
383,
300,
1089,
29892,
29871,
29946,
29947,
29896,
319,
29889,
29906,
29881,
13,
462,
268,
29953,
29946,
29896,
29892,
29871,
29953,
29946,
29946,
313,
11868,
29889,
5670,
29889,
29871,
29896,
29929,
29947,
29946,
29897,
13,
462,
1678,
313,
7278,
25101,
19056,
467,
13,
13,
268,
8084,
29892,
278,
518,
29883,
29962,
14316,
4091,
25917,
278,
4309,
273,
3940,
2088,
9519,
29872,
30003,
29874,
13,
268,
1842,
8283,
491,
278,
10253,
30003,
3062,
1609,
278,
3148,
7698,
10816,
13,
268,
22688,
263,
11910,
310,
278,
24806,
1754,
491,
278,
10253,
304,
13378,
29889,
13,
268,
910,
1842,
5922,
408,
4477,
29901,
13,
13,
965,
297,
19220,
310,
278,
3907,
310,
278,
4967,
24806,
491,
13,
965,
278,
2038,
4257,
365,
1581,
313,
1552,
10253,
511,
278,
3303,
13,
965,
3900,
10317,
310,
27051,
545,
313,
30015,
3308,
7698,
30024,
511,
12359,
29884,
424,
13,
965,
304,
278,
2138,
17211,
630,
23354,
322,
390,
3631,
14650,
3185,
13,
965,
16088,
947,
1244,
1609,
8661,
393,
16088,
372,
674,
5146,
16088,
13,
13,
462,
350,
29889,
450,
518,
29933,
804,
29962,
16088,
13,
13,
462,
259,
29896,
29889,
3139,
6410,
15075,
7114,
491,
1316,
365,
1581,
373,
13,
462,
268,
278,
22688,
11910,
16088,
470,
13,
13,
462,
259,
29906,
29889,
450,
22688,
5882,
12862,
304,
13,
462,
268,
470,
12023,
491,
518,
10495,
533,
29962,
1090,
1497,
13,
462,
268,
11486,
30098,
29889,
29896,
29906,
13,
462,
268,
29896,
29906,
13,
462,
308,
4309,
273,
3940,
2088,
9519,
29872,
29892,
268,
8291,
1806,
3352,
13,
462,
1678,
6850,
1299,
2890,
5012,
26092,
13780,
8079,
319,
14345,
2965,
8647,
11499,
30003,
13,
462,
1678,
390,
4574,
1964,
259,
5012,
12064,
3927,
13427,
3919,
29892,
1222,
6335,
277,
29871,
29955,
310,
13,
462,
1678,
2174,
524,
2593,
5260,
21305,
30010,
29879,
1234,
304,
278,
13,
462,
1678,
5697,
654,
304,
1722,
278,
1970,
11517,
13,
462,
1678,
24284,
29889,
13,
13,
965,
910,
2821,
4086,
11308,
694,
7404,
29901,
308,
278,
4309,
273,
3940,
13,
268,
2088,
9519,
29872,
338,
263,
8078,
1546,
3148,
7698,
408,
1410,
279,
424,
272,
310,
278,
13,
268,
658,
550,
29892,
322,
278,
10253,
408,
301,
1581,
29901,
1286,
4150,
297,
738,
310,
278,
10701,
13,
268,
4475,
304,
445,
10804,
1033,
445,
518,
29883,
29962,
14316,
1284,
393,
21265,
29880,
5465,
13,
268,
471,
263,
6263,
304,
1316,
263,
8078,
29889,
3986,
15950,
7841,
393,
13,
268,
21265,
29880,
5465,
471,
451,
263,
6263,
304,
278,
4309,
273,
3940,
2088,
9519,
29872,
29892,
445,
8973,
13,
268,
6124,
635,
11486,
393,
1090,
16636,
4307,
30003,
13,
13,
462,
297,
263,
5995,
363,
2078,
496,
310,
8078,
29892,
278,
2174,
524,
2593,
13,
462,
1818,
16831,
287,
393,
727,
471,
263,
8078,
29892,
278,
13,
462,
822,
5818,
2078,
3791,
372,
29892,
322,
2174,
524,
2593,
17654,
13,
462,
5625,
1179,
515,
278,
2078,
496,
29889,
29896,
29941,
13,
13,
13,
462,
462,
259,
448,
29871,
29906,
29900,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
462,
539,
29896,
29941,
13,
462,
308,
8565,
957,
10253,
325,
29889,
624,
2707,
29874,
29892,
29871,
29941,
29941,
13,
462,
418,
319,
29889,
29941,
29881,
29871,
29947,
29906,
29892,
29871,
29947,
29955,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29896,
29896,
29897,
13,
462,
418,
17288,
7278,
25101,
2441,
467,
29962,
13,
13,
9651,
512,
445,
1206,
29892,
21265,
29880,
5465,
1122,
451,
1083,
327,
873,
4974,
393,
540,
13,
418,
471,
263,
6263,
304,
278,
4309,
273,
3940,
2088,
9519,
29872,
17327,
29892,
1235,
7432,
13,
418,
393,
540,
338,
263,
2174,
524,
2593,
23437,
304,
4974,
727,
5062,
263,
2078,
496,
29899,
974,
29899,
13,
418,
8078,
5995,
29889,
1152,
445,
2769,
29892,
372,
338,
21265,
29880,
5465,
1058,
756,
694,
13,
418,
13407,
304,
4974,
393,
278,
4309,
273,
3940,
2088,
9519,
29872,
471,
2078,
3791,
13,
418,
491,
278,
10253,
29889,
1094,
263,
1121,
29892,
21265,
29880,
5465,
1122,
451,
19104,
373,
445,
13,
418,
2980,
304,
8340,
403,
278,
12827,
515,
278,
10253,
304,
5260,
21305,
29889,
13,
418,
21265,
29880,
5465,
756,
5229,
304,
11460,
278,
6866,
1145,
310,
20811,
263,
8002,
29892,
13,
418,
2854,
26406,
297,
869,
869,
869,
518,
1366,
29962,
18766,
304,
278,
1970,
11517,
24284,
29892,
13,
418,
322,
363,
445,
2769,
278,
869,
869,
869,
18766,
338,
22225,
29889,
13,
13,
11442,
272,
392,
398,
6461,
262,
291,
29892,
29871,
29955,
29914,
29955,
29914,
29896,
29953,
29892,
472,
29871,
29946,
29994,
29945,
313,
13492,
20476,
322,
697,
3661,
6812,
13,
13,
290,
4430,
467,
13,
13,
418,
3251,
635,
29892,
263,
1410,
279,
424,
272,
947,
451,
505,
13407,
304,
12991,
363,
2078,
496,
310,
278,
13,
13,
1285,
1461,
304,
607,
540,
471,
451,
263,
6263,
29889,
4706,
4831,
536,
6780,
820,
310,
2292,
6669,
325,
29889,
13,
13,
2182,
392,
295,
1632,
29886,
29889,
9266,
1696,
29871,
29953,
29945,
29945,
319,
29889,
29906,
29881,
29871,
29953,
29900,
29953,
29892,
29871,
29953,
29900,
29947,
313,
11868,
29889,
5670,
29889,
29871,
29896,
29929,
29929,
29945,
29897,
313,
30015,
29961,
29909,
29962,
29880,
3592,
278,
13,
13,
22187,
8794,
278,
8078,
1546,
278,
13361,
537,
322,
10586,
442,
29994,
29950,
1398,
29892,
372,
1258,
13,
13,
578,
871,
408,
263,
1410,
279,
424,
272,
29889,
268,
739,
7470,
304,
502,
16088,
393,
278,
9820,
820,
471,
451,
263,
13,
13,
22633,
304,
278,
8078,
3178,
467,
1678,
1346,
1762,
367,
5545,
263,
4654,
29899,
22633,
7795,
1654,
653,
297,
13,
13,
29925,
264,
14912,
423,
372,
338,
5181,
304,
1510,
1716,
13973,
304,
278,
8078,
750,
385,
13,
13,
14029,
304,
14169,
278,
4654,
6263,
1549,
278,
8078,
322,
1258,
29892,
297,
2114,
29892,
13,
13,
4548,
4019,
368,
12266,
445,
7609,
297,
278,
8078,
3178,
21375,
402,
29889,
2443,
600,
29891,
669,
5791,
29892,
9266,
29889,
325,
29889,
13,
13,
29907,
277,
466,
575,
10253,
310,
16636,
29892,
29871,
29955,
319,
29889,
29941,
29881,
29871,
29906,
29955,
29947,
29892,
29871,
29906,
29947,
29947,
313,
11868,
29889,
5670,
29889,
29871,
29906,
29900,
29896,
29900,
467,
13,
13,
418,
512,
3578,
310,
278,
4307,
2038,
29892,
1749,
9076,
310,
278,
2407,
11286,
278,
14260,
13,
13,
27845,
30010,
29879,
1284,
886,
29889,
259,
21265,
29880,
5465,
471,
451,
263,
6263,
304,
278,
3148,
7698,
1410,
279,
424,
29891,
29892,
3643,
263,
13,
13,
22585,
29899,
22633,
7795,
1654,
653,
310,
372,
29936,
540,
471,
263,
1410,
279,
424,
272,
310,
13378,
30010,
29879,
18161,
13,
13,
462,
462,
1678,
448,
29871,
29906,
29896,
448,
13,
15,
29967,
29899,
29909,
29900,
29953,
29900,
29906,
29929,
29899,
29896,
29955,
13,
13,
13,
546,
13390,
1090,
278,
1913,
2760,
4309,
273,
4059,
276,
882,
29889,
1094,
1316,
29892,
21265,
29880,
5465,
425,
4684,
13,
13,
11235,
304,
4974,
263,
2078,
496,
29899,
974,
29899,
1285,
1461,
5995,
2750,
278,
10253,
2729,
373,
278,
13,
13,
3308,
7698,
1410,
279,
424,
29891,
29889,
418,
1281,
27284,
29892,
591,
2313,
824,
694,
633,
1509,
310,
278,
14260,
8973,
30010,
29879,
13,
13,
2218,
4838,
291,
297,
972,
5414,
278,
5879,
654,
304,
4673,
2729,
373,
21265,
29880,
5465,
30010,
29879,
2778,
277,
2222,
13,
13,
1753,
1947,
29889,
13,
13,
268,
8170,
2756,
381,
2168,
29889,
13,
13,
29967,
566,
19422,
9041,
287,
29889,
13,
13,
13,
13,
13,
26473,
561,
360,
29889,
922,
1026,
948,
29892,
382,
3044,
29889,
13,
1184,
386,
265,
327,
653,
13,
13,
13,
13,
2539,
29901,
29871,
29953,
29914,
29906,
29906,
29914,
29906,
29900,
29896,
29955,
13,
13,
13,
13,
13,
462,
462,
259,
448,
29871,
29906,
29906,
448,
13,
15
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
From our farm to your spoon!
Fuel your day with flax
Two tablespoons is all it takes. With golden roasted flax in seed, milled and flavoured milled varieties, it’s easy to eat CanMar Flax every day. Because our flax is roasted, it’s ready to eat, so all you need to do is add it to your breakfast in the morning. Try it on your yogurt, in a smoothie, or sprinkled over your cereal.
Highest quality wholesale flax
CanMar Foods bulk roasted flaxseed products have a wide range of applications as an ingredient. Whether you need bulk whole seed or custom milled roasted flaxseed, CanMar offers a product that is the right fit for your operation. | [
1,
3645,
1749,
17888,
304,
596,
805,
6150,
29991,
13,
13,
29943,
2491,
596,
2462,
411,
17422,
29916,
13,
13,
13985,
6131,
1129,
787,
338,
599,
372,
4893,
29889,
2973,
22843,
696,
28470,
17422,
29916,
297,
16717,
29892,
2316,
839,
322,
21054,
14076,
2316,
839,
1197,
20850,
29892,
372,
30010,
29879,
4780,
304,
17545,
1815,
7083,
383,
21222,
1432,
2462,
29889,
7311,
1749,
17422,
29916,
338,
696,
28470,
29892,
372,
30010,
29879,
7960,
304,
17545,
29892,
577,
599,
366,
817,
304,
437,
338,
788,
372,
304,
596,
26044,
297,
278,
7250,
29889,
3967,
372,
373,
596,
343,
468,
4227,
29892,
297,
263,
10597,
347,
29892,
470,
7689,
682,
839,
975,
596,
274,
406,
284,
29889,
13,
13,
16382,
342,
11029,
377,
6544,
744,
17422,
29916,
13,
13,
6028,
7083,
25453,
29879,
21610,
696,
28470,
17422,
29916,
26776,
9316,
505,
263,
9377,
3464,
310,
8324,
408,
385,
2348,
1127,
993,
29889,
26460,
366,
817,
21610,
3353,
16717,
470,
2888,
2316,
839,
696,
28470,
17422,
29916,
26776,
29892,
1815,
7083,
16688,
263,
3234,
393,
338,
278,
1492,
6216,
363,
596,
5858,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Dnspython Manual
================
.. toctree::
:maxdepth: 2
:caption: Contents:
name
rdata
message
query
resolver
zone
dnssec
async
exceptions
utilities
typing
| [
1,
360,
29876,
1028,
1656,
2315,
950,
13,
9166,
13,
13,
636,
304,
312,
929,
1057,
13,
259,
584,
3317,
19488,
29901,
29871,
29906,
13,
259,
584,
6671,
29901,
2866,
1237,
29901,
13,
13,
259,
1024,
13,
259,
364,
1272,
13,
259,
2643,
13,
259,
2346,
13,
259,
3770,
369,
13,
259,
10640,
13,
259,
270,
1983,
3471,
13,
259,
7465,
13,
259,
15283,
13,
259,
3667,
1907,
13,
259,
19229,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
(CNN)Usaamah Rahim, who was fatally shot after waving a military knife at law enforcement officers in Boston, was originally plotting to behead Pamela Geller, an activist and conservative blogger, law enforcement sources told CNN on Wednesday.
But Rahim, a 26-year-old security guard who officials believe was radicalized by ISIS and other extremists, decided instead to target the “boys in blue,” a reference to police, according to court documents.
Mr. Toot is silent because he wishes that Rahim’s plan against Pam Geller succeeded.
Update: I am not claiming anything, I am only asking a question. I wonder if Mr. Toot either directly or indirectly influenced Rahim with his obsession with Pam Geller. Is it possible Rahim was a poster at LGF?
I think the peen is endangered, and she’s just waiting the prescribed period of time (1 year) before sending L’il Bruce to the guillotine. I think it’s a mistake, regardless of whether Cait is happy in her new female guise or not. Those fake vajayjays are problematic — I read an article about it, the other day. Prone to infection and odor. Not great for sex. SAVE THE PENIS PENIS PENIS LOL!!
Nice win for the ‘Hawks, btw. They really turned it up, when it was go time. I think they won the series tonight, as dumb as that sounds. Took over home-ice advantage, and delivered a crushing, late-game defeat. Bolts are in deep dookie.
Ace has it right. All these post-modern pussy men who are applauding Bruce Jenner’s sickness should be asked, “since you profess that Bruce is now truly a woman, would you go out with him? And by going out with him, would you make out with him? Would let him give you a blowjob? Would you fuck him?” Get them on the record as to how much they truly believe he’s now a woman and how much of this is just pandering to the braying mob.
No, no, no. You don’t have to want to fuck her, to play along and let her be a femme fatale if that’s her life-long dream, as she claims. Live and let live, I say. There are stranger things in this world, than a tranny with a bully pulpit. All this publicity will die down in due time, and she’ll be a late-60’s granny, wondering when the heart attack or cancer is going to come a-callin’. God be with her.
In the meantime, she may not be my cup of tea, but she already has one normal dude interested. The most normalest man I know, in fact. The Worm. 😆
And of course the terrorist’s devout yet “moderate” (since he doesn’t murder people) Muslim brother immediately tries to frame the cops, never mind the facts nor the timeline that do not fit his version. This should be a crime in itself.
I know…I was so disgusted by Chunky’s “discussion” of the Duggar family nightmare on Twitter last night, I just tuned out. An old fat bastard with no kids can easily pass judgement on a family (an admittedly-odd one, to be sure) trying to deal with a heinous development with their eldest son. I suppose they were supposed to have him arrested and charged immediately, instead of trying to deal with it through prayer and counseling, which didn’t work at first, but then did. From all indications, it stopped.
It’s unusual for pedophiles to stop molesting, and if Josh has stopped completely and permanently, it’s almost a miracle. But what would you do, in Dad Duggar’s situation, and owning his religion-based mindset? Shoot the kid, I guess. Or have him put away, removed from the family forever. I don’t know what I’d have done, but I know I would have protected my young girls better. I hope so.
Chunky went way beyond anything rational, calling the Duggars lunatic criminals, basically. He always projects, so we’re getting more than hint of some deep, dark problems in his own psyche.
I’m blocked by him (and yet I’ve never tweeted him – what are you afraid of GUS?) so I don’t know his follower count but it was pretty dismal the last time I looked. If you’re just a regular Joe on Twitter, a “healthy” account has a follower count that is 10% the number of your total tweets. Gus’s follower count should be 21,700 and I think it’s something like 2,000 – which isn’t even 1% of his total tweets.
This is a very multicultural segment of Kenny Rogers that would please the SJWs. Mr. Toot would be pleased that the one person with a southern accent in the skit is a complete drunken imbecile. Because that’s how he really views southerners.
I believe in my heart Fuckface does NOT want Pammmmmmm killed. However, he will obsess over it on Twitter hoping for blog hits if it happens. He doesn’t want death but will use it as best he can to further spread his message of leftist hate. Fucking POS.
If, god forbid, Pam gets it from some muzzie scum, Charles will spend weeks, months perhaps, issuing “but”-laden posts and tweets. “Yeah, she didn’t deserve to die, but…” Then he’ll scream persecution when people correctly point out that his “buts” make it sound like he’s not entirely against what happened.
Actually, Mr. Toot is a story of zen. The little kid at the end, the guy with the tall hat in the middle, and the old man with the “bum bum bu” at the beginning are all the same guy, at different times in his life. The old man is aware of his screw up, so all he remembers is the rhythm that made him famous.
Looks like Duggar is the new Ginger. Never heard of the family, the show or their particular Christian “sect” except from Mr. Toot’s Tweets. In addition to too much Tweeting it looks like the Fat Man also watches too much reality TV.
The only reality TV I watch are two shows about life in Alaska. The one about the Kilcher family and the other one called Life Below Zero. It’s fascinating how they survive up there.
he Duggars have obviously been advised to tie this into the “Christian persecution” meme Fox has been pushing for years.
12 hours ago
And the whole time Michelle Duggar is gazing adoringly at Jim Bob.
12 hours ago
Megyn Kelly: “So you do not view Josh as a pedophile?” The Duggars: “No! No.”
12 hours ago
Mr. Toot seemingly can’t understand that a loving couple wouldn’t view their own son as a heinous criminal “pedophile” and wouldn’t turn him to the police to go to jail possibly for life. What a fucking idiot.
“It was after that third time he came to us, is where we really felt like ‘you know what? We have done everything we can as parents to handle this in-house. We need to get help,'” he said.
Asked why the police weren’t called right away, Duggar said the family wanted to handle the matter themselves, that they watched the teen and put in place safeguards to protect the girls, and took comfort in the fact that the boy came forward with the confessions on his own.
After the treatment, “he went and asked God to forgive him, he went back and asked those that he had offended to forgive him,” Duggar said. “We felt like the last jurisdiction of who he needed to make things right with was the law.”
It’s pretty obvious Mr. Toot heard this explanation and rejected it outright. He would have hated this family either way because they’re devout Christians and he’s an anti-Christian bigot..
“An independent politician since 1979, Sanders is a self-described democratic socialist[1][2][3][4] who favors the creation of employee-owned cooperative enterprises[5][6] and has praised Scandinavian-style social democracy.[7][8][9] He caucuses with the Democratic Party and is counted as a Democrat for purposes of committee assignments.”
I wonder if suddenly Johnson is starting to worry that indeed his constant taunting and smearing of Pam is going to indeed come back to haunt him, and that people start letting HIM know that his childish nastiness and need for attention had some very real consequences.
At which point I’m sure we will all be treated to the evil stalkers and extreme right-wing haters that try to keep him from speaking the truth and he wasn’t wrong and it’s not his fault people do this (while of course, in the case of people on the other side, no such deflection is permitted) so, you know, eff off and all that. Oh, and I’m sure the Rodan audio will pop up.
Heck, I’d give it to that jerk Greenwald if I thought he’d use it. Maybe Jim Hoft. Because I can’t wait to see the back-pedaling the ex-cyclist is going to do if terror scum is one of his followers.
Because remember the rules of LGF folks — if YOU allow evil people to follow you, YOU are responsible for them and it makes YOU one of them too.
In their Orwellian pigpen, a Jewish freedom fighter like Geller is equivalent to a Klansman. Makes perfect sense, once you understand their world-view. A week of closely monitoring Chunky’s output on Twitter is enough education on modern Lefturd dumbth, for anyone.
The show’s much more entertaining stand-in for climate change is the White Walkers, the North-of-the-Wall monsters that command a gigantic zombie army.
The White Walkers are a threat to all humanity: their zombie minions are equally happy to rip apart people of all nations and noble houses. Yet instead of uniting to combat the shared threat to human existence itself, the noble houses in the show spend basically all their time on their own petty disagreements and struggle for power. White Walkers are generally ignored; some nobles deny their existence is outright denied.
Swap climate change for White Walkers, and “countries” for noble houses, and it starts to sound a lot like the real world.
Specifically, it sounds like the problem of international coordination on climate change. No one country can prevent catastrophic warming on its own: every country that’s a major greenhouse gas emitter is part of the problem.
When asked….George R.R. Martin, author of a Song of Ice and Fire, said, “uh, no it isn’t.”
And Vox, if you’re going to play around with Game of Thrones, get the effing terminology correct, because it’s an insult to those of us who have read the books and the people who really enjoy the series that you aren’t even respectful enough of the work to do your homework.
Just had a look at another one of your tweets Barry (see above). Wow. You are predictable as the rising sun…. hating on your favorite people, jealous of their successes…. always the pettiness and vitriole we can expect from Barrrrry….
sooner or later they will get to Geller. It’s a sad reality.
I hope they don’t but they don’t give up and you can’t be protected from these people at all times especially when they are willing and eager to be taken out in the process.
and when they do get her, I hope the feds visit mr green footballs and charge him for inciting
Megyn: “Would you explain what you wrote here on your blog and on Twitter… ”
Toot: “I never said that! You’re putting words in my mouth!”
Megyn: “it’s right HERE on the front page of your blog…”
Toot: “you’re taking it out of context, I wasn’t saying what you said! Typical Fox News lies!”
Megyn” “Mr Johnson, you’re not very bright are you…”
Later on Twitter and LGF: “Watch as I totally own Megyn Kelly and expose Fox News lies!”
I admire Pam for her courage to stick her thumb in the eye of muzzies and the MSM, I repeat myself. Without citizens like Pam, America would allow creeping sharia – which ain’t gonna happen! I hope. That said, I understand why Fuckface would want to see her boobi,,,, ya know.
He’s showing more effects of the bike accident, and divorce, each and every day. My hope is that he’s as miserable as it appears. Drinking out of the wrong Dew bottle doesn’t help, lol.
Wow Barry, looks like you forgot the First Amendment of the Constitution old man!
You see, around here, we are ENTITLED to say what we think whether everyone agrees with it, or not.
And, you see dear loser, that those who disagree with something that a person says do not then have a right to cut off her head.
Not around here.
And, just as a friendly reminder…. if you don’t like it here, you are FREE to leave. That’s right! You can pull up stakes and head for some Third World Hell Hole if you don’t like it here. Why, over there – where ever you choose – you will find EVERYONE to be WAY MORE TOLERANT of YOUR opinion and point of view.
And, oh yeah Barry, you should have had the shit kicked out of you at least once as a young man – you would hold a much healthier attitude now about yourself versus the world if you had. You see, Barry, you really are a nobody but you never learned that. There you are day after day thumping your chest believing you are a pace setting “warrior”. | [
1,
313,
29907,
10262,
29897,
29965,
4977,
314,
801,
16790,
326,
29892,
1058,
471,
9950,
635,
10322,
1156,
281,
5555,
263,
9121,
889,
1607,
472,
4307,
24555,
13561,
13049,
297,
12115,
29892,
471,
10437,
6492,
1259,
304,
367,
2813,
25281,
3100,
402,
4539,
29892,
385,
5039,
391,
322,
8976,
1230,
12618,
914,
29892,
4307,
24555,
13561,
8974,
5429,
29696,
373,
15050,
4515,
3250,
29889,
13,
13,
6246,
16790,
326,
29892,
263,
29871,
29906,
29953,
29899,
6360,
29899,
1025,
6993,
8372,
1058,
24921,
4658,
471,
24818,
1891,
491,
8519,
3235,
322,
916,
9413,
2879,
29892,
8459,
2012,
304,
3646,
278,
1346,
833,
952,
297,
7254,
3995,
263,
3407,
304,
10974,
29892,
5034,
304,
8973,
10701,
29889,
13,
13,
20335,
29889,
1763,
327,
338,
17436,
1363,
540,
28688,
393,
16790,
326,
30010,
29879,
3814,
2750,
25281,
402,
4539,
14792,
29889,
13,
13,
6422,
29901,
306,
626,
451,
5995,
292,
3099,
29892,
306,
626,
871,
6721,
263,
1139,
29889,
306,
4997,
565,
3237,
29889,
1763,
327,
2845,
4153,
470,
26377,
368,
28482,
16790,
326,
411,
670,
704,
7924,
411,
25281,
402,
4539,
29889,
1317,
372,
1950,
16790,
326,
471,
263,
10368,
472,
365,
29954,
29943,
29973,
13,
13,
29902,
1348,
278,
1236,
264,
338,
1095,
4600,
287,
29892,
322,
1183,
30010,
29879,
925,
10534,
278,
2225,
23059,
3785,
310,
931,
313,
29896,
1629,
29897,
1434,
9348,
365,
30010,
309,
18885,
304,
278,
1410,
453,
327,
457,
29889,
306,
1348,
372,
30010,
29879,
263,
10171,
29892,
17126,
310,
3692,
315,
1249,
338,
9796,
297,
902,
716,
12944,
1410,
895,
470,
451,
29889,
16025,
25713,
325,
1175,
388,
29926,
1036,
526,
1108,
2454,
813,
306,
1303,
385,
4274,
1048,
372,
29892,
278,
916,
2462,
29889,
1588,
650,
304,
297,
20309,
322,
2413,
272,
29889,
2216,
2107,
363,
7916,
29889,
317,
7520,
29923,
6093,
349,
1430,
3235,
349,
1430,
3235,
349,
1430,
3235,
365,
5607,
6824,
13,
13,
29940,
625,
5401,
363,
278,
5129,
29950,
1450,
2039,
29892,
289,
7516,
29889,
2688,
2289,
6077,
372,
701,
29892,
746,
372,
471,
748,
931,
29889,
306,
1348,
896,
2113,
278,
3652,
15243,
523,
29892,
408,
270,
3774,
408,
393,
10083,
29889,
1763,
554,
975,
3271,
29899,
625,
10631,
29892,
322,
20115,
263,
2181,
21616,
29892,
5683,
29899,
11802,
20653,
29889,
8922,
1372,
526,
297,
6483,
437,
554,
347,
29889,
13,
13,
29909,
346,
756,
372,
1492,
29889,
2178,
1438,
1400,
29899,
1545,
824,
282,
1558,
29891,
1757,
1058,
526,
623,
433,
566,
292,
18885,
21116,
1089,
30010,
29879,
17319,
2264,
881,
367,
4433,
29892,
1346,
16076,
366,
25718,
393,
18885,
338,
1286,
19781,
263,
6114,
29892,
723,
366,
748,
714,
411,
1075,
29973,
1126,
491,
2675,
714,
411,
1075,
29892,
723,
366,
1207,
714,
411,
1075,
29973,
10878,
1235,
1075,
2367,
366,
263,
13031,
9057,
29973,
10878,
366,
285,
2707,
1075,
6677,
3617,
963,
373,
278,
2407,
408,
304,
920,
1568,
896,
19781,
4658,
540,
30010,
29879,
1286,
263,
6114,
322,
920,
1568,
310,
445,
338,
925,
282,
392,
3241,
304,
278,
289,
764,
292,
22458,
29889,
13,
13,
3782,
29892,
694,
29892,
694,
29889,
887,
1016,
30010,
29873,
505,
304,
864,
304,
285,
2707,
902,
29892,
304,
1708,
3412,
322,
1235,
902,
367,
263,
15096,
285,
532,
280,
565,
393,
30010,
29879,
902,
2834,
29899,
5426,
12561,
29892,
408,
1183,
16726,
29889,
10782,
322,
1235,
5735,
29892,
306,
1827,
29889,
1670,
526,
26507,
2712,
297,
445,
3186,
29892,
1135,
263,
534,
14763,
411,
263,
8227,
368,
9505,
23600,
29889,
2178,
445,
970,
537,
674,
762,
1623,
297,
2861,
931,
29892,
322,
1183,
30010,
645,
367,
263,
5683,
29899,
29953,
29900,
30010,
29879,
3803,
1460,
29892,
9873,
746,
278,
5192,
5337,
470,
23900,
338,
2675,
304,
2041,
263,
29899,
4804,
262,
30010,
29889,
4177,
367,
411,
902,
29889,
13,
13,
797,
278,
6839,
603,
29892,
1183,
1122,
451,
367,
590,
18002,
310,
23429,
29892,
541,
1183,
2307,
756,
697,
4226,
868,
311,
8852,
29889,
450,
1556,
4226,
342,
767,
306,
1073,
29892,
297,
2114,
29889,
450,
399,
555,
29889,
29871,
243,
162,
155,
137,
13,
13,
2855,
310,
3236,
278,
15115,
391,
30010,
29879,
2906,
449,
3447,
1346,
1545,
261,
403,
30024,
313,
16076,
540,
1838,
30010,
29873,
13406,
2305,
29897,
23772,
8099,
7389,
14335,
304,
3515,
278,
274,
3554,
29892,
2360,
3458,
278,
17099,
3643,
278,
5335,
5570,
393,
437,
451,
6216,
670,
1873,
29889,
910,
881,
367,
263,
17268,
297,
3528,
29889,
13,
13,
29902,
1073,
30098,
29902,
471,
577,
766,
29887,
16656,
491,
678,
2960,
29891,
30010,
29879,
1346,
26404,
30024,
310,
278,
360,
688,
5397,
3942,
4646,
29885,
598,
373,
20147,
1833,
4646,
29892,
306,
925,
18515,
287,
714,
29889,
530,
2030,
9950,
21156,
538,
411,
694,
413,
4841,
508,
5948,
1209,
6577,
29887,
882,
373,
263,
3942,
313,
273,
20186,
368,
29899,
22861,
697,
29892,
304,
367,
1854,
29897,
1811,
304,
5376,
411,
263,
540,
262,
681,
5849,
411,
1009,
560,
7854,
1487,
29889,
306,
7755,
896,
892,
7424,
304,
505,
1075,
24383,
322,
20139,
7389,
29892,
2012,
310,
1811,
304,
5376,
411,
372,
1549,
27402,
322,
2613,
2838,
292,
29892,
607,
3282,
30010,
29873,
664,
472,
937,
29892,
541,
769,
1258,
29889,
3645,
599,
4221,
800,
29892,
372,
11084,
29889,
13,
13,
3112,
30010,
29879,
22910,
363,
8939,
3021,
5475,
304,
5040,
6062,
342,
292,
29892,
322,
565,
22838,
756,
11084,
6446,
322,
9410,
2705,
29892,
372,
30010,
29879,
4359,
263,
3737,
10792,
29889,
1205,
825,
723,
366,
437,
29892,
297,
360,
328,
360,
688,
5397,
30010,
29879,
6434,
29892,
322,
8152,
1076,
670,
13433,
29899,
6707,
3458,
842,
29973,
17550,
327,
278,
26397,
29892,
306,
4140,
29889,
1394,
505,
1075,
1925,
3448,
29892,
6206,
515,
278,
3942,
22296,
29889,
306,
1016,
30010,
29873,
1073,
825,
306,
30010,
29881,
505,
2309,
29892,
541,
306,
1073,
306,
723,
505,
6364,
590,
4123,
14000,
2253,
29889,
306,
4966,
577,
29889,
13,
13,
1451,
2960,
29891,
3512,
982,
8724,
3099,
17903,
29892,
5432,
278,
360,
12981,
1503,
25081,
2454,
15116,
19016,
29892,
8830,
29889,
940,
2337,
9279,
29892,
577,
591,
30010,
276,
2805,
901,
1135,
13182,
310,
777,
6483,
29892,
6501,
4828,
297,
670,
1914,
6529,
29891,
1173,
29889,
13,
13,
29902,
30010,
29885,
24370,
491,
1075,
313,
392,
3447,
306,
30010,
345,
2360,
7780,
300,
287,
1075,
785,
825,
526,
366,
13421,
310,
402,
3308,
7897,
577,
306,
1016,
30010,
29873,
1073,
670,
1101,
261,
2302,
541,
372,
471,
5051,
766,
5156,
278,
1833,
931,
306,
5148,
29889,
960,
366,
30010,
276,
925,
263,
4943,
11131,
373,
20147,
29892,
263,
1346,
354,
4298,
29891,
30024,
3633,
756,
263,
1101,
261,
2302,
393,
338,
29871,
29896,
29900,
29995,
278,
1353,
310,
596,
3001,
7780,
1691,
29889,
402,
375,
30010,
29879,
1101,
261,
2302,
881,
367,
29871,
29906,
29896,
29892,
29955,
29900,
29900,
322,
306,
1348,
372,
30010,
29879,
1554,
763,
29871,
29906,
29892,
29900,
29900,
29900,
785,
607,
3508,
30010,
29873,
1584,
29871,
29896,
29995,
310,
670,
3001,
7780,
1691,
29889,
13,
13,
4013,
338,
263,
1407,
1773,
3953,
3631,
10768,
310,
10015,
1460,
9272,
414,
393,
723,
3113,
278,
317,
29967,
29956,
29879,
29889,
3237,
29889,
1763,
327,
723,
367,
22301,
393,
278,
697,
2022,
411,
263,
14841,
1035,
296,
297,
278,
2071,
277,
338,
263,
4866,
270,
3389,
1717,
527,
915,
21873,
29889,
7311,
393,
30010,
29879,
920,
540,
2289,
8386,
14841,
414,
29889,
13,
13,
29902,
4658,
297,
590,
5192,
383,
2707,
2161,
947,
6058,
864,
25281,
4317,
4317,
4317,
9445,
29889,
2398,
29892,
540,
674,
20881,
404,
975,
372,
373,
20147,
17231,
363,
12618,
19572,
565,
372,
5930,
29889,
940,
1838,
30010,
29873,
864,
4892,
541,
674,
671,
372,
408,
1900,
540,
508,
304,
4340,
9677,
670,
2643,
310,
2175,
391,
26277,
29889,
383,
2707,
292,
349,
3267,
29889,
13,
13,
3644,
29892,
7339,
19752,
333,
29892,
25281,
4947,
372,
515,
777,
23948,
3914,
885,
398,
29892,
5322,
674,
18864,
11405,
29892,
7378,
6060,
29892,
17759,
292,
1346,
4187,
30024,
29899,
4528,
264,
11803,
322,
7780,
1691,
29889,
1346,
29979,
29872,
801,
29892,
1183,
3282,
30010,
29873,
553,
7143,
304,
762,
29892,
541,
30098,
30024,
1987,
540,
30010,
645,
885,
1633,
639,
3471,
918,
746,
2305,
5149,
1298,
714,
393,
670,
1346,
4187,
29879,
30024,
1207,
372,
6047,
763,
540,
30010,
29879,
451,
9186,
2750,
825,
9559,
29889,
13,
13,
2865,
1474,
29892,
3237,
29889,
1763,
327,
338,
263,
5828,
310,
503,
264,
29889,
450,
2217,
26397,
472,
278,
1095,
29892,
278,
1410,
29891,
411,
278,
15655,
3056,
297,
278,
7256,
29892,
322,
278,
2030,
767,
411,
278,
1346,
2404,
289,
398,
1321,
30024,
472,
278,
6763,
526,
599,
278,
1021,
1410,
29891,
29892,
472,
1422,
3064,
297,
670,
2834,
29889,
450,
2030,
767,
338,
9543,
310,
670,
885,
3973,
701,
29892,
577,
599,
540,
1083,
13415,
338,
278,
18178,
29265,
393,
1754,
1075,
13834,
29889,
13,
13,
14959,
29879,
763,
360,
688,
5397,
338,
278,
716,
402,
5621,
29889,
12391,
6091,
310,
278,
3942,
29892,
278,
1510,
470,
1009,
3153,
6111,
1346,
8803,
30024,
5174,
515,
3237,
29889,
1763,
327,
30010,
29879,
27637,
1691,
29889,
512,
6124,
304,
2086,
1568,
27637,
15133,
372,
3430,
763,
278,
383,
271,
2315,
884,
6505,
267,
2086,
1568,
16832,
5648,
29889,
13,
13,
1576,
871,
16832,
5648,
306,
6505,
526,
1023,
3697,
1048,
2834,
297,
838,
16191,
29889,
450,
697,
1048,
278,
12400,
4630,
3942,
322,
278,
916,
697,
2000,
4634,
13866,
28933,
29889,
739,
30010,
29879,
21028,
262,
1218,
920,
896,
10503,
573,
701,
727,
29889,
13,
13,
354,
360,
12981,
1503,
505,
12879,
1063,
594,
11292,
304,
22134,
445,
964,
278,
1346,
18687,
713,
639,
3471,
918,
30024,
286,
2004,
14802,
756,
1063,
27556,
363,
2440,
29889,
13,
29896,
29906,
6199,
8020,
13,
2855,
278,
3353,
931,
3375,
1808,
360,
688,
5397,
338,
12642,
292,
594,
8253,
368,
472,
8507,
7991,
29889,
13,
29896,
29906,
6199,
8020,
13,
29924,
387,
948,
21872,
29901,
1346,
6295,
366,
437,
451,
1776,
22838,
408,
263,
8939,
3021,
488,
6677,
450,
360,
12981,
1503,
29901,
1346,
3782,
29991,
1939,
3178,
13,
29896,
29906,
6199,
8020,
13,
13,
20335,
29889,
1763,
327,
2833,
11687,
508,
30010,
29873,
2274,
393,
263,
12355,
292,
7303,
7656,
30010,
29873,
1776,
1009,
1914,
1487,
408,
263,
540,
262,
681,
22161,
1346,
9795,
3021,
488,
30024,
322,
7656,
30010,
29873,
2507,
1075,
304,
278,
10974,
304,
748,
304,
432,
737,
10075,
363,
2834,
29889,
1724,
263,
285,
2707,
292,
1178,
24414,
29889,
13,
13,
30015,
3112,
471,
1156,
393,
4654,
931,
540,
2996,
304,
502,
29892,
338,
988,
591,
2289,
7091,
763,
5129,
6293,
1073,
825,
29973,
1334,
505,
2309,
4129,
591,
508,
408,
11825,
304,
4386,
445,
297,
29899,
8697,
29889,
1334,
817,
304,
679,
1371,
5501,
30024,
540,
1497,
29889,
13,
13,
29909,
808,
287,
2020,
278,
10974,
2949,
264,
30010,
29873,
2000,
1492,
3448,
29892,
360,
688,
5397,
1497,
278,
3942,
5131,
304,
4386,
278,
4383,
6053,
29892,
393,
896,
20654,
278,
734,
264,
322,
1925,
297,
2058,
9437,
24024,
3163,
304,
12566,
278,
14000,
29892,
322,
3614,
13016,
297,
278,
2114,
393,
278,
8023,
2996,
6375,
411,
278,
1970,
10964,
373,
670,
1914,
29889,
13,
13,
13555,
278,
14502,
29892,
1346,
354,
3512,
322,
4433,
4177,
304,
18879,
573,
1075,
29892,
540,
3512,
1250,
322,
4433,
1906,
393,
540,
750,
1283,
2760,
304,
18879,
573,
1075,
3995,
360,
688,
5397,
1497,
29889,
1346,
4806,
7091,
763,
278,
1833,
24894,
29467,
310,
1058,
540,
4312,
304,
1207,
2712,
1492,
411,
471,
278,
4307,
3178,
13,
13,
3112,
30010,
29879,
5051,
6924,
3237,
29889,
1763,
327,
6091,
445,
8252,
322,
22225,
372,
714,
1266,
29889,
940,
723,
505,
298,
630,
445,
3942,
2845,
982,
1363,
896,
30010,
276,
2906,
449,
27353,
322,
540,
30010,
29879,
385,
9418,
29899,
18687,
713,
4802,
327,
636,
13,
13,
30015,
2744,
7417,
14099,
1951,
29871,
29896,
29929,
29955,
29929,
29892,
8564,
414,
338,
263,
1583,
29899,
2783,
23059,
1261,
8415,
2454,
5264,
391,
29961,
29896,
3816,
29906,
3816,
29941,
3816,
29946,
29962,
1058,
5025,
943,
278,
11265,
310,
19001,
29899,
26689,
1302,
3372,
1230,
3896,
558,
4637,
29961,
29945,
3816,
29953,
29962,
322,
756,
7213,
3368,
2522,
392,
262,
485,
713,
29899,
3293,
5264,
1261,
25804,
7226,
29955,
3816,
29947,
3816,
29929,
29962,
940,
274,
14766,
6394,
411,
278,
19083,
9173,
322,
338,
29115,
408,
263,
4432,
16909,
363,
11976,
310,
21118,
3566,
1860,
3178,
13,
13,
29902,
4997,
565,
11584,
11717,
338,
6257,
304,
15982,
393,
6200,
670,
4868,
11062,
348,
1259,
322,
1560,
799,
292,
310,
25281,
338,
2675,
304,
6200,
2041,
1250,
304,
447,
1657,
1075,
29892,
322,
393,
2305,
1369,
27697,
379,
7833,
1073,
393,
670,
2278,
728,
11777,
3335,
322,
817,
363,
8570,
750,
777,
1407,
1855,
27721,
29889,
13,
13,
4178,
607,
1298,
306,
30010,
29885,
1854,
591,
674,
599,
367,
14914,
304,
278,
16126,
380,
2235,
414,
322,
18677,
1492,
29899,
16958,
3056,
414,
393,
1018,
304,
3013,
1075,
515,
13590,
278,
8760,
322,
540,
9007,
30010,
29873,
2743,
322,
372,
30010,
29879,
451,
670,
12570,
2305,
437,
445,
313,
8000,
310,
3236,
29892,
297,
278,
1206,
310,
2305,
373,
278,
916,
2625,
29892,
694,
1316,
822,
1464,
338,
21905,
29897,
577,
29892,
366,
1073,
29892,
1801,
1283,
322,
599,
393,
29889,
6439,
29892,
322,
306,
30010,
29885,
1854,
278,
7733,
273,
10348,
674,
1835,
701,
29889,
13,
13,
3868,
384,
29892,
306,
30010,
29881,
2367,
372,
304,
393,
432,
5968,
7646,
18370,
565,
306,
2714,
540,
30010,
29881,
671,
372,
29889,
7198,
8507,
8335,
615,
29889,
7311,
306,
508,
30010,
29873,
4480,
304,
1074,
278,
1250,
29899,
9795,
12818,
278,
429,
29899,
1270,
695,
391,
338,
2675,
304,
437,
565,
15115,
885,
398,
338,
697,
310,
670,
1101,
414,
29889,
13,
13,
29933,
5658,
6456,
278,
6865,
310,
365,
29954,
29943,
900,
2039,
813,
565,
612,
27269,
2758,
16126,
2305,
304,
1101,
366,
29892,
612,
27269,
526,
14040,
363,
963,
322,
372,
3732,
612,
27269,
697,
310,
963,
2086,
29889,
13,
13,
797,
1009,
1394,
29893,
5481,
273,
282,
335,
2238,
29892,
263,
16728,
16082,
285,
14643,
763,
402,
4539,
338,
7126,
304,
263,
12043,
550,
1171,
29889,
341,
6926,
4922,
4060,
29892,
2748,
366,
2274,
1009,
3186,
29899,
1493,
29889,
319,
4723,
310,
16467,
29652,
678,
2960,
29891,
30010,
29879,
1962,
373,
20147,
338,
3307,
9793,
373,
5400,
19941,
18245,
270,
3774,
386,
29892,
363,
5019,
29889,
13,
13,
1576,
1510,
30010,
29879,
1568,
901,
22684,
292,
2317,
29899,
262,
363,
23622,
1735,
338,
278,
8037,
12878,
414,
29892,
278,
4644,
29899,
974,
29899,
1552,
29899,
29956,
497,
1601,
23080,
393,
1899,
263,
19340,
7716,
503,
3424,
347,
9987,
29889,
13,
13,
1576,
8037,
12878,
414,
526,
263,
28469,
304,
599,
5199,
537,
29901,
1009,
503,
3424,
347,
1375,
1080,
526,
18018,
9796,
304,
18290,
12435,
2305,
310,
599,
19079,
322,
15996,
12955,
29889,
15175,
2012,
310,
5190,
292,
304,
15499,
278,
7258,
28469,
304,
5199,
10379,
3528,
29892,
278,
15996,
12955,
297,
278,
1510,
18864,
8830,
599,
1009,
931,
373,
1009,
1914,
5697,
1017,
22941,
276,
4110,
322,
21117,
363,
3081,
29889,
8037,
12878,
414,
526,
6892,
17262,
29936,
777,
26784,
972,
29891,
1009,
10379,
338,
714,
1266,
17935,
29889,
13,
13,
10840,
481,
23622,
1735,
363,
8037,
12878,
414,
29892,
322,
1346,
2798,
2722,
30024,
363,
15996,
12955,
29892,
322,
372,
8665,
304,
6047,
263,
3287,
763,
278,
1855,
3186,
29889,
13,
13,
10299,
928,
635,
29892,
372,
10083,
763,
278,
1108,
310,
6121,
29311,
3381,
373,
23622,
1735,
29889,
1939,
697,
4234,
508,
5557,
6635,
579,
19783,
293,
1370,
4056,
373,
967,
1914,
29901,
1432,
4234,
393,
30010,
29879,
263,
4655,
7933,
8697,
10489,
953,
5171,
338,
760,
310,
278,
1108,
29889,
13,
13,
10401,
4433,
30098,
29889,
7999,
3890,
390,
29889,
29934,
29889,
6502,
29892,
4148,
310,
263,
9362,
310,
26998,
322,
6438,
29892,
1497,
29892,
1346,
16099,
29892,
694,
372,
3508,
30010,
29873,
3178,
13,
2855,
478,
2251,
29892,
565,
366,
30010,
276,
2675,
304,
1708,
2820,
411,
8448,
310,
498,
1617,
267,
29892,
679,
278,
1801,
292,
6624,
3002,
1959,
29892,
1363,
372,
30010,
29879,
385,
1663,
499,
304,
1906,
310,
502,
1058,
505,
1303,
278,
8277,
322,
278,
2305,
1058,
2289,
13389,
278,
3652,
393,
366,
9455,
30010,
29873,
1584,
3390,
1319,
3307,
310,
278,
664,
304,
437,
596,
3271,
1287,
29889,
13,
13,
14084,
750,
263,
1106,
472,
1790,
697,
310,
596,
7780,
1691,
23032,
313,
4149,
2038,
467,
399,
340,
29889,
887,
526,
8500,
519,
408,
278,
20493,
6575,
30098,
29889,
298,
1218,
373,
596,
25448,
2305,
29892,
1444,
20521,
310,
1009,
2551,
267,
30098,
29889,
2337,
278,
282,
1803,
3335,
322,
13901,
374,
1772,
591,
508,
2149,
515,
2261,
21478,
29878,
719,
30098,
29889,
13,
13,
578,
265,
261,
470,
2678,
896,
674,
679,
304,
402,
4539,
29889,
739,
30010,
29879,
263,
14610,
16832,
29889,
13,
29902,
4966,
896,
1016,
30010,
29873,
541,
896,
1016,
30010,
29873,
2367,
701,
322,
366,
508,
30010,
29873,
367,
6364,
515,
1438,
2305,
472,
599,
3064,
7148,
746,
896,
526,
17762,
322,
19888,
304,
367,
4586,
714,
297,
278,
1889,
29889,
13,
13,
392,
746,
896,
437,
679,
902,
29892,
306,
4966,
278,
285,
5779,
6493,
286,
29878,
7933,
5733,
29879,
322,
8323,
1075,
363,
5528,
11407,
13,
13,
29924,
387,
948,
29901,
1346,
29956,
483,
366,
5649,
825,
366,
5456,
1244,
373,
596,
12618,
322,
373,
20147,
30098,
26622,
13,
1762,
327,
29901,
1346,
29902,
2360,
1497,
393,
29991,
887,
30010,
276,
10594,
3838,
297,
590,
13394,
8530,
13,
29924,
387,
948,
29901,
1346,
277,
30010,
29879,
1492,
379,
27267,
373,
278,
4565,
1813,
310,
596,
12618,
30098,
30024,
13,
1762,
327,
29901,
1346,
6293,
30010,
276,
5622,
372,
714,
310,
3030,
29892,
306,
9007,
30010,
29873,
5934,
825,
366,
1497,
29991,
14213,
936,
14802,
10130,
12185,
8530,
13,
29924,
387,
948,
30024,
1346,
20335,
11717,
29892,
366,
30010,
276,
451,
1407,
11785,
526,
366,
30098,
30024,
13,
13,
29931,
1008,
373,
20147,
322,
365,
29954,
29943,
29901,
1346,
24709,
408,
306,
14909,
1914,
13727,
948,
21872,
322,
24396,
14802,
10130,
12185,
8530,
13,
13,
29902,
7336,
533,
25281,
363,
902,
19872,
304,
12070,
902,
28968,
297,
278,
10977,
310,
286,
18813,
583,
322,
278,
10888,
29924,
29892,
306,
12312,
6142,
29889,
13932,
18363,
763,
25281,
29892,
6813,
723,
2758,
907,
26819,
528,
4568,
785,
607,
7216,
30010,
29873,
330,
11586,
3799,
29991,
306,
4966,
29889,
2193,
1497,
29892,
306,
2274,
2020,
383,
2707,
2161,
723,
864,
304,
1074,
902,
1045,
15647,
12985,
12985,
9343,
1073,
29889,
13,
13,
3868,
30010,
29879,
6445,
901,
9545,
310,
278,
4768,
446,
11423,
29892,
322,
25074,
346,
29892,
1269,
322,
1432,
2462,
29889,
1619,
4966,
338,
393,
540,
30010,
29879,
408,
27788,
519,
408,
372,
5692,
29889,
4942,
18159,
714,
310,
278,
2743,
360,
809,
18046,
280,
1838,
30010,
29873,
1371,
29892,
301,
324,
29889,
13,
13,
29956,
340,
23032,
29892,
3430,
763,
366,
9640,
278,
3824,
1913,
355,
358,
310,
278,
20063,
2030,
767,
29991,
13,
13,
3492,
1074,
29892,
2820,
1244,
29892,
591,
526,
12524,
29911,
1806,
20566,
304,
1827,
825,
591,
1348,
3692,
14332,
8571,
267,
411,
372,
29892,
470,
451,
29889,
13,
13,
2855,
29892,
366,
1074,
9425,
1232,
261,
29892,
393,
1906,
1058,
22941,
929,
411,
1554,
393,
263,
2022,
4083,
437,
451,
769,
505,
263,
1492,
304,
5700,
1283,
902,
2343,
29889,
13,
13,
3664,
2820,
1244,
29889,
13,
13,
2855,
29892,
925,
408,
263,
19780,
1083,
4995,
30098,
29889,
565,
366,
1016,
30010,
29873,
763,
372,
1244,
29892,
366,
526,
383,
21661,
304,
5967,
29889,
2193,
30010,
29879,
1492,
29991,
887,
508,
8206,
701,
380,
6926,
322,
2343,
363,
777,
18008,
2787,
19339,
379,
1772,
565,
366,
1016,
30010,
29873,
763,
372,
1244,
29889,
3750,
29892,
975,
727,
785,
988,
3926,
366,
6755,
785,
366,
674,
1284,
382,
5348,
29979,
12413,
304,
367,
399,
29909,
29979,
16999,
1525,
323,
5607,
1001,
13566,
310,
612,
22970,
9426,
322,
1298,
310,
1776,
29889,
13,
13,
2855,
29892,
9360,
21915,
23032,
29892,
366,
881,
505,
750,
278,
528,
277,
413,
17840,
714,
310,
366,
472,
3203,
2748,
408,
263,
4123,
767,
785,
366,
723,
4808,
263,
1568,
9045,
631,
26309,
1286,
1048,
7535,
23797,
278,
3186,
565,
366,
750,
29889,
887,
1074,
29892,
23032,
29892,
366,
2289,
526,
263,
23196,
541,
366,
2360,
10972,
393,
29889,
1670,
366,
526,
2462,
1156,
2462,
266,
3427,
292,
596,
521,
342,
1339,
15387,
366,
526,
263,
27725,
4444,
1346,
4495,
13479,
8643
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
PROJECT SUMMARY/ABSTRACT Background: The Indiana Clinical and Translational Sciences Institute (CTSI) has a sustained record of accomplishment of training KL2 Scholars through its Career development, Education and Research Training (CERT) Program. KL2 scholars are recruited from the 3 major research universities in the state: Indiana University, Purdue University, and the University of Notre Dame, which enriches their experience and expands the breadth of translational research. The Indiana CTSI is uniquely positioned to also expand research and training opportunities to include training related to Down syndrome (DS). Career Goals: My long-term career goal is to build a translational research program that integrates insights from basic research in both typical and atypical development and knowledge from the stakeholders in the community to develop measurement techniques that improve the delivery and implementation of interventions. The overall objective of this application is progress towards that goal by determining whether real-time visual experience within home learning contexts is potentially an effective new outcome measurement tool. Research Project: Children with Down syndrome (DS) have a behavioral phenotype that presents with delays in language development that impact all aspects of life. Although children with Autism Spectrum Disorder (autism) are typically characterized with a very different behavioral phenotype, they too often present with language delays. Despite efforts to develop new, effective interventions, progress has been slowed in part due to issues with measurement tools. Dynamic aspects of visual sampling heavily impact the process of language learning in typically developing children. The objective for this research proposal is to determine how real-time visual experience (i.e. sampling) within home learning contexts impacts language learning for children with developmental delays as a first step in determining whether visual experience has potential as a new outcome measure. To accomplish this goal, children with DS, with autism, and typically developing peers will wear head-mounted cameras in their home during regular daily activities. Videos will be coded for patterns of visual sampling. Career Development: This Administrative Supplement to the KL2 Institutional Career Development Award will provide the necessary training required to launch an independent research career that includes a focus on children with DS. Training activities include: immersive clinical experience with DS, advanced training in the collection, processing, and analysis of visual experience data, and continued professional development. Mentorship: An interdisciplinary team from across institutions within the Indiana CTSI network supports training activities within this training plan: Dr. Linda Smith (Indiana University, Bloomington), Dr. Marilyn Bull (Indiana University, School of Medicine), Dr. Mandy Rispoli (Purdue University), and Dr. Chen Yu (Indiana University, Bloomington). | [
1,
13756,
17637,
22753,
1529,
13207,
29914,
2882,
1254,
4717,
1783,
16585,
29901,
450,
21817,
315,
1915,
936,
322,
4103,
29880,
1288,
17253,
8907,
313,
1783,
5425,
29897,
756,
263,
15075,
7114,
2407,
310,
12709,
358,
310,
6694,
476,
29931,
29906,
1102,
324,
1503,
1549,
967,
15825,
5849,
29892,
13151,
322,
10550,
26101,
313,
29907,
20161,
29897,
7835,
29889,
476,
29931,
29906,
1364,
324,
1503,
526,
1162,
582,
1573,
515,
278,
29871,
29941,
4655,
5925,
4946,
1907,
297,
278,
2106,
29901,
21817,
3014,
29892,
15247,
29123,
3014,
29892,
322,
278,
3014,
310,
24337,
360,
420,
29892,
607,
427,
4018,
267,
1009,
7271,
322,
1518,
4167,
278,
18423,
386,
310,
5578,
1288,
5925,
29889,
450,
21817,
26637,
5425,
338,
20498,
873,
2602,
287,
304,
884,
7985,
5925,
322,
6694,
28602,
1907,
304,
3160,
6694,
4475,
304,
9943,
22898,
4871,
313,
8452,
467,
15825,
2921,
1338,
29901,
1619,
1472,
29899,
8489,
6413,
7306,
338,
304,
2048,
263,
5578,
1288,
5925,
1824,
393,
3990,
1078,
1663,
5861,
515,
6996,
5925,
297,
1716,
15662,
322,
472,
1478,
936,
5849,
322,
7134,
515,
278,
380,
1296,
8948,
414,
297,
278,
7881,
304,
2693,
20039,
13698,
393,
11157,
278,
28289,
322,
5314,
310,
1006,
794,
1080,
29889,
450,
12463,
12091,
310,
445,
2280,
338,
6728,
7113,
393,
7306,
491,
3683,
2827,
3692,
1855,
29899,
2230,
7604,
7271,
2629,
3271,
6509,
3030,
29879,
338,
19998,
385,
11828,
716,
21957,
20039,
5780,
29889,
10550,
8010,
29901,
20986,
411,
9943,
22898,
4871,
313,
8452,
29897,
505,
263,
6030,
284,
17292,
327,
668,
393,
22981,
411,
628,
1036,
297,
4086,
5849,
393,
10879,
599,
21420,
310,
2834,
29889,
8512,
4344,
411,
5202,
1608,
27738,
5848,
3295,
2098,
313,
1300,
1608,
29897,
526,
12234,
2931,
1891,
411,
263,
1407,
1422,
6030,
284,
17292,
327,
668,
29892,
896,
2086,
4049,
2198,
411,
4086,
628,
1036,
29889,
19454,
14231,
304,
2693,
716,
29892,
11828,
1006,
794,
1080,
29892,
6728,
756,
1063,
5232,
287,
297,
760,
2861,
304,
5626,
411,
20039,
8492,
29889,
27747,
21420,
310,
7604,
23460,
20365,
10879,
278,
1889,
310,
4086,
6509,
297,
12234,
14338,
4344,
29889,
450,
12091,
363,
445,
5925,
24963,
338,
304,
8161,
920,
1855,
29899,
2230,
7604,
7271,
313,
29875,
29889,
29872,
29889,
23460,
29897,
2629,
3271,
6509,
3030,
29879,
10879,
29879,
4086,
6509,
363,
4344,
411,
5849,
284,
628,
1036,
408,
263,
937,
4331,
297,
3683,
2827,
3692,
7604,
7271,
756,
7037,
408,
263,
716,
21957,
5645,
29889,
1763,
12709,
445,
7306,
29892,
4344,
411,
360,
29903,
29892,
411,
1120,
1608,
29892,
322,
12234,
14338,
1236,
414,
674,
19531,
2343,
29899,
16476,
287,
3949,
18464,
297,
1009,
3271,
2645,
4943,
14218,
14188,
29889,
11812,
674,
367,
274,
6797,
363,
15038,
310,
7604,
23460,
29889,
15825,
14650,
29901,
910,
24510,
1230,
9179,
944,
304,
278,
476,
29931,
29906,
28218,
284,
15825,
14650,
7526,
674,
3867,
278,
5181,
6694,
3734,
304,
6826,
385,
7417,
5925,
6413,
393,
7805,
263,
8569,
373,
4344,
411,
360,
29903,
29889,
26101,
14188,
3160,
29901,
5198,
414,
573,
24899,
936,
7271,
411,
360,
29903,
29892,
12862,
6694,
297,
278,
4333,
29892,
9068,
29892,
322,
7418,
310,
7604,
7271,
848,
29892,
322,
7572,
10257,
5849,
29889,
341,
296,
272,
3527,
29901,
530,
1006,
2218,
13326,
3821,
3815,
515,
4822,
21561,
2629,
278,
21817,
26637,
5425,
3564,
11286,
6694,
14188,
2629,
445,
6694,
3814,
29901,
4942,
29889,
365,
11054,
7075,
313,
2568,
3857,
3014,
29892,
11447,
290,
4885,
511,
4942,
29889,
1085,
309,
948,
20293,
313,
2568,
3857,
3014,
29892,
4523,
310,
27529,
511,
4942,
29889,
341,
13910,
25259,
3733,
29875,
313,
29925,
18245,
434,
3014,
511,
322,
4942,
29889,
21589,
27669,
313,
2568,
3857,
3014,
29892,
11447,
290,
4885,
467
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
8 best features of the MediaTek Dimensity 820
The Dimensity 820 provides premium 5G experiences in leading smartphones. Here’s the top 8 reasons why you’ll want one in your next phone upgrade:
1) Octa-core CPU with 4X Arm Cortex-A76 cores pumped up to 2.6GHz
Competitor alternatives in this market segment only offer two ‘Big’ Arm cores, whereas the Dimensity 820 provides four Arm Cortex-A76 pumped up to an ultra-fast 2.6GHz. It makes the difference when you need incredible responsiveness most, boosting performance in apps and gaming. The Arm Cortex-A76 is one of the most powerful CPU cores available today and the Dimensity 860 has four of them, plus four Cortex-A55 efficiency-focused cores in its octa-core processor within the 7nm chip.
2) 5G integrated into the chip
With the 5G modem integrated into the chip, rather than processor plus modem in a two-chip platform, it means the Dimensity 820 is considerably more power efficient than alternatives, plus its smaller platform size means brands get more space to use for things like cameras, bigger batteries, or other novel features in your smartphone.
The Dimensity 820 provides essential 2CC Carrier Aggregation where competitor alternatives do not. This technology enables higher average speeds and a seamless handover between two 5G connection areas across a coverage layer, where users receive over 30% greater throughput layer coverage than without CA.
4) MediaTek 5G UltraSave
Sometimes you need to download a little – like a few pictures, and sometimes a lot – like a video. MediaTek engineers have made the modem reactive to the data demand so it works to meet connectivity needs, avoiding excessive performance states, which would only waste power. This extensive power optimization comes from these technologies: Network Environment Detection, OTA Content Awareness, BWP and C-DRX. Read more about what they do here.
5) 5-core GPU & HyperEngine 2.0 game enhancements
With its combination of 5-core GPU built on flagship-class IP and an updated MediaTek HyperEngine 2.0, the Dimensity 820 is a gaming powerhouse. HyperEngine 2.0 comprehensively overhauls its technology suite for the 5G-era, enhancing the whole experience for gamers through networking optimization, touchscreen responsiveness, and picture quality enhancements. Read more detail about MediaTek HyperEngine 2.0 here.
6) 120Hz Displays
120Hz displays are great for gamers who need the fastest response and zero-blur. They’re also beneficial to the everyday smartphone experience with notably smoother scrolling of webpages and animations in apps. Brands can offer the latest high resolution, all-screen FullHD+ displays with ultra-fast refresh rates creating smartphones with notably superior sensation.
Smartphones used to be photo-centric but today it’s all about video capture and streaming. What the Dimensity 820 offers is native 4K video capture with HDR. This means any environment you capture in – for example, bright daylight at the beach, the city lights at night, or at home going indoors and outdoors – the recorded experience is as close to visual as we’ve ever had it. In the background, autonomously, the chip is capturing faster than you’re recording, then merging the images together in real-time to create HDR imagery. This needs an immense performance and tightly interwoven camera, AI, imaging processor and vast memory bandwidth to perform effectively: and the Dimensity 820 makes all this to work together, seamlessly. | [
1,
29871,
29947,
1900,
5680,
310,
278,
8213,
29911,
1416,
4792,
575,
537,
29871,
29947,
29906,
29900,
13,
13,
1576,
4792,
575,
537,
29871,
29947,
29906,
29900,
8128,
5188,
1974,
29871,
29945,
29954,
27482,
297,
8236,
15040,
561,
2873,
29889,
2266,
30010,
29879,
278,
2246,
29871,
29947,
9590,
2020,
366,
30010,
645,
864,
697,
297,
596,
2446,
9008,
14955,
29901,
13,
13,
29896,
29897,
4756,
29874,
29899,
3221,
10808,
411,
29871,
29946,
29990,
8481,
2994,
4776,
29899,
29909,
29955,
29953,
28337,
282,
3427,
287,
701,
304,
29871,
29906,
29889,
29953,
29954,
12661,
13,
13,
6843,
300,
2105,
27809,
297,
445,
9999,
10768,
871,
5957,
1023,
5129,
6970,
30010,
8481,
28337,
29892,
13452,
278,
4792,
575,
537,
29871,
29947,
29906,
29900,
8128,
3023,
8481,
2994,
4776,
29899,
29909,
29955,
29953,
282,
3427,
287,
701,
304,
385,
8494,
336,
29899,
11255,
29871,
29906,
29889,
29953,
29954,
12661,
29889,
739,
3732,
278,
4328,
746,
366,
817,
29811,
1821,
5544,
20193,
1556,
29892,
14505,
292,
4180,
297,
11446,
322,
330,
11500,
29889,
450,
8481,
2994,
4776,
29899,
29909,
29955,
29953,
338,
697,
310,
278,
1556,
13988,
10808,
28337,
3625,
9826,
322,
278,
4792,
575,
537,
29871,
29947,
29953,
29900,
756,
3023,
310,
963,
29892,
2298,
3023,
2994,
4776,
29899,
29909,
29945,
29945,
19201,
29899,
29888,
542,
3880,
28337,
297,
967,
4725,
29874,
29899,
3221,
21433,
2629,
278,
29871,
29955,
22882,
29830,
29889,
13,
13,
29906,
29897,
29871,
29945,
29954,
23387,
964,
278,
29830,
13,
13,
3047,
278,
29871,
29945,
29954,
4464,
29885,
23387,
964,
278,
29830,
29892,
3265,
1135,
21433,
2298,
4464,
29885,
297,
263,
1023,
29899,
305,
666,
7481,
29892,
372,
2794,
278,
4792,
575,
537,
29871,
29947,
29906,
29900,
338,
2050,
2197,
901,
3081,
8543,
1135,
27809,
29892,
2298,
967,
7968,
7481,
2159,
2794,
1506,
4167,
679,
901,
2913,
304,
671,
363,
2712,
763,
3949,
18464,
29892,
16600,
10193,
583,
29892,
470,
916,
9554,
5680,
297,
596,
15040,
6710,
29889,
13,
13,
1576,
4792,
575,
537,
29871,
29947,
29906,
29900,
8128,
18853,
29871,
29906,
4174,
1704,
4336,
319,
26127,
362,
988,
5100,
2105,
27809,
437,
451,
29889,
910,
15483,
28936,
6133,
6588,
961,
5779,
322,
263,
409,
314,
2222,
1361,
957,
1546,
1023,
29871,
29945,
29954,
3957,
10161,
4822,
263,
23746,
7546,
29892,
988,
4160,
7150,
975,
29871,
29941,
29900,
29995,
7621,
1549,
649,
7546,
23746,
1135,
1728,
12766,
29889,
13,
13,
29946,
29897,
8213,
29911,
1416,
29871,
29945,
29954,
18514,
336,
11371,
13,
13,
29903,
14618,
366,
817,
304,
5142,
263,
2217,
785,
763,
263,
2846,
14956,
29892,
322,
6041,
263,
3287,
785,
763,
263,
4863,
29889,
8213,
29911,
1416,
6012,
414,
505,
1754,
278,
4464,
29885,
337,
4925,
304,
278,
848,
9667,
577,
372,
1736,
304,
5870,
4511,
2068,
4225,
29892,
4772,
292,
19163,
573,
4180,
5922,
29892,
607,
723,
871,
19863,
3081,
29889,
910,
20607,
3081,
13883,
5304,
515,
1438,
5722,
11763,
29901,
8527,
16738,
360,
2650,
428,
29892,
438,
6040,
10576,
319,
4495,
18543,
29892,
350,
26433,
322,
315,
29899,
8353,
29990,
29889,
7523,
901,
1048,
825,
896,
437,
1244,
29889,
13,
13,
29945,
29897,
29871,
29945,
29899,
3221,
22796,
669,
26078,
12412,
29871,
29906,
29889,
29900,
3748,
26371,
4564,
4110,
13,
13,
3047,
967,
10296,
310,
29871,
29945,
29899,
3221,
22796,
4240,
373,
13449,
4034,
29899,
1990,
5641,
322,
385,
4784,
8213,
29911,
1416,
26078,
12412,
29871,
29906,
29889,
29900,
29892,
278,
4792,
575,
537,
29871,
29947,
29906,
29900,
338,
263,
330,
11500,
3081,
8697,
29889,
26078,
12412,
29871,
29906,
29889,
29900,
15171,
575,
3598,
975,
2350,
7273,
967,
15483,
9460,
363,
278,
29871,
29945,
29954,
29899,
1572,
29892,
427,
5403,
3277,
278,
3353,
7271,
363,
24988,
414,
1549,
28127,
13883,
29892,
6023,
10525,
5544,
20193,
29892,
322,
7623,
11029,
26371,
4564,
4110,
29889,
7523,
901,
9493,
1048,
8213,
29911,
1416,
26078,
12412,
29871,
29906,
29889,
29900,
1244,
29889,
13,
13,
29953,
29897,
29871,
29896,
29906,
29900,
12661,
3295,
12922,
13,
13,
29896,
29906,
29900,
12661,
14423,
526,
2107,
363,
24988,
414,
1058,
817,
278,
5172,
342,
2933,
322,
5225,
29899,
2204,
332,
29889,
2688,
30010,
276,
884,
7795,
5611,
304,
278,
1432,
3250,
15040,
6710,
7271,
411,
451,
2197,
1560,
29877,
1228,
23064,
310,
1856,
12292,
322,
3778,
800,
297,
11446,
29889,
1771,
4167,
508,
5957,
278,
9281,
1880,
10104,
29892,
599,
29899,
10525,
14846,
26124,
29974,
14423,
411,
8494,
336,
29899,
11255,
11086,
19257,
4969,
15040,
561,
2873,
411,
451,
2197,
11558,
4771,
362,
29889,
13,
13,
12636,
442,
561,
2873,
1304,
304,
367,
15373,
29899,
1760,
2200,
541,
9826,
372,
30010,
29879,
599,
1048,
4863,
10446,
322,
24820,
29889,
1724,
278,
4792,
575,
537,
29871,
29947,
29906,
29900,
16688,
338,
7531,
29871,
29946,
29968,
4863,
10446,
411,
379,
8353,
29889,
910,
2794,
738,
5177,
366,
10446,
297,
785,
363,
1342,
29892,
11785,
2462,
4366,
472,
278,
25695,
29892,
278,
4272,
26068,
472,
4646,
29892,
470,
472,
3271,
2675,
1399,
29877,
943,
322,
714,
1867,
943,
785,
278,
10478,
7271,
338,
408,
3802,
304,
7604,
408,
591,
30010,
345,
3926,
750,
372,
29889,
512,
278,
3239,
29892,
28273,
5794,
29892,
278,
29830,
338,
4332,
3864,
8473,
1135,
366,
30010,
276,
16867,
29892,
769,
2778,
3460,
278,
4558,
4208,
297,
1855,
29899,
2230,
304,
1653,
379,
8353,
6382,
708,
29889,
910,
4225,
385,
29403,
4180,
322,
19932,
368,
1006,
29893,
9813,
10656,
29892,
319,
29902,
29892,
6382,
292,
21433,
322,
13426,
3370,
3719,
2103,
304,
2189,
17583,
29901,
322,
278,
4792,
575,
537,
29871,
29947,
29906,
29900,
3732,
599,
445,
304,
664,
4208,
29892,
409,
314,
23769,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
How do I install Groovy on an Ubuntu system for all users?
I'm trying to install Groovy for all users on an Ubuntu system. Apparently the correct way to install Groovy is to use http://sdkman.io/ but following those instructions the software is only installed for the root user. What are you intended to do?
A:
I would check the paragraph: Installing to a Custom Location in the
install documentation.
After you install it, say in /usr/local/sdkman, it gets a matter to invoke:
source "/usr/local/sdkman/bin/sdkman-init.sh"
for any user login: it can be done putting a custom bash init file in
/etc/profile.d/
http://sdkman.io/install.html
| [
1,
660,
29901,
13,
13,
5328,
437,
306,
2601,
6070,
15890,
373,
385,
8294,
1788,
363,
599,
4160,
29973,
13,
13,
29902,
29915,
29885,
1811,
304,
2601,
6070,
15890,
363,
599,
4160,
373,
385,
8294,
1788,
29889,
27466,
2705,
278,
1959,
982,
304,
2601,
6070,
15890,
338,
304,
671,
1732,
597,
15348,
1171,
29889,
601,
29914,
541,
1494,
1906,
11994,
278,
7047,
338,
871,
5130,
363,
278,
3876,
1404,
29889,
1724,
526,
366,
9146,
304,
437,
29973,
13,
13,
29909,
29901,
13,
13,
29902,
723,
1423,
278,
14880,
29901,
16052,
292,
304,
263,
8701,
17015,
297,
278,
29871,
13,
6252,
5106,
29889,
13,
13555,
366,
2601,
372,
29892,
1827,
297,
847,
4855,
29914,
2997,
29914,
15348,
1171,
29892,
372,
4947,
263,
4383,
304,
15928,
29901,
13,
4993,
5591,
4855,
29914,
2997,
29914,
15348,
1171,
29914,
2109,
29914,
15348,
1171,
29899,
2344,
29889,
845,
29908,
13,
13,
1454,
738,
1404,
6464,
29901,
372,
508,
367,
2309,
10594,
263,
2888,
10891,
2069,
934,
297,
29871,
13,
29914,
7070,
29914,
10185,
29889,
29881,
29914,
13,
13,
1124,
597,
15348,
1171,
29889,
601,
29914,
6252,
29889,
1420,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
UPDATE: Terry Gou, chairman of Foxconn Technology Group, the Taiwan-based industrial conglomerate best known for making iPhones for Apple in China (also known as Hon Hai Precision Industry Group), plans to announce a partnership with Carnegie Mellon University in Pittsburgh to develop improved manufacturing technologies tonight, plus a search for a possible manufacturing site in Pennsylvania, Steve Kratz, spokesman for the Pennsylvania Department of Community and Economic Development confirms.
Foxconn already has a small electronics plant -- a former AMP Inc. site -- that employs around 30 workers on the southeast side of Harrisburg. The company will be scouting sites across the state and has not asked for any taxpayer aid, Kratz told me. | [
1,
16924,
29901,
27571,
402,
283,
29892,
28942,
310,
14802,
13082,
17968,
6431,
29892,
278,
27807,
29899,
6707,
18408,
378,
3820,
12392,
403,
1900,
2998,
363,
3907,
474,
4819,
2873,
363,
12113,
297,
7551,
313,
15189,
2998,
408,
7906,
379,
1794,
349,
3757,
2459,
12157,
719,
6431,
511,
13900,
304,
7475,
346,
263,
22056,
4034,
411,
1704,
10052,
347,
341,
514,
265,
3014,
297,
27150,
13903,
304,
2693,
16710,
12012,
3864,
5722,
11763,
15243,
523,
29892,
2298,
263,
2740,
363,
263,
1950,
12012,
3864,
3268,
297,
16636,
29892,
13981,
476,
3605,
29920,
29892,
805,
23195,
1171,
363,
278,
16636,
10317,
310,
19184,
322,
12884,
293,
14650,
12388,
1516,
29889,
13,
13,
29943,
2251,
13082,
2307,
756,
263,
2319,
11966,
1199,
8024,
1192,
263,
4642,
319,
3580,
9266,
29889,
3268,
1192,
393,
3710,
417,
952,
2820,
29871,
29941,
29900,
17162,
373,
278,
13267,
15879,
2625,
310,
20349,
3074,
29889,
450,
5001,
674,
367,
885,
449,
292,
11840,
4822,
278,
2106,
322,
756,
451,
4433,
363,
738,
8818,
29886,
2747,
16226,
29892,
476,
3605,
29920,
5429,
592,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
The 405 Uncovers #1
In an effort to discover new music I've come up with 'The 405 Uncovers' concept.
The Concept
We pick a band.
From their top friends we pick another band
We go to their myspace and listen to the most played song on their music player
We rate it
We pick a band from their top friends and do the same
We do this five times (Original band not included)
We appoint a winner from the 5 bands (Original band not included)
Ok, the band I'm deciding to use as my start poi... (continued)
In an effort to discover new music I've come up with 'The 405 Uncovers' concept.
The Concept
We pick a band.
From their top friends we pick another band
We go to their myspace and listen to the most played song on their music player
We rate it
We pick a band from their top friends and do the same
We do this five times (Original band not included)
We appoint a winner from the 5 bands (Original band not included)
Ok, the band I'm deciding to use as my start point is the fantastic Mi Ami (www.myspace.com/miamiamiami) from San Francisco.
1. Thank You
Myspace Description: Punk/Punk/Punk
Location: Baltimore, Maryland, United States
Link:www.myspace.com/wethankyouRating: I had a listen to 'Empty Legs' (15'005 plays) and I was quite impressed. Being billed as a punk band (x3) I was expecting something completely different. Instead of a cliche punk band sound pumping through my headphones, I was exposed to a dirty, psychedelic, free-for all. I guess the notion of punk was more evdident in the free spirit nature of it all rather than music itself.
2. Wildfire Wildfire
Myspace Description: Trance/Trance/Trance
Location: Baltimore, Maryland, United States
Link: www.myspace.com/wildfirewildfireRating: The song I listened to was 'Escastic Sunshine Duck' (18'742) songs. Being a stickler for the rules, I had to listen to the highest played song and unfortunately the song in question was only a couple of minutes in length. It wasn't exactly trance but more an experimental adventure into noise. Not bad though.
3. Santa Dads
Myspace Description: Experimental/A'cappella/Other
Location: Baltimore, Maryland, United States
Link: www.myspace.com/santadadsRating: I had a listen to 'Dog WYGHYLU' (9'825 plays). Not my cup of tea at all. Essentially it's two people trying to be funny. The only problem is, instead of it coming across as being funny it ends up becoming a really awful in-joke. I don't know the joke. I don't find it funny.
4. Ed Schrader
Myspace Description: Comedy/Experimental
Location: Baltimore, Maryland, United States
Link: www.myspace.com/edwardhenryschraderiiiRating: I had a listen to 'Time To Die' (1'316 plays). Much like the band above, Ed Schrader tries to be funny but doesn't quite pull it off. It's a mash up of Bowie talking, set to a dodgy drum beat. I think it might be a Liam Lynch rip-off. Not good.
5. Teeth Mountain
Myspace Description: Trance/Fusion
Location: Baltimore/Maryland, United States
Link: www.myspace.com/teethmountainRating: I had a listen to 'Keinsein' (22'662 plays). I really liked this song. It's got a healthy level of experimentation to it, which makes me think they'd be great live. Plus they're really rhythmic too. It's the sort of music you put on full blast and listen to while in a room full of swirling lights.
Overall Rating
The first ever adventure took us from San Francisco all the way to the east coast of America, specifially Baltimore. It seems Baltimore has a healthy scene of psychedelic/experimental bands, whilst having an unhealthy scene of un-funny comedic based musicians.
My winner for this little adventure goes to Thank You.
Don't take my word as gospel though. Check out the bands and let me know you think! | [
1,
450,
29871,
29946,
29900,
29945,
853,
1111,
874,
396,
29896,
13,
13,
797,
385,
7225,
304,
6523,
716,
4696,
306,
29915,
345,
2041,
701,
411,
525,
1576,
29871,
29946,
29900,
29945,
853,
1111,
874,
29915,
6964,
29889,
13,
1576,
1281,
1547,
13,
4806,
5839,
263,
3719,
29889,
13,
4591,
1009,
2246,
7875,
591,
5839,
1790,
3719,
13,
4806,
748,
304,
1009,
590,
3493,
322,
11621,
304,
278,
1556,
5318,
4823,
373,
1009,
4696,
4847,
13,
4806,
6554,
372,
13,
4806,
5839,
263,
3719,
515,
1009,
2246,
7875,
322,
437,
278,
1021,
13,
4806,
437,
445,
5320,
3064,
313,
26036,
3719,
451,
5134,
29897,
13,
4806,
8167,
263,
19576,
515,
278,
29871,
29945,
22706,
313,
26036,
3719,
451,
5134,
29897,
13,
20434,
29892,
278,
3719,
306,
29915,
29885,
1602,
4821,
304,
671,
408,
590,
1369,
11899,
856,
313,
1285,
262,
6742,
29897,
13,
13,
797,
385,
7225,
304,
6523,
716,
4696,
306,
29915,
345,
2041,
701,
411,
525,
1576,
29871,
29946,
29900,
29945,
853,
1111,
874,
29915,
6964,
29889,
13,
1576,
1281,
1547,
13,
13,
4806,
5839,
263,
3719,
29889,
13,
13,
4591,
1009,
2246,
7875,
591,
5839,
1790,
3719,
13,
13,
4806,
748,
304,
1009,
590,
3493,
322,
11621,
304,
278,
1556,
5318,
4823,
373,
1009,
4696,
4847,
13,
13,
4806,
6554,
372,
13,
13,
4806,
5839,
263,
3719,
515,
1009,
2246,
7875,
322,
437,
278,
1021,
13,
13,
4806,
437,
445,
5320,
3064,
313,
26036,
3719,
451,
5134,
29897,
13,
13,
4806,
8167,
263,
19576,
515,
278,
29871,
29945,
22706,
313,
26036,
3719,
451,
5134,
29897,
13,
13,
20434,
29892,
278,
3719,
306,
29915,
29885,
1602,
4821,
304,
671,
408,
590,
1369,
1298,
338,
278,
13568,
6288,
5493,
1913,
29875,
313,
1636,
29889,
5781,
3535,
29889,
510,
29914,
2460,
314,
2829,
18612,
29897,
515,
3087,
8970,
29889,
13,
13,
29896,
29889,
3374,
887,
13,
13,
29924,
952,
3535,
12953,
29901,
22723,
29914,
29925,
2960,
29914,
29925,
2960,
13,
6508,
29901,
26767,
29892,
22559,
29892,
3303,
3900,
13,
6595,
29901,
1636,
29889,
5781,
3535,
29889,
510,
29914,
29893,
621,
804,
6293,
29934,
1218,
29901,
306,
750,
263,
11621,
304,
525,
8915,
5682,
29879,
29915,
313,
29896,
29945,
29915,
29900,
29900,
29945,
13582,
29897,
322,
306,
471,
3755,
527,
13120,
29889,
28265,
13181,
839,
408,
263,
21356,
3719,
313,
29916,
29941,
29897,
306,
471,
16120,
1554,
6446,
1422,
29889,
8669,
310,
263,
274,
4545,
21356,
3719,
6047,
282,
3427,
292,
1549,
590,
2343,
561,
2873,
29892,
306,
471,
19884,
304,
263,
26616,
29892,
11643,
287,
295,
293,
29892,
3889,
29899,
1454,
599,
29889,
306,
4140,
278,
17837,
310,
21356,
471,
901,
3415,
29881,
1693,
297,
278,
3889,
8548,
5469,
310,
372,
599,
3265,
1135,
4696,
3528,
29889,
13,
13,
29906,
29889,
11821,
8696,
11821,
8696,
13,
13,
29924,
952,
3535,
12953,
29901,
323,
11115,
29914,
29911,
11115,
29914,
29911,
11115,
13,
6508,
29901,
26767,
29892,
22559,
29892,
3303,
3900,
13,
6595,
29901,
7821,
29889,
5781,
3535,
29889,
510,
29914,
29893,
789,
8696,
29893,
789,
8696,
29934,
1218,
29901,
450,
4823,
306,
29616,
304,
471,
525,
29923,
1557,
6288,
8991,
845,
457,
360,
2707,
29915,
313,
29896,
29947,
29915,
29955,
29946,
29906,
29897,
12516,
29889,
28265,
263,
12070,
1358,
363,
278,
6865,
29892,
306,
750,
304,
11621,
304,
278,
9939,
5318,
4823,
322,
15428,
278,
4823,
297,
1139,
471,
871,
263,
7303,
310,
6233,
297,
3309,
29889,
739,
9007,
29915,
29873,
3721,
534,
749,
541,
901,
385,
17986,
17623,
545,
964,
11462,
29889,
2216,
4319,
2466,
29889,
13,
13,
29941,
29889,
7510,
360,
7925,
13,
13,
29924,
952,
3535,
12953,
29901,
1222,
27910,
29914,
29909,
29915,
29883,
932,
3547,
29914,
16107,
13,
6508,
29901,
26767,
29892,
22559,
29892,
3303,
3900,
13,
6595,
29901,
7821,
29889,
5781,
3535,
29889,
510,
29914,
29879,
424,
328,
7925,
29934,
1218,
29901,
306,
750,
263,
11621,
304,
525,
29928,
468,
399,
29979,
29954,
29950,
29979,
29931,
29965,
29915,
313,
29929,
29915,
29947,
29906,
29945,
13582,
467,
2216,
590,
18002,
310,
23429,
472,
599,
29889,
11044,
9247,
372,
29915,
29879,
1023,
2305,
1811,
304,
367,
2090,
1460,
29889,
450,
871,
1108,
338,
29892,
2012,
310,
372,
6421,
4822,
408,
1641,
2090,
1460,
372,
10614,
701,
14171,
263,
2289,
28893,
297,
29899,
2212,
446,
29889,
306,
1016,
29915,
29873,
1073,
278,
2958,
446,
29889,
306,
1016,
29915,
29873,
1284,
372,
2090,
1460,
29889,
13,
13,
29946,
29889,
2155,
1102,
29878,
1664,
13,
13,
29924,
952,
3535,
12953,
29901,
422,
7584,
29914,
1252,
27910,
13,
6508,
29901,
26767,
29892,
22559,
29892,
3303,
3900,
13,
6595,
29901,
7821,
29889,
5781,
3535,
29889,
510,
29914,
287,
1328,
3169,
719,
816,
29878,
1664,
25609,
29934,
1218,
29901,
306,
750,
263,
11621,
304,
525,
2481,
1763,
1640,
29915,
313,
29896,
29915,
29941,
29896,
29953,
13582,
467,
18927,
763,
278,
3719,
2038,
29892,
2155,
1102,
29878,
1664,
14335,
304,
367,
2090,
1460,
541,
1838,
29915,
29873,
3755,
8206,
372,
1283,
29889,
739,
29915,
29879,
263,
286,
1161,
701,
310,
350,
4238,
9963,
29892,
731,
304,
263,
21130,
1927,
24103,
16646,
29889,
306,
1348,
372,
1795,
367,
263,
2718,
314,
18989,
305,
18290,
29899,
2696,
29889,
2216,
1781,
29889,
13,
13,
29945,
29889,
1920,
621,
18204,
13,
13,
29924,
952,
3535,
12953,
29901,
323,
11115,
29914,
29943,
3958,
13,
6508,
29901,
26767,
29914,
29924,
653,
1049,
29892,
3303,
3900,
13,
6595,
29901,
7821,
29889,
5781,
3535,
29889,
510,
29914,
371,
621,
16476,
475,
29934,
1218,
29901,
306,
750,
263,
11621,
304,
525,
9598,
262,
24195,
29915,
313,
29906,
29906,
29915,
29953,
29953,
29906,
13582,
467,
306,
2289,
23289,
445,
4823,
29889,
739,
29915,
29879,
2355,
263,
9045,
29891,
3233,
310,
7639,
362,
304,
372,
29892,
607,
3732,
592,
1348,
896,
29915,
29881,
367,
2107,
5735,
29889,
15113,
896,
29915,
276,
2289,
18178,
1541,
13076,
2086,
29889,
739,
29915,
29879,
278,
2656,
310,
4696,
366,
1925,
373,
2989,
1999,
579,
322,
11621,
304,
1550,
297,
263,
5716,
2989,
310,
2381,
381,
1847,
26068,
29889,
13,
13,
3563,
497,
390,
1218,
13,
13,
1576,
937,
3926,
17623,
545,
3614,
502,
515,
3087,
8970,
599,
278,
982,
304,
278,
9755,
12180,
310,
6813,
29892,
1580,
361,
616,
368,
26767,
29889,
739,
2444,
26767,
756,
263,
9045,
29891,
9088,
310,
11643,
287,
295,
293,
29914,
735,
27910,
22706,
29892,
21109,
2534,
385,
443,
354,
4298,
29891,
9088,
310,
443,
29899,
7692,
1460,
419,
7486,
2729,
2301,
14722,
29889,
13,
3421,
19576,
363,
445,
2217,
17623,
545,
5771,
304,
3374,
887,
29889,
13,
10310,
29915,
29873,
2125,
590,
1734,
408,
330,
26265,
2466,
29889,
5399,
714,
278,
22706,
322,
1235,
592,
1073,
366,
1348,
29991
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
Count total and subtotal of nodes in neo4j in same query
I want to create an all in one statement in cypher to populate a data table. Two fields count the number of Sample: one shows the total number, and the other shows the number without the additional :Ghost label:
MATCH (a:Person)-[:OWNER]->(b:Project)-[:PROJECT]->(c:Import)-[:IMPORT|:INPUT|:OUTPUT*]->(d:Sample)
WITH a,b,c,d,d AS e WHERE NOT d:Ghost
RETURN DISTINCT b.Name,(a.`First Name` + " " + a.`Last Name`),b.Description,b.Date,count(DISTINCT c),count(DISTINCT d),count(DISTINCT e)
The problem is d and e come up with the same value, when in reality e should be smaller than d. I suspect somehow d and e are pointing to the same address. I can solve the problem by MATCH querying the graph again, but obviously that is expensive and I'd prefer to do it only once. Is it possible?
A:
WHERE filters what's returned by WITH, and you only get non-Ghost nodes. Use CASE for conditional results instead:
WITH a, b, c, d,
CASE
WHEN d:Ghost THEN null
ELSE d
END AS e
You could also collect the distinct sample nodes for the result, then get the size of the original list and a filtered list (so it won't deduplicate twice):
WITH DISTINCT b.Name AS projectName,
(a.`First Name` + " " + a.`Last Name`) AS fullName,
b.Description AS projectDescription,
b.Date AS projectDate,
count(DISTINCT c) AS importCount,
collect(DISTINCT d) AS samples
RETURN projectName, fullName, projectDescription, projectDate, importCount,
size(samples) AS sampleCount,
size([s IN samples WHERE NOT s:Ghost]) as nonGhostCount
| [
1,
660,
29901,
13,
13,
3981,
3001,
322,
1014,
7827,
310,
7573,
297,
452,
29877,
29946,
29926,
297,
1021,
2346,
13,
13,
29902,
864,
304,
1653,
385,
599,
297,
697,
3229,
297,
5094,
8096,
304,
19450,
263,
848,
1591,
29889,
7803,
4235,
2302,
278,
1353,
310,
21029,
29901,
697,
3697,
278,
3001,
1353,
29892,
322,
278,
916,
3697,
278,
1353,
1728,
278,
5684,
584,
29954,
3069,
3858,
29901,
259,
13,
341,
14789,
313,
29874,
29901,
7435,
6817,
7503,
9806,
13865,
28895,
29898,
29890,
29901,
7653,
6817,
7503,
8618,
17637,
28895,
29898,
29883,
29901,
17518,
6817,
7503,
29902,
3580,
8476,
29989,
29901,
1177,
12336,
29989,
29901,
12015,
12336,
29930,
28895,
29898,
29881,
29901,
17708,
29897,
13,
29956,
13054,
263,
29892,
29890,
29892,
29883,
29892,
29881,
29892,
29881,
3339,
321,
5754,
6058,
270,
29901,
29954,
3069,
13,
1525,
29911,
24015,
360,
9047,
28852,
289,
29889,
1170,
22657,
29874,
17580,
6730,
4408,
29952,
718,
376,
376,
718,
263,
17580,
8897,
4408,
19775,
29890,
29889,
9868,
29892,
29890,
29889,
2539,
29892,
2798,
29898,
4571,
1254,
28852,
274,
511,
2798,
29898,
4571,
1254,
28852,
270,
511,
2798,
29898,
4571,
1254,
28852,
321,
29897,
13,
13,
1576,
1108,
338,
270,
322,
321,
2041,
701,
411,
278,
1021,
995,
29892,
746,
297,
16832,
321,
881,
367,
7968,
1135,
270,
29889,
306,
12326,
10431,
270,
322,
321,
526,
13330,
304,
278,
1021,
3211,
29889,
306,
508,
4505,
278,
1108,
491,
341,
14789,
2346,
292,
278,
3983,
1449,
29892,
541,
12879,
393,
338,
19390,
322,
306,
29915,
29881,
5821,
304,
437,
372,
871,
2748,
29889,
1317,
372,
1950,
29973,
13,
13,
29909,
29901,
13,
13,
22043,
18094,
825,
29915,
29879,
4133,
491,
22659,
29892,
322,
366,
871,
679,
1661,
29899,
29954,
3069,
7573,
29889,
4803,
29134,
363,
15047,
2582,
2012,
29901,
13,
29956,
13054,
263,
29892,
289,
29892,
274,
29892,
270,
29892,
13,
268,
29134,
13,
308,
17980,
270,
29901,
29954,
3069,
8183,
1870,
13,
308,
26446,
270,
13,
268,
11056,
3339,
321,
13,
13,
3492,
1033,
884,
6314,
278,
8359,
4559,
7573,
363,
278,
1121,
29892,
769,
679,
278,
2159,
310,
278,
2441,
1051,
322,
263,
22289,
1051,
313,
578,
372,
2113,
29915,
29873,
28262,
786,
5926,
8951,
1125,
13,
29956,
13054,
360,
9047,
28852,
289,
29889,
1170,
3339,
2060,
1170,
29892,
13,
268,
313,
29874,
17580,
6730,
4408,
29952,
718,
376,
376,
718,
263,
17580,
8897,
4408,
6348,
3339,
2989,
1170,
29892,
13,
268,
289,
29889,
9868,
3339,
2060,
9868,
29892,
13,
268,
289,
29889,
2539,
3339,
2060,
2539,
29892,
13,
268,
2302,
29898,
4571,
1254,
28852,
274,
29897,
3339,
1053,
3981,
29892,
13,
268,
6314,
29898,
4571,
1254,
28852,
270,
29897,
3339,
11916,
13,
1525,
29911,
24015,
2060,
1170,
29892,
2989,
1170,
29892,
2060,
9868,
29892,
2060,
2539,
29892,
1053,
3981,
29892,
13,
539,
2159,
29898,
27736,
29897,
3339,
4559,
3981,
29892,
13,
539,
2159,
4197,
29879,
2672,
11916,
5754,
6058,
269,
29901,
29954,
3069,
2314,
408,
1661,
29954,
3069,
3981,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
How Do I Know If My Child Needs Glasses?
As parents we strive for the best for our children, whether it’s in regards to education, health, well-being or healthy relationships.
When it comes to your child’s vision, they might not even realise that they have problems with their eyesight. Studies have indicated that 20% of children have vision difficulties, and around 60% of children who have been identified as problem learners suffer from undetected vision problems. If your child is having trouble seeing the whiteboard or their work at school, it can contribute to a lack of concentration and falling behind in their education. This is especially the case for younger children as approximately 80% of what is taught in our schools is presented visually.
Often children won’t bring up the issue, simply because they don’t realise there is a problem. Other times, they might be embarrassed or afraid of what might happen if they tell you that they are struggling to see properly.
Some symptoms to look out for in your child are as follows:
Squinting
Using one eye over the other (possibly due to blurriness or lack of clarity)
Lack of Concentration
Excessive tears in the eyes
Constant eye rubbing
Complaining of headaches.
If these symptoms are present and you are concerned about your child’s eyesight, make an appointment with your local optometrist to organise a comprehensive eye exam. The longer a vision problem goes undiagnosed and untreated, the more a child’s brain learns to accommodate the vision problem.
Organising an annual eye exam for your children might not seem important, especially if they don’t seem to be experiencing any problems with their vision. However, an eye exam is not only an important diagnostic tool for determining if your child needs glasses or not, it’s also key for finding signs and symptoms of more serious issues.
Advice from the UK National Screening Committee recommends screening at age four to five years, however, many optometrists will see children much younger than this for a sight test. The Association of Optometrists say ‘we recommend that children have a sight test around the age of three, so that conditions are picked up and treated early. After the first test it is a good idea to return every two years, or as recommended by your optometrist.’
What can I do to look after my child’s eyes?
Plenty of outdoor activities – regular play and exercise has been shown to contribute to healthy eyes. Studies state that two hours of outdoor activity a day is ideal.
Diet – Eating the right foods and staying properly hydrated are key elements in keeping your entire body healthy, and this includes your eyes
Protect your children’s eyes from the sun – Make sure that they never look directly at the sun, and that they wear good quality sunglasses, which block out some of the sun’s harmful UV rays, during bright days.
If you feel that your child needs an eye exam, make sure to contact your local optometrist or medical eye specialist. At Cathedral Eye Clinic we have specialists that treat children in the area of orthoptics and surgery, if you would like to arrange a consultation please click the button below.
Next Steps
We'll get in touch and assess your options when you're ready. Simply fill the form below to get started.
* Full Name
* Email
* Telephone
Comments
Please send me a brochure
I would like a consultation
I would also like to request a callback
Enter code
Tyrone GAA's Tiernan McCann called in a couple of days before the All Ireland Final against Dublin, one year after he had the groundbreaking SMILE Laser Eye procedure.
Tiernan Has Fixed His Eyes On Sam
Liesl Parker's eyesight was deteriorating rapidly, but now has her life back after her recent procedure at Cathedral Eye Clinic | [
1,
1128,
1938,
306,
19320,
960,
1619,
10517,
2448,
5779,
402,
605,
267,
29973,
13,
13,
2887,
11825,
591,
380,
4401,
363,
278,
1900,
363,
1749,
4344,
29892,
3692,
372,
30010,
29879,
297,
21778,
304,
9793,
29892,
9045,
29892,
1532,
29899,
915,
292,
470,
9045,
29891,
21702,
29889,
13,
13,
10401,
372,
5304,
304,
596,
2278,
30010,
29879,
18551,
29892,
896,
1795,
451,
1584,
1855,
895,
393,
896,
505,
4828,
411,
1009,
5076,
523,
29889,
16972,
505,
18694,
393,
29871,
29906,
29900,
29995,
310,
4344,
505,
18551,
23553,
29892,
322,
2820,
29871,
29953,
29900,
29995,
310,
4344,
1058,
505,
1063,
15659,
408,
1108,
5110,
414,
8812,
515,
563,
300,
26458,
18551,
4828,
29889,
960,
596,
2278,
338,
2534,
7458,
8790,
278,
4796,
3377,
470,
1009,
664,
472,
3762,
29892,
372,
508,
29126,
304,
263,
10225,
310,
26702,
322,
20327,
5742,
297,
1009,
9793,
29889,
910,
338,
7148,
278,
1206,
363,
20023,
4344,
408,
14235,
29871,
29947,
29900,
29995,
310,
825,
338,
16187,
297,
1749,
12462,
338,
9132,
1998,
1474,
29889,
13,
13,
29949,
15535,
4344,
2113,
30010,
29873,
6963,
701,
278,
2228,
29892,
3763,
1363,
896,
1016,
30010,
29873,
1855,
895,
727,
338,
263,
1108,
29889,
5901,
3064,
29892,
896,
1795,
367,
21620,
26771,
287,
470,
13421,
310,
825,
1795,
3799,
565,
896,
2649,
366,
393,
896,
526,
20042,
304,
1074,
6284,
29889,
13,
13,
9526,
25828,
4835,
304,
1106,
714,
363,
297,
596,
2278,
526,
408,
4477,
29901,
13,
13,
29903,
339,
524,
292,
13,
13,
15156,
697,
10977,
975,
278,
916,
313,
28802,
14981,
2861,
304,
1999,
1038,
3335,
470,
10225,
310,
7542,
537,
29897,
13,
13,
29931,
547,
310,
1281,
1760,
29878,
362,
13,
13,
1252,
985,
573,
20190,
297,
278,
5076,
13,
13,
12075,
424,
10977,
14051,
10549,
13,
13,
6843,
433,
2827,
310,
2343,
14520,
29889,
13,
13,
3644,
1438,
25828,
4835,
526,
2198,
322,
366,
526,
15041,
1048,
596,
2278,
30010,
29879,
5076,
523,
29892,
1207,
385,
28573,
411,
596,
1887,
3523,
3297,
2021,
304,
2894,
895,
263,
15171,
6270,
10977,
4392,
29889,
450,
5520,
263,
18551,
1108,
5771,
563,
29875,
4211,
2662,
322,
443,
2484,
630,
29892,
278,
901,
263,
2278,
30010,
29879,
17294,
24298,
1983,
304,
24803,
403,
278,
18551,
1108,
29889,
13,
13,
27356,
5921,
385,
17568,
10977,
4392,
363,
596,
4344,
1795,
451,
2833,
4100,
29892,
7148,
565,
896,
1016,
30010,
29873,
2833,
304,
367,
10623,
3277,
738,
4828,
411,
1009,
18551,
29889,
2398,
29892,
385,
10977,
4392,
338,
451,
871,
385,
4100,
652,
21780,
5780,
363,
3683,
2827,
565,
596,
2278,
4225,
12917,
267,
470,
451,
29892,
372,
30010,
29879,
884,
1820,
363,
9138,
18906,
322,
25828,
4835,
310,
901,
10676,
5626,
29889,
13,
13,
3253,
1087,
515,
278,
10261,
3086,
22666,
292,
12930,
5052,
1975,
4315,
292,
472,
5046,
3023,
304,
5320,
2440,
29892,
3138,
29892,
1784,
3523,
3297,
2021,
29879,
674,
1074,
4344,
1568,
20023,
1135,
445,
363,
263,
11126,
1243,
29889,
450,
7993,
310,
20693,
3297,
2021,
29879,
1827,
5129,
705,
6907,
393,
4344,
505,
263,
11126,
1243,
2820,
278,
5046,
310,
2211,
29892,
577,
393,
5855,
526,
18691,
701,
322,
14914,
4688,
29889,
2860,
278,
937,
1243,
372,
338,
263,
1781,
2969,
304,
736,
1432,
1023,
2440,
29892,
470,
408,
13622,
491,
596,
3523,
3297,
2021,
16412,
13,
13,
5618,
508,
306,
437,
304,
1106,
1156,
590,
2278,
30010,
29879,
5076,
29973,
13,
13,
3247,
6478,
310,
714,
17433,
14188,
785,
4943,
1708,
322,
15058,
756,
1063,
4318,
304,
29126,
304,
9045,
29891,
5076,
29889,
16972,
2106,
393,
1023,
6199,
310,
714,
17433,
6354,
263,
2462,
338,
10839,
29889,
13,
13,
29928,
2035,
785,
382,
1218,
278,
1492,
9687,
29879,
322,
7952,
292,
6284,
27246,
29878,
630,
526,
1820,
3161,
297,
12515,
596,
4152,
3573,
9045,
29891,
29892,
322,
445,
7805,
596,
5076,
13,
13,
1184,
371,
312,
596,
4344,
30010,
29879,
5076,
515,
278,
6575,
785,
8561,
1854,
393,
896,
2360,
1106,
4153,
472,
278,
6575,
29892,
322,
393,
896,
19531,
1781,
11029,
269,
686,
605,
267,
29892,
607,
2908,
714,
777,
310,
278,
6575,
30010,
29879,
10311,
1319,
501,
29963,
15570,
29879,
29892,
2645,
11785,
3841,
29889,
13,
13,
3644,
366,
4459,
393,
596,
2278,
4225,
385,
10977,
4392,
29892,
1207,
1854,
304,
6958,
596,
1887,
3523,
3297,
2021,
470,
16083,
10977,
4266,
391,
29889,
2180,
315,
21471,
382,
4099,
315,
1915,
293,
591,
505,
4266,
2879,
393,
7539,
4344,
297,
278,
4038,
310,
14219,
3670,
1199,
322,
25300,
708,
29892,
565,
366,
723,
763,
304,
564,
3881,
263,
8799,
362,
3113,
2828,
278,
2826,
2400,
29889,
13,
13,
9190,
2443,
567,
13,
13,
4806,
29915,
645,
679,
297,
6023,
322,
24809,
596,
3987,
746,
366,
29915,
276,
7960,
29889,
3439,
17632,
5445,
278,
883,
2400,
304,
679,
4687,
29889,
13,
13,
29930,
14846,
4408,
13,
13,
29930,
22608,
13,
13,
29930,
9699,
6710,
13,
13,
1523,
1860,
13,
13,
12148,
3638,
592,
263,
2545,
305,
545,
13,
13,
29902,
723,
763,
263,
8799,
362,
13,
13,
29902,
723,
884,
763,
304,
2009,
263,
6939,
13,
13,
10399,
775,
13,
13,
29911,
4316,
650,
402,
6344,
29915,
29879,
29088,
13707,
15612,
812,
2000,
297,
263,
7303,
310,
3841,
1434,
278,
2178,
12126,
9550,
2750,
24533,
29892,
697,
1629,
1156,
540,
750,
278,
5962,
1030,
5086,
317,
10403,
1307,
7413,
261,
382,
4099,
8792,
29889,
13,
13,
29911,
631,
13707,
11699,
383,
11925,
3600,
382,
3582,
1551,
3685,
13,
13,
29931,
583,
29880,
24239,
29915,
29879,
5076,
523,
471,
270,
1308,
1611,
1218,
19328,
29892,
541,
1286,
756,
902,
2834,
1250,
1156,
902,
7786,
8792,
472,
315,
21471,
382,
4099,
315,
1915,
293
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Life Stories - Sharing Expertise and Experience
The Salzburg Global LGBT Forum collects and disseminates life stories that portray the rich realities of our lives today and share our diverse professional expertise. It is the sharing of stories and expertise rather than mere facts and figures that helps to galvanize our supporters and challenge our opponents.
As outlined in our 2013 Statement, we emphasize the value of exchange and storytelling as major tools of expressing of who we are and want to become. Increasingly, LGBT lives are portrayed in popular culture, often through the lens of heroism or victimhood to reach larger audiences. Still, in many countries, enforced silence and government-sponsored discrimination reject LGBT people as part of the human family. As the world becomes a global village, voices are amplified, including those that export homo-and transphobia.
In the short interviews below, members of the Global LGBT Forum share their expert knowledge and insights. The Global LGBT Forum will continue to cooperate with and magnify the work of writers, filmmakers and photographers as well as of community activists, legal experts, government representatives, and academics who reflect upon, portray and shape the complexities of our lives. | [
1,
4634,
624,
3842,
448,
1383,
4362,
1222,
10700,
895,
322,
28224,
5597,
13,
13,
1576,
3956,
21647,
12002,
365,
7210,
29911,
29474,
6314,
29879,
322,
766,
12846,
262,
1078,
2834,
15874,
393,
2011,
764,
278,
8261,
1855,
1907,
310,
1749,
12080,
9826,
322,
6232,
1749,
16984,
10257,
17924,
895,
29889,
739,
338,
278,
19383,
310,
15874,
322,
17924,
895,
3265,
1135,
15187,
17099,
322,
13994,
393,
6911,
304,
6898,
3703,
675,
1749,
1462,
272,
2153,
322,
18766,
1749,
23995,
1237,
29889,
13,
13,
2887,
714,
21354,
297,
1749,
29871,
29906,
29900,
29896,
29941,
6666,
882,
29892,
591,
19310,
675,
278,
995,
310,
14523,
322,
5828,
29873,
7807,
408,
4655,
8492,
310,
4653,
292,
310,
1058,
591,
526,
322,
864,
304,
4953,
29889,
512,
1037,
5832,
368,
29892,
365,
7210,
29911,
12080,
526,
2011,
25724,
297,
5972,
9257,
29892,
4049,
1549,
278,
301,
575,
310,
13444,
1608,
470,
28985,
6614,
304,
6159,
7200,
12990,
819,
778,
29889,
12074,
29892,
297,
1784,
10916,
29892,
24555,
1133,
15142,
322,
5874,
29899,
1028,
787,
4395,
2313,
5632,
3381,
12560,
365,
7210,
29911,
2305,
408,
760,
310,
278,
5199,
3942,
29889,
1094,
278,
3186,
7415,
263,
5534,
5720,
29892,
28848,
526,
20563,
2164,
29892,
3704,
1906,
393,
5609,
3632,
29877,
29899,
392,
1301,
561,
711,
423,
29889,
13,
13,
797,
278,
3273,
1006,
7406,
2400,
29892,
5144,
310,
278,
12002,
365,
7210,
29911,
29474,
6232,
1009,
17924,
7134,
322,
1663,
5861,
29889,
450,
12002,
365,
7210,
29911,
29474,
674,
6773,
304,
1302,
3372,
403,
411,
322,
9119,
1598,
278,
664,
310,
23550,
29892,
2706,
29885,
21079,
322,
17739,
414,
408,
1532,
408,
310,
7881,
5039,
2879,
29892,
11706,
2902,
1372,
29892,
5874,
2755,
5056,
29892,
322,
16274,
1199,
1058,
9432,
2501,
29892,
2011,
764,
322,
8267,
278,
4280,
1907,
310,
1749,
12080,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
MDB2_Driver_mysqli Bug #10895http://pear.php.net/bugs/10895
[Closed] setLimit() does not work properly when a subquery uses [email protected]@lists.php.nethourly12000-01-01T12:00+00:00
setLimit() does not work properly when a subquery uses LIMITDescription:
------------
Queries with a subselect that use a LIMIT statement will not be modified correctly when using setLimit().
In a SQL statment like:
SELECT a, (SELECT dateOther FROM T1 ORDER BY date DESC LIMIT 1) FROM T2;
The preg_match in _modifyQuery matches the first LIMIT and will not append another one.aldo
aldohttp://pear.php.net/bugs/10895
MDB2_Driver_mysqli Bug
Reported by aldo
2007-04-30T13:18:08+00:00
PHP: 5.2.1 OS: Any Package Version: 1.4.0
Description:
------------
Queries with a subselect that use a LIMIT statement will not be modified correctly when using setLimit().
In a SQL statment like:
SELECT a, (SELECT dateOther FROM T1 ORDER BY date DESC LIMIT 1) FROM T2;
The preg_match in _modifyQuery matches the first LIMIT and will not append another one.]]>MDB2_Driver_mysqli Bug
Reported by aldo
2007-04-30T13:18:08+00:00
PHP: 5.2.1 OS: Any Package Version: 1.4.0
Description:
------------
Queries with a subselect that use a LIMIT statement will not be modified correctly when using setLimit().
In a SQL statment like:
SELECT a, (SELECT dateOther FROM T1 ORDER BY date DESC LIMIT 1) FROM T2;
The preg_match in _modifyQuery matches the first LIMIT and will not append another one.]]>2007-04-30T13:18:08+00:00
aldo [2007-05-02 19:37] http://pear.php.net/bugs/10895#1178134633
I have tested CVS and the check for the closing parenthesis is effective. It is correctly working for subqueries and statements that end in a LIMIT. Thank you.]]>I have tested CVS and the check for the closing parenthesis is effective. It is correctly working for subqueries and statements that end in a LIMIT. Thank you.]]>2007-05-02T19:37:13+00:00
quipo [2007-05-02 17:01] http://pear.php.net/bugs/10895#1178125304
This bug has been fixed in CVS.
If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET).
If this was a problem with the pear.php.net website, the change should be live shortly.
Otherwise, the fix will appear in the package's next release.
Thank you for the report and for helping us make PEAR better.
--
Can you test the current CVS version and send me some feedback, please? TIA]]>This bug has been fixed in CVS.
If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET).
If this was a problem with the pear.php.net website, the change should be live shortly.
Otherwise, the fix will appear in the package's next release.
Thank you for the report and for helping us make PEAR better.
--
Can you test the current CVS version and send me some feedback, please? TIA]]>2007-05-02T17:01:44+00:00 | [
1,
341,
4051,
29906,
29918,
12376,
29918,
23727,
28209,
396,
29896,
29900,
29947,
29929,
29945,
1124,
597,
412,
279,
29889,
1961,
29889,
1212,
29914,
6152,
29879,
29914,
29896,
29900,
29947,
29929,
29945,
13,
29961,
6821,
2662,
29962,
731,
24445,
580,
947,
451,
664,
6284,
746,
263,
1014,
1972,
3913,
27848,
264,
29899,
375,
412,
279,
29899,
2676,
6207,
29992,
21513,
29889,
1961,
29889,
1212,
412,
279,
29899,
2676,
6207,
29992,
21513,
29889,
1961,
29889,
29876,
621,
473,
368,
29896,
29906,
29900,
29900,
29900,
29899,
29900,
29896,
29899,
29900,
29896,
29911,
29896,
29906,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
13,
13,
842,
24445,
580,
947,
451,
664,
6284,
746,
263,
1014,
1972,
3913,
27848,
9868,
29901,
13,
9072,
13,
2182,
6358,
411,
263,
1014,
2622,
393,
671,
263,
27848,
3229,
674,
451,
367,
9120,
5149,
746,
773,
731,
24445,
2141,
13,
797,
263,
3758,
1002,
358,
763,
29901,
13,
6404,
263,
29892,
313,
6404,
2635,
16107,
3895,
323,
29896,
15606,
6770,
2635,
23050,
27848,
29871,
29896,
29897,
3895,
323,
29906,
29936,
13,
1576,
16177,
29918,
4352,
297,
903,
1545,
1598,
3010,
7087,
278,
937,
27848,
322,
674,
451,
9773,
1790,
697,
29889,
284,
1867,
13,
284,
1867,
1124,
597,
412,
279,
29889,
1961,
29889,
1212,
29914,
6152,
29879,
29914,
29896,
29900,
29947,
29929,
29945,
13,
29924,
4051,
29906,
29918,
12376,
29918,
23727,
28209,
13,
13020,
287,
491,
394,
1867,
13,
29906,
29900,
29900,
29955,
29899,
29900,
29946,
29899,
29941,
29900,
29911,
29896,
29941,
29901,
29896,
29947,
29901,
29900,
29947,
29974,
29900,
29900,
29901,
29900,
29900,
13,
17130,
29901,
29871,
29945,
29889,
29906,
29889,
29896,
6570,
29901,
3139,
22029,
10079,
29901,
29871,
29896,
29889,
29946,
29889,
29900,
13,
9868,
29901,
13,
9072,
13,
2182,
6358,
411,
263,
1014,
2622,
393,
671,
263,
27848,
3229,
674,
451,
367,
9120,
5149,
746,
773,
731,
24445,
2141,
13,
797,
263,
3758,
1002,
358,
763,
29901,
13,
6404,
263,
29892,
313,
6404,
2635,
16107,
3895,
323,
29896,
15606,
6770,
2635,
23050,
27848,
29871,
29896,
29897,
3895,
323,
29906,
29936,
13,
1576,
16177,
29918,
4352,
297,
903,
1545,
1598,
3010,
7087,
278,
937,
27848,
322,
674,
451,
9773,
1790,
697,
29889,
5262,
29958,
29924,
4051,
29906,
29918,
12376,
29918,
23727,
28209,
13,
13020,
287,
491,
394,
1867,
13,
29906,
29900,
29900,
29955,
29899,
29900,
29946,
29899,
29941,
29900,
29911,
29896,
29941,
29901,
29896,
29947,
29901,
29900,
29947,
29974,
29900,
29900,
29901,
29900,
29900,
13,
17130,
29901,
29871,
29945,
29889,
29906,
29889,
29896,
6570,
29901,
3139,
22029,
10079,
29901,
29871,
29896,
29889,
29946,
29889,
29900,
13,
9868,
29901,
13,
9072,
13,
2182,
6358,
411,
263,
1014,
2622,
393,
671,
263,
27848,
3229,
674,
451,
367,
9120,
5149,
746,
773,
731,
24445,
2141,
13,
797,
263,
3758,
1002,
358,
763,
29901,
13,
6404,
263,
29892,
313,
6404,
2635,
16107,
3895,
323,
29896,
15606,
6770,
2635,
23050,
27848,
29871,
29896,
29897,
3895,
323,
29906,
29936,
13,
1576,
16177,
29918,
4352,
297,
903,
1545,
1598,
3010,
7087,
278,
937,
27848,
322,
674,
451,
9773,
1790,
697,
29889,
5262,
29958,
29906,
29900,
29900,
29955,
29899,
29900,
29946,
29899,
29941,
29900,
29911,
29896,
29941,
29901,
29896,
29947,
29901,
29900,
29947,
29974,
29900,
29900,
29901,
29900,
29900,
13,
284,
1867,
518,
29906,
29900,
29900,
29955,
29899,
29900,
29945,
29899,
29900,
29906,
29871,
29896,
29929,
29901,
29941,
29955,
29962,
1732,
597,
412,
279,
29889,
1961,
29889,
1212,
29914,
6152,
29879,
29914,
29896,
29900,
29947,
29929,
29945,
29937,
29896,
29896,
29955,
29947,
29896,
29941,
29946,
29953,
29941,
29941,
13,
29902,
505,
9528,
315,
21819,
322,
278,
1423,
363,
278,
14382,
3847,
29882,
6656,
338,
11828,
29889,
739,
338,
5149,
1985,
363,
1014,
339,
6358,
322,
9506,
393,
1095,
297,
263,
27848,
29889,
3374,
366,
29889,
5262,
29958,
29902,
505,
9528,
315,
21819,
322,
278,
1423,
363,
278,
14382,
3847,
29882,
6656,
338,
11828,
29889,
739,
338,
5149,
1985,
363,
1014,
339,
6358,
322,
9506,
393,
1095,
297,
263,
27848,
29889,
3374,
366,
29889,
5262,
29958,
29906,
29900,
29900,
29955,
29899,
29900,
29945,
29899,
29900,
29906,
29911,
29896,
29929,
29901,
29941,
29955,
29901,
29896,
29941,
29974,
29900,
29900,
29901,
29900,
29900,
13,
14254,
29877,
518,
29906,
29900,
29900,
29955,
29899,
29900,
29945,
29899,
29900,
29906,
29871,
29896,
29955,
29901,
29900,
29896,
29962,
1732,
597,
412,
279,
29889,
1961,
29889,
1212,
29914,
6152,
29879,
29914,
29896,
29900,
29947,
29929,
29945,
29937,
29896,
29896,
29955,
29947,
29896,
29906,
29945,
29941,
29900,
29946,
13,
4013,
6494,
756,
1063,
4343,
297,
315,
21819,
29889,
13,
3644,
445,
471,
263,
5106,
1108,
29892,
278,
2329,
674,
2615,
373,
282,
799,
29889,
1961,
29889,
1212,
491,
278,
1095,
310,
2446,
16340,
313,
29907,
2544,
467,
13,
3644,
445,
471,
263,
1108,
411,
278,
282,
799,
29889,
1961,
29889,
1212,
4700,
29892,
278,
1735,
881,
367,
5735,
21734,
29889,
13,
16107,
3538,
29892,
278,
2329,
674,
2615,
297,
278,
3577,
29915,
29879,
2446,
6507,
29889,
13,
25271,
366,
363,
278,
3461,
322,
363,
19912,
502,
1207,
349,
26441,
2253,
29889,
13,
489,
13,
6028,
366,
1243,
278,
1857,
315,
21819,
1873,
322,
3638,
592,
777,
16705,
29892,
3113,
29973,
323,
10764,
5262,
29958,
4013,
6494,
756,
1063,
4343,
297,
315,
21819,
29889,
13,
3644,
445,
471,
263,
5106,
1108,
29892,
278,
2329,
674,
2615,
373,
282,
799,
29889,
1961,
29889,
1212,
491,
278,
1095,
310,
2446,
16340,
313,
29907,
2544,
467,
13,
3644,
445,
471,
263,
1108,
411,
278,
282,
799,
29889,
1961,
29889,
1212,
4700,
29892,
278,
1735,
881,
367,
5735,
21734,
29889,
13,
16107,
3538,
29892,
278,
2329,
674,
2615,
297,
278,
3577,
29915,
29879,
2446,
6507,
29889,
13,
25271,
366,
363,
278,
3461,
322,
363,
19912,
502,
1207,
349,
26441,
2253,
29889,
13,
489,
13,
6028,
366,
1243,
278,
1857,
315,
21819,
1873,
322,
3638,
592,
777,
16705,
29892,
3113,
29973,
323,
10764,
5262,
29958,
29906,
29900,
29900,
29955,
29899,
29900,
29945,
29899,
29900,
29906,
29911,
29896,
29955,
29901,
29900,
29896,
29901,
29946,
29946,
29974,
29900,
29900,
29901,
29900,
29900
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
1 Night 2 Days Season 3 Episode 530
2 Days & 1 Night (Hangul: 1박 2일; also known as 1 Night 2 Days; abbreviated as 1N2D) is a South Korean reality-variety show that airs on KBS2 beginning August 5, 2007. 1 Night 2 Days is one of the two segments (the other segment is The Return of Superman) on Happy Sunday, airing at 6:25pm KST once a week. | [
1,
29871,
29896,
11554,
29871,
29906,
24728,
24791,
29871,
29941,
382,
12907,
29871,
29945,
29941,
29900,
13,
13,
29906,
24728,
669,
29871,
29896,
11554,
313,
29950,
574,
352,
29901,
29871,
29896,
31736,
29871,
29906,
31153,
29936,
884,
2998,
408,
29871,
29896,
11554,
29871,
29906,
24728,
29936,
29759,
1403,
630,
408,
29871,
29896,
29940,
29906,
29928,
29897,
338,
263,
4275,
22467,
16832,
29899,
5927,
3305,
1510,
393,
4799,
29879,
373,
476,
9851,
29906,
6763,
3111,
29871,
29945,
29892,
29871,
29906,
29900,
29900,
29955,
29889,
29871,
29896,
11554,
29871,
29906,
24728,
338,
697,
310,
278,
1023,
24611,
313,
1552,
916,
10768,
338,
450,
7106,
310,
5670,
1171,
29897,
373,
28569,
16340,
29892,
4799,
292,
472,
29871,
29953,
29901,
29906,
29945,
3358,
476,
1254,
2748,
263,
4723,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Electrochemical study of the antineoplastic agent etoposide at carbon paste electrode and its determination in spiked human serum by differential pulse voltammetry.
The electrochemical oxidation of the antineoplastic agent etoposide was studied at carbon paste electrode in Britton-Robinson buffer solutions over the pH range 2.0-10.0 using cyclic, linear sweep and differential pulse voltammetry. Oxidation of the drug was effected in a single reversible, diffusion-controlled step within the pH range 2.0-4.0, a second oxidation process was produced above pH 4.0. Using differential pulse voltammetry (DPV), the drug yielded a well-defined voltammetric response in Britton-Robinson buffer, pH 3.0 at 0.500 V (vs. Ag/AgCl) on carbon paste electrode. This process could be used to determine etoposide concentrations in the range 2.5 x 10(-7) to 2.5 x 10(-5) M with a detection limit of 1.0 x 10(-7) M. The method was successfully applied to the determination of the drug in spiked human serum. | [
1,
10513,
307,
14969,
936,
6559,
310,
278,
3677,
457,
459,
4230,
293,
10823,
634,
459,
359,
680,
472,
22004,
11417,
28118,
311,
322,
967,
3683,
3381,
297,
805,
638,
287,
5199,
724,
398,
491,
16712,
9505,
344,
5583,
314,
2527,
719,
29889,
13,
1576,
28118,
14969,
936,
19100,
333,
362,
310,
278,
3677,
457,
459,
4230,
293,
10823,
634,
459,
359,
680,
471,
12399,
472,
22004,
11417,
28118,
311,
297,
3230,
880,
29899,
21860,
26803,
6835,
6851,
975,
278,
282,
29950,
3464,
29871,
29906,
29889,
29900,
29899,
29896,
29900,
29889,
29900,
773,
5094,
28746,
29892,
5608,
7901,
1022,
322,
16712,
9505,
344,
5583,
314,
2527,
719,
29889,
9471,
333,
362,
310,
278,
15721,
471,
2779,
287,
297,
263,
2323,
18764,
1821,
29892,
23253,
29899,
6451,
839,
4331,
2629,
278,
282,
29950,
3464,
29871,
29906,
29889,
29900,
29899,
29946,
29889,
29900,
29892,
263,
1473,
19100,
333,
362,
1889,
471,
7371,
2038,
282,
29950,
29871,
29946,
29889,
29900,
29889,
5293,
16712,
9505,
344,
5583,
314,
2527,
719,
313,
11191,
29963,
511,
278,
15721,
7709,
287,
263,
1532,
29899,
12119,
5583,
314,
16414,
2933,
297,
3230,
880,
29899,
21860,
26803,
6835,
29892,
282,
29950,
29871,
29941,
29889,
29900,
472,
29871,
29900,
29889,
29945,
29900,
29900,
478,
313,
4270,
29889,
4059,
29914,
14769,
6821,
29897,
373,
22004,
11417,
28118,
311,
29889,
910,
1889,
1033,
367,
1304,
304,
8161,
634,
459,
359,
680,
14953,
800,
297,
278,
3464,
29871,
29906,
29889,
29945,
921,
29871,
29896,
29900,
6278,
29955,
29897,
304,
29871,
29906,
29889,
29945,
921,
29871,
29896,
29900,
6278,
29945,
29897,
341,
411,
263,
15326,
4046,
310,
29871,
29896,
29889,
29900,
921,
29871,
29896,
29900,
6278,
29955,
29897,
341,
29889,
450,
1158,
471,
8472,
7436,
304,
278,
3683,
3381,
310,
278,
15721,
297,
805,
638,
287,
5199,
724,
398,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Sunday, June 3, 2012
Does McDonalds Cause Asthma?
American's love Big Macs, Whoppers, French fries, onion rings and deep fried chicken. These are convenient foods that are simply delicious. Yet the old saying goes, "If it tastes good, it's probably not good for you."
Now we already knew such high-fat foods are bad for your heart. Yet new evidence suggests they may also be bad for your lungs.
A study completed by Australian researchers in 2010 tested asthmatics before and after eating a meal, and determined that lung function was worse after eating a high-fat meal.
If that wasn't bad enough, the study also concluded that high-fat foods also made it so asthma rescue medicine (like Albuterol) worked less well.
Scientists aren't sure why this is, yet there are theories. One theory suggests that your asthmatic immune system might recognize saturated fat as an enemy and promptly acts to rid it from your system.
This response results in an increase in markers of inflammation such as leukotrienes and hystamine, and these increase inflammation in your respiratory tract. This causes muscles lining your air passages to constrict, and thus an asthma attack is the result.
Perhaps due to the increased inflammation, asthmatics who used their rescue medicine after eating a high-fat meal did not get as much relief as those who ate low-fat meals. Likewise, lung function improved less in subjects who used their rescue medicine after eating high-fat meals.
Obviously asthma rates have increased incrementally in the U.S. and other western nations over the past 20 years. This new theory suggests one of the factors might be the high-fat foods we put into our bodies.
I've also read other studies that suggest that if you're exposed to something that triggers inflammation in your lungs, and exposed to it often enough, the inflammation may become permanent. Thus, asthma is developed.
It's studies like this that remind us that the way we eat may determine the lives we live. If you want to prevent asthma, or prevent an asthma flare, it may be a good idea to eat a healthy diet.
Does that mean we asthmatics should never eat great tasting, convenient and high-fat foods? Absolutely not. Yet it's good to know the facts, and it's good to know what foods might not be good for us. | [
1,
16340,
29892,
5306,
29871,
29941,
29892,
29871,
29906,
29900,
29896,
29906,
13,
13,
25125,
4052,
28080,
29879,
315,
1071,
10186,
29882,
655,
29973,
13,
13,
14689,
29915,
29879,
5360,
7997,
4326,
29879,
29892,
806,
9354,
414,
29892,
5176,
285,
2722,
29892,
373,
291,
28774,
322,
6483,
285,
1255,
521,
21475,
29889,
4525,
526,
19192,
9687,
29879,
393,
526,
3763,
628,
14803,
29889,
15175,
278,
2030,
5934,
5771,
29892,
376,
3644,
372,
260,
579,
267,
1781,
29892,
372,
29915,
29879,
3117,
451,
1781,
363,
366,
1213,
13,
13,
10454,
591,
2307,
6363,
1316,
1880,
29899,
29888,
271,
9687,
29879,
526,
4319,
363,
596,
5192,
29889,
15175,
716,
10757,
14661,
896,
1122,
884,
367,
4319,
363,
596,
301,
3085,
29889,
13,
13,
29909,
6559,
8676,
491,
9870,
5925,
414,
297,
29871,
29906,
29900,
29896,
29900,
9528,
8717,
29882,
2922,
1199,
1434,
322,
1156,
321,
1218,
263,
592,
284,
29892,
322,
10087,
393,
13030,
740,
471,
15029,
1156,
321,
1218,
263,
1880,
29899,
29888,
271,
592,
284,
29889,
13,
13,
3644,
393,
9007,
29915,
29873,
4319,
3307,
29892,
278,
6559,
884,
22834,
393,
1880,
29899,
29888,
271,
9687,
29879,
884,
1754,
372,
577,
8717,
29882,
655,
26429,
26602,
313,
4561,
838,
4187,
261,
324,
29897,
3796,
3109,
1532,
29889,
13,
13,
29903,
15566,
2879,
9455,
29915,
29873,
1854,
2020,
445,
338,
29892,
3447,
727,
526,
25841,
29889,
3118,
6368,
14661,
393,
596,
8717,
7184,
2454,
5198,
1540,
1788,
1795,
18720,
269,
1337,
630,
9950,
408,
385,
11103,
322,
9508,
368,
14741,
304,
8177,
372,
515,
596,
1788,
29889,
13,
13,
4013,
2933,
2582,
297,
385,
7910,
297,
29320,
310,
4414,
4850,
362,
1316,
408,
454,
2679,
327,
19112,
267,
322,
298,
858,
314,
457,
29892,
322,
1438,
7910,
4414,
4850,
362,
297,
596,
4613,
381,
7606,
22330,
29889,
910,
9946,
2301,
7799,
301,
2827,
596,
4799,
1209,
1179,
304,
378,
710,
919,
29892,
322,
4550,
385,
8717,
29882,
655,
5337,
338,
278,
1121,
29889,
13,
13,
5894,
4252,
2861,
304,
278,
11664,
4414,
4850,
362,
29892,
8717,
29882,
2922,
1199,
1058,
1304,
1009,
26429,
26602,
1156,
321,
1218,
263,
1880,
29899,
29888,
271,
592,
284,
1258,
451,
679,
408,
1568,
18892,
408,
1906,
1058,
263,
371,
4482,
29899,
29888,
271,
592,
1338,
29889,
8502,
3538,
29892,
13030,
740,
16710,
3109,
297,
17800,
1058,
1304,
1009,
26429,
26602,
1156,
321,
1218,
1880,
29899,
29888,
271,
592,
1338,
29889,
13,
13,
6039,
16604,
8717,
29882,
655,
19257,
505,
11664,
11924,
635,
297,
278,
501,
29889,
29903,
29889,
322,
916,
15782,
19079,
975,
278,
4940,
29871,
29906,
29900,
2440,
29889,
910,
716,
6368,
14661,
697,
310,
278,
13879,
1795,
367,
278,
1880,
29899,
29888,
271,
9687,
29879,
591,
1925,
964,
1749,
17873,
29889,
13,
13,
29902,
29915,
345,
884,
1303,
916,
11898,
393,
4368,
393,
565,
366,
29915,
276,
19884,
304,
1554,
393,
23660,
4414,
4850,
362,
297,
596,
301,
3085,
29892,
322,
19884,
304,
372,
4049,
3307,
29892,
278,
4414,
4850,
362,
1122,
4953,
17667,
29889,
6549,
29892,
8717,
29882,
655,
338,
8906,
29889,
13,
13,
3112,
29915,
29879,
11898,
763,
445,
393,
1083,
513,
502,
393,
278,
982,
591,
17545,
1122,
8161,
278,
12080,
591,
5735,
29889,
960,
366,
864,
304,
5557,
8717,
29882,
655,
29892,
470,
5557,
385,
8717,
29882,
655,
285,
8663,
29892,
372,
1122,
367,
263,
1781,
2969,
304,
17545,
263,
9045,
29891,
652,
300,
29889,
13,
13,
25125,
393,
2099,
591,
8717,
29882,
2922,
1199,
881,
2360,
17545,
2107,
260,
579,
292,
29892,
19192,
322,
1880,
29899,
29888,
271,
9687,
29879,
29973,
1976,
2929,
11579,
451,
29889,
15175,
372,
29915,
29879,
1781,
304,
1073,
278,
17099,
29892,
322,
372,
29915,
29879,
1781,
304,
1073,
825,
9687,
29879,
1795,
451,
367,
1781,
363,
502,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
[Endourologic treatment of ureteral strictures. Experimental comparative study].
To compare efficacy and efficiency of two different endourological therapies for ureteral stricture, and to evaluate pathological reactions of the ureters following both endourological techniques. Ten pigs underwent experimental induction of ureteral stricture. Four weeks later, ureteral strictures were demonstrated by imaging techniques. Animals were divided in two groups, according to the received therapy: -Group I. (5 pigs), endoballoon rupture endoureterotomy. -Group II (5 pigs), Acucise balloon endoureterotomy. Ureteral stents were placed for 3 weeks following endoureterotomy. Animals were followed up four weeks after ureteral stents retrieval. In all cases, ureteral stricture was proved four weeks after model induction. In one case from each group, it was needed a second balloon dilatation to achieve complete endoureterotomy. Leading to ureteral restenosis, stent migration occurred in one animal from group I. Success was achieved in 80% of cases from group I, and 100% of cases from group II. Our results suggest that both endourological therapies are effective. Nevertheless, a higher efficiency was proved with Acucise endoureterotomy. Our pathological evidences do not support Davis's studies on ureteral healing following endoureterotomy. | [
1,
518,
5044,
283,
307,
19227,
14502,
310,
318,
276,
357,
284,
9406,
1973,
29889,
1222,
27910,
5734,
1230,
6559,
1822,
13,
1762,
7252,
6366,
4135,
322,
19201,
310,
1023,
1422,
1095,
283,
307,
1188,
936,
29220,
481,
583,
363,
318,
276,
357,
284,
851,
4781,
29892,
322,
304,
14707,
2224,
5996,
337,
7387,
310,
278,
318,
276,
2153,
1494,
1716,
1095,
283,
307,
1188,
936,
13698,
29889,
12444,
282,
23379,
1090,
29893,
296,
17986,
21445,
310,
318,
276,
357,
284,
851,
4781,
29889,
12458,
11405,
2678,
29892,
318,
276,
357,
284,
9406,
1973,
892,
28585,
491,
6382,
292,
13698,
29889,
24980,
1338,
892,
13931,
297,
1023,
6471,
29892,
5034,
304,
278,
4520,
29220,
27580,
29901,
448,
4782,
306,
29889,
313,
29945,
282,
23379,
511,
1095,
711,
26177,
265,
5796,
415,
545,
1095,
25664,
357,
327,
16103,
29889,
448,
4782,
1944,
313,
29945,
282,
23379,
511,
7255,
1682,
895,
6411,
417,
265,
1095,
25664,
357,
327,
16103,
29889,
501,
276,
357,
284,
380,
1237,
892,
7180,
363,
29871,
29941,
11405,
1494,
1095,
25664,
357,
327,
16103,
29889,
24980,
1338,
892,
5643,
701,
3023,
11405,
1156,
318,
276,
357,
284,
380,
1237,
5663,
16837,
29889,
512,
599,
4251,
29892,
318,
276,
357,
284,
851,
4781,
471,
11827,
3023,
11405,
1156,
1904,
21445,
29889,
512,
697,
1206,
515,
1269,
2318,
29892,
372,
471,
4312,
263,
1473,
6411,
417,
265,
21749,
271,
362,
304,
6176,
4866,
1095,
25664,
357,
327,
16103,
29889,
951,
9382,
304,
318,
276,
357,
284,
1791,
264,
19263,
29892,
380,
296,
20332,
10761,
297,
697,
13019,
515,
2318,
306,
29889,
21397,
471,
14363,
297,
29871,
29947,
29900,
29995,
310,
4251,
515,
2318,
306,
29892,
322,
29871,
29896,
29900,
29900,
29995,
310,
4251,
515,
2318,
1944,
29889,
8680,
2582,
4368,
393,
1716,
1095,
283,
307,
1188,
936,
29220,
481,
583,
526,
11828,
29889,
25678,
29892,
263,
6133,
19201,
471,
11827,
411,
7255,
1682,
895,
1095,
25664,
357,
327,
16103,
29889,
8680,
2224,
5996,
3415,
333,
2063,
437,
451,
2304,
15225,
29915,
29879,
11898,
373,
318,
276,
357,
284,
540,
12818,
1494,
1095,
25664,
357,
327,
16103,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
(g) be the third derivative of 5*g**4/24 - 5*g**3/6 - 3*g**2. Is f(4) composite?
True
Let v(l) = -l**3 + 8*l**2 + 4*l + 7. Let a be v(6). Suppose 2*w + m = a, -5*w + w - 4*m + 208 = 0. Is w prime?
False
Let s(m) = -1. Let g(c) = 13*c - 2. Let q(b) = -g(b) + 3*s(b). Is q(-12) a composite number?
True
Let x be (0 - (-6)/2)*-81. Let s = 112 - x. Is s prime?
False
Suppose -4*y - 4*i = -92, -y + 3*y + i = 44. Suppose -4*k + y = 5. Suppose 2*q - 28 = 4*o + 10, 2*o - 86 = -k*q. Is q prime?
False
Let v(p) = 3*p**2 - 22*p - 29. Is v(22) composite?
True
Let c(y) = 22*y**3 - y. Suppose 1 = 2*o - 3. Suppose 3*h - o*n = -n, 5*h + 2*n - 11 = 0. Is c(h) composite?
True
Let n = 22 - 1. Is n a prime number?
False
Let s = 7 - 10. Let f = 3 + s. Is (f + 1)/(1/11) composite?
False
Suppose -3*m = -6*m + 5079. Is m a composite number?
False
Let n = -199 - -410. Is n a prime number?
True
Let x = 2 - 2. Let d(q) = q - 171. Let u be d(x). Is u/(-15) - (-2)/(-5) a prime number?
True
Let a = 15 - -17. Suppose 0 = -4*g - a + 408. Is g composite?
True
Let r(w) = 10*w**3 + 2*w**2 + 3*w - 5. Is r(2) a composite number?
False
Let r = 232 - 113. Is r composite?
True
Suppose -3*i = -3*p - 4*i + 366, p + i = 124. Is p a prime number?
False
Suppose 5*x - 2*c = 5221, 4*x - 4485 + 310 = c. Is x composite?
True
Let m(q) = -q - 1. Let r be m(-2). Is (21/6)/r*26 a composite number?
True
Suppose -2*j - j + 2103 = 0. Is j composite?
False
Let s(f) = f**2 - f - 5. Is s(-7) a composite number?
True
Suppose -2*v - 3 = -3*v + g, -2*v - 4*g = -18. Let o be (v + -1)/((-8)/(-4)). Suppose -3*c - 4*h = -79, 0*c - o*h = -2*c + 34. Is c prime?
False
Suppose -37 = -y + 25. Is y prime?
False
Suppose 3*b = 2*w + 5, -3*b = 5*w - 12 - 28. Suppose -180 = -0*z - 5*z - w*p, -2*p + 2 = 0. Is z prime?
False
Suppose 0 = 3*k - 4*q - 2963, -3*q = -3*k - 4*q + 2983. Is k prime?
False
Is -4 + 5 + -2 - (3 - 755) prime?
True
Is 1830/9 + 6/(-18) a composite number?
True
Is (-4)/(-1) - (-11739)/13 composite?
False
Suppose 9*y - 6*y - 51 = 0. Is (33/1)/3*y prime?
False
Suppose s + 4*z - 20 = 3*z, s - 17 = 2*z. Is s a composite number?
False
Suppose 8 = -5*r - 7. Let m(b) = -116*b + 7. Is m(r) composite?
True
Let q = -10 - -21. Is q a composite number?
False
Let j = -382 + 559. Is j composite?
True
Suppose -4*a - k + 720 = 0, a + 0*k - 175 = k. Let w(l) = l - 4. Let y be w(7). Suppose 2*m + 4*t = -0*t + 122, 0 = y*m + 5*t - a. Is m prime?
True
Let d = -44 + 123. Is d prime?
True
Let g(x) = -x**3 + 11*x**2 - x + 5. Let f be g(5). Let y(q) = -3*q**2 + 4*q - 2. Let j be y(-5). Let c = j + f. Is c a prime number?
True
Suppose 0 = -7*o + 3*o + 8. Let k be (17/2)/(o/4). Let l = k - 11. Is l a prime number?
False
Suppose -5*z + 4*a - 564 = -0*a, 244 = -2*z - 3*a. Let k = z + 171. Is k a prime number?
False
Suppose 3*x - 5*t = 257, -2*x - 6*t = -t - 138. Is x a composite number?
False
Let w(q) = -2*q**3 + 3*q**2 - q - 3. Let z(c) = -c**3 + c**2 + 1. Let b(d) = w(d) - 3*z(d). Let p be b(0). Is 15*-7*2/p prime?
False
Let u = 124 - 51. Let t = u + 54. Is t a composite number?
False
Let n be (-1 - 53)/((-5)/5). Let w = n + -32. Is w a composite number?
True
Let n(d) = 96*d**3 + d**2 + d - 1. Let c be n(1). Let q = 66 - c. Let m = q + 66. Is m a composite number?
True
Let w = -771 - -1102. Is w a prime number?
True
Let f = -6 - -6. Suppose 2*i = -f*i + 428. Is i a composite number?
True
Suppose 0 = a - 14 + 1. Suppose 3*o + a = -17. Is (396/(-30))/(4/o) composite?
True
Let z be (-2)/(-2) + -1 + 4. Suppose 5*s - z*s - 79 = 0. Is s composite?
False
Let u(x) = 417*x**2 + 4*x - 4. Let j be u(3). Suppose -5*q + j = -704. Let t = q + -466. Is t a prime number?
False
Let i be 2 - 1 - (3 - 0). Let b(t) = 7*t**3 + 11*t**2 - 21*t - 19. Let a(g) = -4*g**3 - 5*g**2 + 10*g + 9. Let n(z) = 13*a(z) + 6*b(z). Is n(i) composite?
False
Let y = 204 - 19. Is y a prime number?
False
Let q(d) = d + 7. Let p be q(-3). Suppose 0 = p*c - 2*c - 34. Suppose -2*i + 3*k = 8*k - 31, i = 4*k - c. Is i a composite number?
False
Is 457 + (-6 - -6)*2/4 prime?
True
Let m(v) = 5*v**3 - 3*v - 1. Let p(f) be the first derivative of -21*f**4/4 + f**3/3 + 13*f**2/2 + 5*f + 3. Let g(i) = 9*m(i) + 2*p(i). Is g(3) composite?
False
Suppose -3*f + 2 = -u, -4*u - 8 = 2*f + 2*f. Suppose 4*o - 5*o - 232 = -3*r, r - 5*o - 82 = f. Is r composite?
True
Let j be (-9)/(-6) - (-92)/(-8). Let h be 30/(-4)*j/15. Suppose -h*z - g + 36 = -4*z, -4*z + 4*g + 152 = 0. Is z composite?
False
Let y(w) = 42*w - 9. Is y(5) a prime number?
False
Let m = -375 - -1366. Is m a composite number?
False
Suppose 0 = 5*d - 4*d - 4. Suppose 31 = -5*y - o + 2, 3*y - 1 = d*o. Let a(x) = -26*x - 3. Is a(y) a composite number?
False
Let s = -203 - -447. Let y = s + -131. Is y a prime number?
True
Is 5/(-90)*4 - 12442/(-18) composite?
False
Suppose -2*n + 901 = 4*y - 7*y, -3*n + y + 1348 = 0. Is n a prime number?
True
Let k(z) = -z**2 - 2*z - 1. Let v be k(-1). Let m(y) = -y**3 - y + 119. Is m(v) prime?
False
Let o(u) = 36*u + 3. Is o(8) a prime number?
False
Suppose 0*q - 5*q = -10, -4*q = 4*x - 96. Is x prime?
False
Suppose m + 9 = -0*m + 3*c, -15 = 3*m + 3*c. Let z(s) = 3*s**2 - 7*s - 11. Is z(m) a prime number?
True
Let f(q) be the second derivative of -q**5/20 + 7*q**4/12 + 3*q**3/2 - q. Let i be f(8). Is ((-30)/i)/((-6)/40) a composite number?
True
Let b be 2/2*32/4. Let n be 37/((-14)/b + 2). Suppose -2*r - 2*r = -n. Is r a composite number?
False
Suppose 5*j - u = -3*u + 31, 2*j + u = 13. Suppose -j*n = -665 - 290. Is n a prime number?
True
Suppose -2*w - 2*j + 3692 = 0, 1701 + 3843 = 3*w - 3*j. Is w composite?
False
Let q(i) be the second derivative of -i**8/112 - i**5/120 + i**4/12 - 2*i. Let u(t) be the third derivative of q(t). Is u(-1) a prime number?
True
Let l(q) = 4*q**3 + 4*q**2 + 1. Let b = 42 - 30. Let h(k) = -k**2 + 12*k + 3. Let d be h(b). Is l(d) composite?
True
Let d = 2597 - 1304. Is d prime?
False
Let c be 65/(-5) + (-6)/(-3). Let x(k) = k**3 + 11*k**2 - 4*k + 15. Is x(c) prime?
True
Let w = 9 + 31. Suppose 3*n = 65 + w. Is n prime?
False
Suppose -3*i = -1 - 1397. Let x be 7708/(-28) + 6/21. Let p = i + x. Is p prime?
True
Let d = 16 - 22. Let m be (d + 2)*235/(-4). Suppose 2*n - m = -3*n. Is n prime?
True
Suppose -4*y + 0*y = -120. Let d = y - 15. Is d composite?
True
Is 9752/24 + (-6)/(-9) composite?
True
Let p(n) = -78*n - 31. Is p(-10) a composite number?
True
Let g be -11 + 6/(9/3). Let f = 6 - g. Suppose -f = -n + 32. Is n composite?
False
Let n(s) = -s**3 + 10*s**2 + 7*s + 11. Let d be n(9). Let w = -100 + d. Is w composite?
True
Suppose 0 = 4*k - 2*k - 4*d + 24, -3*d + 13 = k. Is (-1*322/k)/1 a prime number?
False
Let m(r) = -r**3 - 6*r**2 + 6*r - 4. Let i = 5 + -12. Let u be m(i). Suppose u*c = 98 + 13. Is c prime?
True
Suppose 3*m = -m + 8. Suppose 0*d = m*d - 522. Suppose -3*l = -6*l + d. Is l a prime number?
False
Let k = 49 - 77. Let a = k - -62. Is a composite?
True
Suppose 10*f + 130 = 15*f. Is f a composite number?
True
Let l = 5 - 3. Let i be l/(-3)*(5 + -2). Is 1*(27 - (-4)/i) a prime number?
False
Let i = 54 - -169. Is i composite?
False
Let m be -3 - (-16*1 - -1). Suppose 0 = 2*p - 106 + m. Is p composite?
False
Suppose -5*q - u + 7641 = 0, u + 4591 = 6*q - 3*q. Is q a prime number?
False
Let q(b) be the first derivative of -33*b**2/2 + 15*b + 3. Let c be q(10). Is (-1)/(-4) + c/(-4) composite?
False
Suppose 0 = 11*t - 406 - 5677. Is t a composite number?
True
Suppose 4*d - 38 = 2. Is (-815)/d*1*-2 composite?
False
Let y(v) = v**3 + 4*v**2 - 5*v + 3. Let f be y(-5). Let g(u) = u**2 - 9*u - 17. Let k be g(10). Is k*(-2 + f + -2) composite?
False
Let w = -626 + 1375. Is w a composite number?
True
Suppose 5*z - 2822 - 2933 = 0. Is z prime?
True
Let k = 38 + -7. Is k prime?
True
Suppose 8*m = 10*m - 4. Suppose -3*f - 1 + 2 = -4*s, -2*f + 16 = 5*s. Is s*17 + (1 - m) composite?
True
Suppose 56 = -3*l + l. Is 3/(-7) + (-2448)/l a prime number?
False
Suppose 269 = -0*n + 4*n - 3*s, -n + 2*s = -61. Is n composite?
False
Let n = -4 + 7. Let l = 45 + -79. Let m = n - l. Is m prime?
True
Suppose 7*m - 4*m = -39. Let r = 28 + m. Is r composite?
True
Suppose -100 - 24 = -4*j. Suppose 0 = -0*n - n + j. Is n a prime number?
True
Suppose -3*c - 3 = -9. Suppose 24 = w + c*j, 5* | [
1,
313,
29887,
29897,
367,
278,
4654,
16291,
310,
29871,
29945,
29930,
29887,
1068,
29946,
29914,
29906,
29946,
448,
29871,
29945,
29930,
29887,
1068,
29941,
29914,
29953,
448,
29871,
29941,
29930,
29887,
1068,
29906,
29889,
1317,
285,
29898,
29946,
29897,
20842,
29973,
13,
5574,
13,
12024,
325,
29898,
29880,
29897,
353,
448,
29880,
1068,
29941,
718,
29871,
29947,
29930,
29880,
1068,
29906,
718,
29871,
29946,
29930,
29880,
718,
29871,
29955,
29889,
2803,
263,
367,
325,
29898,
29953,
467,
12142,
29871,
29906,
29930,
29893,
718,
286,
353,
263,
29892,
448,
29945,
29930,
29893,
718,
281,
448,
29871,
29946,
29930,
29885,
718,
29871,
29906,
29900,
29947,
353,
29871,
29900,
29889,
1317,
281,
6019,
29973,
13,
8824,
13,
12024,
269,
29898,
29885,
29897,
353,
448,
29896,
29889,
2803,
330,
29898,
29883,
29897,
353,
29871,
29896,
29941,
29930,
29883,
448,
29871,
29906,
29889,
2803,
3855,
29898,
29890,
29897,
353,
448,
29887,
29898,
29890,
29897,
718,
29871,
29941,
29930,
29879,
29898,
29890,
467,
1317,
3855,
6278,
29896,
29906,
29897,
263,
20842,
1353,
29973,
13,
5574,
13,
12024,
921,
367,
313,
29900,
448,
8521,
29953,
6802,
29906,
11877,
29899,
29947,
29896,
29889,
2803,
269,
353,
29871,
29896,
29896,
29906,
448,
921,
29889,
1317,
269,
6019,
29973,
13,
8824,
13,
20182,
852,
448,
29946,
29930,
29891,
448,
29871,
29946,
29930,
29875,
353,
448,
29929,
29906,
29892,
448,
29891,
718,
29871,
29941,
29930,
29891,
718,
474,
353,
29871,
29946,
29946,
29889,
12142,
448,
29946,
29930,
29895,
718,
343,
353,
29871,
29945,
29889,
12142,
29871,
29906,
29930,
29939,
448,
29871,
29906,
29947,
353,
29871,
29946,
29930,
29877,
718,
29871,
29896,
29900,
29892,
29871,
29906,
29930,
29877,
448,
29871,
29947,
29953,
353,
448,
29895,
29930,
29939,
29889,
1317,
3855,
6019,
29973,
13,
8824,
13,
12024,
325,
29898,
29886,
29897,
353,
29871,
29941,
29930,
29886,
1068,
29906,
448,
29871,
29906,
29906,
29930,
29886,
448,
29871,
29906,
29929,
29889,
1317,
325,
29898,
29906,
29906,
29897,
20842,
29973,
13,
5574,
13,
12024,
274,
29898,
29891,
29897,
353,
29871,
29906,
29906,
29930,
29891,
1068,
29941,
448,
343,
29889,
12142,
29871,
29896,
353,
29871,
29906,
29930,
29877,
448,
29871,
29941,
29889,
12142,
29871,
29941,
29930,
29882,
448,
288,
29930,
29876,
353,
448,
29876,
29892,
29871,
29945,
29930,
29882,
718,
29871,
29906,
29930,
29876,
448,
29871,
29896,
29896,
353,
29871,
29900,
29889,
1317,
274,
29898,
29882,
29897,
20842,
29973,
13,
5574,
13,
12024,
302,
353,
29871,
29906,
29906,
448,
29871,
29896,
29889,
1317,
302,
263,
6019,
1353,
29973,
13,
8824,
13,
12024,
269,
353,
29871,
29955,
448,
29871,
29896,
29900,
29889,
2803,
285,
353,
29871,
29941,
718,
269,
29889,
1317,
313,
29888,
718,
29871,
29896,
6802,
29898,
29896,
29914,
29896,
29896,
29897,
20842,
29973,
13,
8824,
13,
20182,
852,
448,
29941,
29930,
29885,
353,
448,
29953,
29930,
29885,
718,
29871,
29945,
29900,
29955,
29929,
29889,
1317,
286,
263,
20842,
1353,
29973,
13,
8824,
13,
12024,
302,
353,
448,
29896,
29929,
29929,
448,
448,
29946,
29896,
29900,
29889,
1317,
302,
263,
6019,
1353,
29973,
13,
5574,
13,
12024,
921,
353,
29871,
29906,
448,
29871,
29906,
29889,
2803,
270,
29898,
29939,
29897,
353,
3855,
448,
29871,
29896,
29955,
29896,
29889,
2803,
318,
367,
270,
29898,
29916,
467,
1317,
318,
29914,
6278,
29896,
29945,
29897,
448,
8521,
29906,
6802,
6278,
29945,
29897,
263,
6019,
1353,
29973,
13,
5574,
13,
12024,
263,
353,
29871,
29896,
29945,
448,
448,
29896,
29955,
29889,
12142,
29871,
29900,
353,
448,
29946,
29930,
29887,
448,
263,
718,
29871,
29946,
29900,
29947,
29889,
1317,
330,
20842,
29973,
13,
5574,
13,
12024,
364,
29898,
29893,
29897,
353,
29871,
29896,
29900,
29930,
29893,
1068,
29941,
718,
29871,
29906,
29930,
29893,
1068,
29906,
718,
29871,
29941,
29930,
29893,
448,
29871,
29945,
29889,
1317,
364,
29898,
29906,
29897,
263,
20842,
1353,
29973,
13,
8824,
13,
12024,
364,
353,
29871,
29906,
29941,
29906,
448,
29871,
29896,
29896,
29941,
29889,
1317,
364,
20842,
29973,
13,
5574,
13,
20182,
852,
448,
29941,
29930,
29875,
353,
448,
29941,
29930,
29886,
448,
29871,
29946,
29930,
29875,
718,
29871,
29941,
29953,
29953,
29892,
282,
718,
474,
353,
29871,
29896,
29906,
29946,
29889,
1317,
282,
263,
6019,
1353,
29973,
13,
8824,
13,
20182,
852,
29871,
29945,
29930,
29916,
448,
29871,
29906,
29930,
29883,
353,
29871,
29945,
29906,
29906,
29896,
29892,
29871,
29946,
29930,
29916,
448,
29871,
29946,
29946,
29947,
29945,
718,
29871,
29941,
29896,
29900,
353,
274,
29889,
1317,
921,
20842,
29973,
13,
5574,
13,
12024,
286,
29898,
29939,
29897,
353,
448,
29939,
448,
29871,
29896,
29889,
2803,
364,
367,
286,
6278,
29906,
467,
1317,
313,
29906,
29896,
29914,
29953,
6802,
29878,
29930,
29906,
29953,
263,
20842,
1353,
29973,
13,
5574,
13,
20182,
852,
448,
29906,
29930,
29926,
448,
432,
718,
29871,
29906,
29896,
29900,
29941,
353,
29871,
29900,
29889,
1317,
432,
20842,
29973,
13,
8824,
13,
12024,
269,
29898,
29888,
29897,
353,
285,
1068,
29906,
448,
285,
448,
29871,
29945,
29889,
1317,
269,
6278,
29955,
29897,
263,
20842,
1353,
29973,
13,
5574,
13,
20182,
852,
448,
29906,
29930,
29894,
448,
29871,
29941,
353,
448,
29941,
29930,
29894,
718,
330,
29892,
448,
29906,
29930,
29894,
448,
29871,
29946,
29930,
29887,
353,
448,
29896,
29947,
29889,
2803,
288,
367,
313,
29894,
718,
448,
29896,
6802,
3552,
29899,
29947,
6802,
6278,
29946,
8106,
12142,
448,
29941,
29930,
29883,
448,
29871,
29946,
29930,
29882,
353,
448,
29955,
29929,
29892,
29871,
29900,
29930,
29883,
448,
288,
29930,
29882,
353,
448,
29906,
29930,
29883,
718,
29871,
29941,
29946,
29889,
1317,
274,
6019,
29973,
13,
8824,
13,
20182,
852,
448,
29941,
29955,
353,
448,
29891,
718,
29871,
29906,
29945,
29889,
1317,
343,
6019,
29973,
13,
8824,
13,
20182,
852,
29871,
29941,
29930,
29890,
353,
29871,
29906,
29930,
29893,
718,
29871,
29945,
29892,
448,
29941,
29930,
29890,
353,
29871,
29945,
29930,
29893,
448,
29871,
29896,
29906,
448,
29871,
29906,
29947,
29889,
12142,
448,
29896,
29947,
29900,
353,
448,
29900,
29930,
29920,
448,
29871,
29945,
29930,
29920,
448,
281,
29930,
29886,
29892,
448,
29906,
29930,
29886,
718,
29871,
29906,
353,
29871,
29900,
29889,
1317,
503,
6019,
29973,
13,
8824,
13,
20182,
852,
29871,
29900,
353,
29871,
29941,
29930,
29895,
448,
29871,
29946,
29930,
29939,
448,
29871,
29906,
29929,
29953,
29941,
29892,
448,
29941,
29930,
29939,
353,
448,
29941,
29930,
29895,
448,
29871,
29946,
29930,
29939,
718,
29871,
29906,
29929,
29947,
29941,
29889,
1317,
413,
6019,
29973,
13,
8824,
13,
3624,
448,
29946,
718,
29871,
29945,
718,
448,
29906,
448,
313,
29941,
448,
29871,
29955,
29945,
29945,
29897,
6019,
29973,
13,
5574,
13,
3624,
29871,
29896,
29947,
29941,
29900,
29914,
29929,
718,
29871,
29953,
29914,
6278,
29896,
29947,
29897,
263,
20842,
1353,
29973,
13,
5574,
13,
3624,
8521,
29946,
6802,
6278,
29896,
29897,
448,
8521,
29896,
29896,
29955,
29941,
29929,
6802,
29896,
29941,
20842,
29973,
13,
8824,
13,
20182,
852,
29871,
29929,
29930,
29891,
448,
29871,
29953,
29930,
29891,
448,
29871,
29945,
29896,
353,
29871,
29900,
29889,
1317,
313,
29941,
29941,
29914,
29896,
6802,
29941,
29930,
29891,
6019,
29973,
13,
8824,
13,
20182,
852,
269,
718,
29871,
29946,
29930,
29920,
448,
29871,
29906,
29900,
353,
29871,
29941,
29930,
29920,
29892,
269,
448,
29871,
29896,
29955,
353,
29871,
29906,
29930,
29920,
29889,
1317,
269,
263,
20842,
1353,
29973,
13,
8824,
13,
20182,
852,
29871,
29947,
353,
448,
29945,
29930,
29878,
448,
29871,
29955,
29889,
2803,
286,
29898,
29890,
29897,
353,
448,
29896,
29896,
29953,
29930,
29890,
718,
29871,
29955,
29889,
1317,
286,
29898,
29878,
29897,
20842,
29973,
13,
5574,
13,
12024,
3855,
353,
448,
29896,
29900,
448,
448,
29906,
29896,
29889,
1317,
3855,
263,
20842,
1353,
29973,
13,
8824,
13,
12024,
432,
353,
448,
29941,
29947,
29906,
718,
29871,
29945,
29945,
29929,
29889,
1317,
432,
20842,
29973,
13,
5574,
13,
20182,
852,
448,
29946,
29930,
29874,
448,
413,
718,
29871,
29955,
29906,
29900,
353,
29871,
29900,
29892,
263,
718,
29871,
29900,
29930,
29895,
448,
29871,
29896,
29955,
29945,
353,
413,
29889,
2803,
281,
29898,
29880,
29897,
353,
301,
448,
29871,
29946,
29889,
2803,
343,
367,
281,
29898,
29955,
467,
12142,
29871,
29906,
29930,
29885,
718,
29871,
29946,
29930,
29873,
353,
448,
29900,
29930,
29873,
718,
29871,
29896,
29906,
29906,
29892,
29871,
29900,
353,
343,
29930,
29885,
718,
29871,
29945,
29930,
29873,
448,
263,
29889,
1317,
286,
6019,
29973,
13,
5574,
13,
12024,
270,
353,
448,
29946,
29946,
718,
29871,
29896,
29906,
29941,
29889,
1317,
270,
6019,
29973,
13,
5574,
13,
12024,
330,
29898,
29916,
29897,
353,
448,
29916,
1068,
29941,
718,
29871,
29896,
29896,
29930,
29916,
1068,
29906,
448,
921,
718,
29871,
29945,
29889,
2803,
285,
367,
330,
29898,
29945,
467,
2803,
343,
29898,
29939,
29897,
353,
448,
29941,
29930,
29939,
1068,
29906,
718,
29871,
29946,
29930,
29939,
448,
29871,
29906,
29889,
2803,
432,
367,
343,
6278,
29945,
467,
2803,
274,
353,
432,
718,
285,
29889,
1317,
274,
263,
6019,
1353,
29973,
13,
5574,
13,
20182,
852,
29871,
29900,
353,
448,
29955,
29930,
29877,
718,
29871,
29941,
29930,
29877,
718,
29871,
29947,
29889,
2803,
413,
367,
313,
29896,
29955,
29914,
29906,
6802,
29898,
29877,
29914,
29946,
467,
2803,
301,
353,
413,
448,
29871,
29896,
29896,
29889,
1317,
301,
263,
6019,
1353,
29973,
13,
8824,
13,
20182,
852,
448,
29945,
29930,
29920,
718,
29871,
29946,
29930,
29874,
448,
29871,
29945,
29953,
29946,
353,
448,
29900,
29930,
29874,
29892,
29871,
29906,
29946,
29946,
353,
448,
29906,
29930,
29920,
448,
29871,
29941,
29930,
29874,
29889,
2803,
413,
353,
503,
718,
29871,
29896,
29955,
29896,
29889,
1317,
413,
263,
6019,
1353,
29973,
13,
8824,
13,
20182,
852,
29871,
29941,
29930,
29916,
448,
29871,
29945,
29930,
29873,
353,
29871,
29906,
29945,
29955,
29892,
448,
29906,
29930,
29916,
448,
29871,
29953,
29930,
29873,
353,
448,
29873,
448,
29871,
29896,
29941,
29947,
29889,
1317,
921,
263,
20842,
1353,
29973,
13,
8824,
13,
12024,
281,
29898,
29939,
29897,
353,
448,
29906,
29930,
29939,
1068,
29941,
718,
29871,
29941,
29930,
29939,
1068,
29906,
448,
3855,
448,
29871,
29941,
29889,
2803,
503,
29898,
29883,
29897,
353,
448,
29883,
1068,
29941,
718,
274,
1068,
29906,
718,
29871,
29896,
29889,
2803,
289,
29898,
29881,
29897,
353,
281,
29898,
29881,
29897,
448,
29871,
29941,
29930,
29920,
29898,
29881,
467,
2803,
282,
367,
289,
29898,
29900,
467,
1317,
29871,
29896,
29945,
29930,
29899,
29955,
29930,
29906,
29914,
29886,
6019,
29973,
13,
8824,
13,
12024,
318,
353,
29871,
29896,
29906,
29946,
448,
29871,
29945,
29896,
29889,
2803,
260,
353,
318,
718,
29871,
29945,
29946,
29889,
1317,
260,
263,
20842,
1353,
29973,
13,
8824,
13,
12024,
302,
367,
8521,
29896,
448,
29871,
29945,
29941,
6802,
3552,
29899,
29945,
6802,
29945,
467,
2803,
281,
353,
302,
718,
448,
29941,
29906,
29889,
1317,
281,
263,
20842,
1353,
29973,
13,
5574,
13,
12024,
302,
29898,
29881,
29897,
353,
29871,
29929,
29953,
29930,
29881,
1068,
29941,
718,
270,
1068,
29906,
718,
270,
448,
29871,
29896,
29889,
2803,
274,
367,
302,
29898,
29896,
467,
2803,
3855,
353,
29871,
29953,
29953,
448,
274,
29889,
2803,
286,
353,
3855,
718,
29871,
29953,
29953,
29889,
1317,
286,
263,
20842,
1353,
29973,
13,
5574,
13,
12024,
281,
353,
448,
29955,
29955,
29896,
448,
448,
29896,
29896,
29900,
29906,
29889,
1317,
281,
263,
6019,
1353,
29973,
13,
5574,
13,
12024,
285,
353,
448,
29953,
448,
448,
29953,
29889,
12142,
29871,
29906,
29930,
29875,
353,
448,
29888,
29930,
29875,
718,
29871,
29946,
29906,
29947,
29889,
1317,
474,
263,
20842,
1353,
29973,
13,
5574,
13,
20182,
852,
29871,
29900,
353,
263,
448,
29871,
29896,
29946,
718,
29871,
29896,
29889,
12142,
29871,
29941,
29930,
29877,
718,
263,
353,
448,
29896,
29955,
29889,
1317,
313,
29941,
29929,
29953,
29914,
6278,
29941,
29900,
876,
14571,
29946,
29914,
29877,
29897,
20842,
29973,
13,
5574,
13,
12024,
503,
367,
8521,
29906,
6802,
6278,
29906,
29897,
718,
448,
29896,
718,
29871,
29946,
29889,
12142,
29871,
29945,
29930,
29879,
448,
503,
29930,
29879,
448,
29871,
29955,
29929,
353,
29871,
29900,
29889,
1317,
269,
20842,
29973,
13,
8824,
13,
12024,
318,
29898,
29916,
29897,
353,
29871,
29946,
29896,
29955,
29930,
29916,
1068,
29906,
718,
29871,
29946,
29930,
29916,
448,
29871,
29946,
29889,
2803,
432,
367,
318,
29898,
29941,
467,
12142,
448,
29945,
29930,
29939,
718,
432,
353,
448,
29955,
29900,
29946,
29889,
2803,
260,
353,
3855,
718,
448,
29946,
29953,
29953,
29889,
1317,
260,
263,
6019,
1353,
29973,
13,
8824,
13,
12024,
474,
367,
29871,
29906,
448,
29871,
29896,
448,
313,
29941,
448,
29871,
29900,
467,
2803,
289,
29898,
29873,
29897,
353,
29871,
29955,
29930,
29873,
1068,
29941,
718,
29871,
29896,
29896,
29930,
29873,
1068,
29906,
448,
29871,
29906,
29896,
29930,
29873,
448,
29871,
29896,
29929,
29889,
2803,
263,
29898,
29887,
29897,
353,
448,
29946,
29930,
29887,
1068,
29941,
448,
29871,
29945,
29930,
29887,
1068,
29906,
718,
29871,
29896,
29900,
29930,
29887,
718,
29871,
29929,
29889,
2803,
302,
29898,
29920,
29897,
353,
29871,
29896,
29941,
29930,
29874,
29898,
29920,
29897,
718,
29871,
29953,
29930,
29890,
29898,
29920,
467,
1317,
302,
29898,
29875,
29897,
20842,
29973,
13,
8824,
13,
12024,
343,
353,
29871,
29906,
29900,
29946,
448,
29871,
29896,
29929,
29889,
1317,
343,
263,
6019,
1353,
29973,
13,
8824,
13,
12024,
3855,
29898,
29881,
29897,
353,
270,
718,
29871,
29955,
29889,
2803,
282,
367,
3855,
6278,
29941,
467,
12142,
29871,
29900,
353,
282,
29930,
29883,
448,
29871,
29906,
29930,
29883,
448,
29871,
29941,
29946,
29889,
12142,
448,
29906,
29930,
29875,
718,
29871,
29941,
29930,
29895,
353,
29871,
29947,
29930,
29895,
448,
29871,
29941,
29896,
29892,
474,
353,
29871,
29946,
29930,
29895,
448,
274,
29889,
1317,
474,
263,
20842,
1353,
29973,
13,
8824,
13,
3624,
29871,
29946,
29945,
29955,
718,
8521,
29953,
448,
448,
29953,
11877,
29906,
29914,
29946,
6019,
29973,
13,
5574,
13,
12024,
286,
29898,
29894,
29897,
353,
29871,
29945,
29930,
29894,
1068,
29941,
448,
29871,
29941,
29930,
29894,
448,
29871,
29896,
29889,
2803,
282,
29898,
29888,
29897,
367,
278,
937,
16291,
310,
448,
29906,
29896,
29930,
29888,
1068,
29946,
29914,
29946,
718,
285,
1068,
29941,
29914,
29941,
718,
29871,
29896,
29941,
29930,
29888,
1068,
29906,
29914,
29906,
718,
29871,
29945,
29930,
29888,
718,
29871,
29941,
29889,
2803,
330,
29898,
29875,
29897,
353,
29871,
29929,
29930,
29885,
29898,
29875,
29897,
718,
29871,
29906,
29930,
29886,
29898,
29875,
467,
1317,
330,
29898,
29941,
29897,
20842,
29973,
13,
8824,
13,
20182,
852,
448,
29941,
29930,
29888,
718,
29871,
29906,
353,
448,
29884,
29892,
448,
29946,
29930,
29884,
448,
29871,
29947,
353,
29871,
29906,
29930,
29888,
718,
29871,
29906,
29930,
29888,
29889,
12142,
29871,
29946,
29930,
29877,
448,
29871,
29945,
29930,
29877,
448,
29871,
29906,
29941,
29906,
353,
448,
29941,
29930,
29878,
29892,
364,
448,
29871,
29945,
29930,
29877,
448,
29871,
29947,
29906,
353,
285,
29889,
1317,
364,
20842,
29973,
13,
5574,
13,
12024,
432,
367,
8521,
29929,
6802,
6278,
29953,
29897,
448,
8521,
29929,
29906,
6802,
6278,
29947,
467,
2803,
298,
367,
29871,
29941,
29900,
29914,
6278,
29946,
11877,
29926,
29914,
29896,
29945,
29889,
12142,
448,
29882,
29930,
29920,
448,
330,
718,
29871,
29941,
29953,
353,
448,
29946,
29930,
29920,
29892,
448,
29946,
29930,
29920,
718,
29871,
29946,
29930,
29887,
718,
29871,
29896,
29945,
29906,
353,
29871,
29900,
29889,
1317,
503,
20842,
29973,
13,
8824,
13,
12024,
343,
29898,
29893,
29897,
353,
29871,
29946,
29906,
29930,
29893,
448,
29871,
29929,
29889,
1317,
343,
29898,
29945,
29897,
263,
6019,
1353,
29973,
13,
8824,
13,
12024,
286,
353,
448,
29941,
29955,
29945,
448,
448,
29896,
29941,
29953,
29953,
29889,
1317,
286,
263,
20842,
1353,
29973,
13,
8824,
13,
20182,
852,
29871,
29900,
353,
29871,
29945,
29930,
29881,
448,
29871,
29946,
29930,
29881,
448,
29871,
29946,
29889,
12142,
29871,
29941,
29896,
353,
448,
29945,
29930,
29891,
448,
288,
718,
29871,
29906,
29892,
29871,
29941,
29930,
29891,
448,
29871,
29896,
353,
270,
29930,
29877,
29889,
2803,
263,
29898,
29916,
29897,
353,
448,
29906,
29953,
29930,
29916,
448,
29871,
29941,
29889,
1317,
263,
29898,
29891,
29897,
263,
20842,
1353,
29973,
13,
8824,
13,
12024,
269,
353,
448,
29906,
29900,
29941,
448,
448,
29946,
29946,
29955,
29889,
2803,
343,
353,
269,
718,
448,
29896,
29941,
29896,
29889,
1317,
343,
263,
6019,
1353,
29973,
13,
5574,
13,
3624,
29871,
29945,
29914,
6278,
29929,
29900,
11877,
29946,
448,
29871,
29896,
29906,
29946,
29946,
29906,
29914,
6278,
29896,
29947,
29897,
20842,
29973,
13,
8824,
13,
20182,
852,
448,
29906,
29930,
29876,
718,
29871,
29929,
29900,
29896,
353,
29871,
29946,
29930,
29891,
448,
29871,
29955,
29930,
29891,
29892,
448,
29941,
29930,
29876,
718,
343,
718,
29871,
29896,
29941,
29946,
29947,
353,
29871,
29900,
29889,
1317,
302,
263,
6019,
1353,
29973,
13,
5574,
13,
12024,
413,
29898,
29920,
29897,
353,
448,
29920,
1068,
29906,
448,
29871,
29906,
29930,
29920,
448,
29871,
29896,
29889,
2803,
325,
367,
413,
6278,
29896,
467,
2803,
286,
29898,
29891,
29897,
353,
448,
29891,
1068,
29941,
448,
343,
718,
29871,
29896,
29896,
29929,
29889,
1317,
286,
29898,
29894,
29897,
6019,
29973,
13,
8824,
13,
12024,
288,
29898,
29884,
29897,
353,
29871,
29941,
29953,
29930,
29884,
718,
29871,
29941,
29889,
1317,
288,
29898,
29947,
29897,
263,
6019,
1353,
29973,
13,
8824,
13,
20182,
852,
29871,
29900,
29930,
29939,
448,
29871,
29945,
29930,
29939,
353,
448,
29896,
29900,
29892,
448,
29946,
29930,
29939,
353,
29871,
29946,
29930,
29916,
448,
29871,
29929,
29953,
29889,
1317,
921,
6019,
29973,
13,
8824,
13,
20182,
852,
286,
718,
29871,
29929,
353,
448,
29900,
29930,
29885,
718,
29871,
29941,
29930,
29883,
29892,
448,
29896,
29945,
353,
29871,
29941,
29930,
29885,
718,
29871,
29941,
29930,
29883,
29889,
2803,
503,
29898,
29879,
29897,
353,
29871,
29941,
29930,
29879,
1068,
29906,
448,
29871,
29955,
29930,
29879,
448,
29871,
29896,
29896,
29889,
1317,
503,
29898,
29885,
29897,
263,
6019,
1353,
29973,
13,
5574,
13,
12024,
285,
29898,
29939,
29897,
367,
278,
1473,
16291,
310,
448,
29939,
1068,
29945,
29914,
29906,
29900,
718,
29871,
29955,
29930,
29939,
1068,
29946,
29914,
29896,
29906,
718,
29871,
29941,
29930,
29939,
1068,
29941,
29914,
29906,
448,
3855,
29889,
2803,
474,
367,
285,
29898,
29947,
467,
1317,
5135,
29899,
29941,
29900,
6802,
29875,
6802,
3552,
29899,
29953,
6802,
29946,
29900,
29897,
263,
20842,
1353,
29973,
13,
5574,
13,
12024,
289,
367,
29871,
29906,
29914,
29906,
29930,
29941,
29906,
29914,
29946,
29889,
2803,
302,
367,
29871,
29941,
29955,
29914,
3552,
29899,
29896,
29946,
6802,
29890,
718,
29871,
29906,
467,
12142,
448,
29906,
29930,
29878,
448,
29871,
29906,
29930,
29878,
353,
448,
29876,
29889,
1317,
364,
263,
20842,
1353,
29973,
13,
8824,
13,
20182,
852,
29871,
29945,
29930,
29926,
448,
318,
353,
448,
29941,
29930,
29884,
718,
29871,
29941,
29896,
29892,
29871,
29906,
29930,
29926,
718,
318,
353,
29871,
29896,
29941,
29889,
12142,
448,
29926,
29930,
29876,
353,
448,
29953,
29953,
29945,
448,
29871,
29906,
29929,
29900,
29889,
1317,
302,
263,
6019,
1353,
29973,
13,
5574,
13,
20182,
852,
448,
29906,
29930,
29893,
448,
29871,
29906,
29930,
29926,
718,
29871,
29941,
29953,
29929,
29906,
353,
29871,
29900,
29892,
29871,
29896,
29955,
29900,
29896,
718,
29871,
29941,
29947,
29946,
29941,
353,
29871,
29941,
29930,
29893,
448,
29871,
29941,
29930,
29926,
29889,
1317,
281,
20842,
29973,
13,
8824,
13,
12024,
3855,
29898,
29875,
29897,
367,
278,
1473,
16291,
310,
448,
29875,
1068,
29947,
29914,
29896,
29896,
29906,
448,
474,
1068,
29945,
29914,
29896,
29906,
29900,
718,
474,
1068,
29946,
29914,
29896,
29906,
448,
29871,
29906,
29930,
29875,
29889,
2803,
318,
29898,
29873,
29897,
367,
278,
4654,
16291,
310,
3855,
29898,
29873,
467,
1317,
318,
6278,
29896,
29897,
263,
6019,
1353,
29973,
13,
5574,
13,
12024,
301,
29898,
29939,
29897,
353,
29871,
29946,
29930,
29939,
1068,
29941,
718,
29871,
29946,
29930,
29939,
1068,
29906,
718,
29871,
29896,
29889,
2803,
289,
353,
29871,
29946,
29906,
448,
29871,
29941,
29900,
29889,
2803,
298,
29898,
29895,
29897,
353,
448,
29895,
1068,
29906,
718,
29871,
29896,
29906,
29930,
29895,
718,
29871,
29941,
29889,
2803,
270,
367,
298,
29898,
29890,
467,
1317,
301,
29898,
29881,
29897,
20842,
29973,
13,
5574,
13,
12024,
270,
353,
29871,
29906,
29945,
29929,
29955,
448,
29871,
29896,
29941,
29900,
29946,
29889,
1317,
270,
6019,
29973,
13,
8824,
13,
12024,
274,
367,
29871,
29953,
29945,
29914,
6278,
29945,
29897,
718,
8521,
29953,
6802,
6278,
29941,
467,
2803,
921,
29898,
29895,
29897,
353,
413,
1068,
29941,
718,
29871,
29896,
29896,
29930,
29895,
1068,
29906,
448,
29871,
29946,
29930,
29895,
718,
29871,
29896,
29945,
29889,
1317,
921,
29898,
29883,
29897,
6019,
29973,
13,
5574,
13,
12024,
281,
353,
29871,
29929,
718,
29871,
29941,
29896,
29889,
12142,
29871,
29941,
29930,
29876,
353,
29871,
29953,
29945,
718,
281,
29889,
1317,
302,
6019,
29973,
13,
8824,
13,
20182,
852,
448,
29941,
29930,
29875,
353,
448,
29896,
448,
29871,
29896,
29941,
29929,
29955,
29889,
2803,
921,
367,
29871,
29955,
29955,
29900,
29947,
29914,
6278,
29906,
29947,
29897,
718,
29871,
29953,
29914,
29906,
29896,
29889,
2803,
282,
353,
474,
718,
921,
29889,
1317,
282,
6019,
29973,
13,
5574,
13,
12024,
270,
353,
29871,
29896,
29953,
448,
29871,
29906,
29906,
29889,
2803,
286,
367,
313,
29881,
718,
29871,
29906,
11877,
29906,
29941,
29945,
29914,
6278,
29946,
467,
12142,
29871,
29906,
29930,
29876,
448,
286,
353,
448,
29941,
29930,
29876,
29889,
1317,
302,
6019,
29973,
13,
5574,
13,
20182,
852,
448,
29946,
29930,
29891,
718,
29871,
29900,
29930,
29891,
353,
448,
29896,
29906,
29900,
29889,
2803,
270,
353,
343,
448,
29871,
29896,
29945,
29889,
1317,
270,
20842,
29973,
13,
5574,
13,
3624,
29871,
29929,
29955,
29945,
29906,
29914,
29906,
29946,
718,
8521,
29953,
6802,
6278,
29929,
29897,
20842,
29973,
13,
5574,
13,
12024,
282,
29898,
29876,
29897,
353,
448,
29955,
29947,
29930,
29876,
448,
29871,
29941,
29896,
29889,
1317,
282,
6278,
29896,
29900,
29897,
263,
20842,
1353,
29973,
13,
5574,
13,
12024,
330,
367,
448,
29896,
29896,
718,
29871,
29953,
14571,
29929,
29914,
29941,
467,
2803,
285,
353,
29871,
29953,
448,
330,
29889,
12142,
448,
29888,
353,
448,
29876,
718,
29871,
29941,
29906,
29889,
1317,
302,
20842,
29973,
13,
8824,
13,
12024,
302,
29898,
29879,
29897,
353,
448,
29879,
1068,
29941,
718,
29871,
29896,
29900,
29930,
29879,
1068,
29906,
718,
29871,
29955,
29930,
29879,
718,
29871,
29896,
29896,
29889,
2803,
270,
367,
302,
29898,
29929,
467,
2803,
281,
353,
448,
29896,
29900,
29900,
718,
270,
29889,
1317,
281,
20842,
29973,
13,
5574,
13,
20182,
852,
29871,
29900,
353,
29871,
29946,
29930,
29895,
448,
29871,
29906,
29930,
29895,
448,
29871,
29946,
29930,
29881,
718,
29871,
29906,
29946,
29892,
448,
29941,
29930,
29881,
718,
29871,
29896,
29941,
353,
413,
29889,
1317,
8521,
29896,
29930,
29941,
29906,
29906,
29914,
29895,
6802,
29896,
263,
6019,
1353,
29973,
13,
8824,
13,
12024,
286,
29898,
29878,
29897,
353,
448,
29878,
1068,
29941,
448,
29871,
29953,
29930,
29878,
1068,
29906,
718,
29871,
29953,
29930,
29878,
448,
29871,
29946,
29889,
2803,
474,
353,
29871,
29945,
718,
448,
29896,
29906,
29889,
2803,
318,
367,
286,
29898,
29875,
467,
12142,
318,
29930,
29883,
353,
29871,
29929,
29947,
718,
29871,
29896,
29941,
29889,
1317,
274,
6019,
29973,
13,
5574,
13,
20182,
852,
29871,
29941,
29930,
29885,
353,
448,
29885,
718,
29871,
29947,
29889,
12142,
29871,
29900,
29930,
29881,
353,
286,
29930,
29881,
448,
29871,
29945,
29906,
29906,
29889,
12142,
448,
29941,
29930,
29880,
353,
448,
29953,
29930,
29880,
718,
270,
29889,
1317,
301,
263,
6019,
1353,
29973,
13,
8824,
13,
12024,
413,
353,
29871,
29946,
29929,
448,
29871,
29955,
29955,
29889,
2803,
263,
353,
413,
448,
448,
29953,
29906,
29889,
1317,
263,
20842,
29973,
13,
5574,
13,
20182,
852,
29871,
29896,
29900,
29930,
29888,
718,
29871,
29896,
29941,
29900,
353,
29871,
29896,
29945,
29930,
29888,
29889,
1317,
285,
263,
20842,
1353,
29973,
13,
5574,
13,
12024,
301,
353,
29871,
29945,
448,
29871,
29941,
29889,
2803,
474,
367,
301,
29914,
6278,
29941,
11877,
29898,
29945,
718,
448,
29906,
467,
1317,
29871,
29896,
16395,
29906,
29955,
448,
8521,
29946,
6802,
29875,
29897,
263,
6019,
1353,
29973,
13,
8824,
13,
12024,
474,
353,
29871,
29945,
29946,
448,
448,
29896,
29953,
29929,
29889,
1317,
474,
20842,
29973,
13,
8824,
13,
12024,
286,
367,
448,
29941,
448,
8521,
29896,
29953,
29930,
29896,
448,
448,
29896,
467,
12142,
29871,
29900,
353,
29871,
29906,
29930,
29886,
448,
29871,
29896,
29900,
29953,
718,
286,
29889,
1317,
282,
20842,
29973,
13,
8824,
13,
20182,
852,
448,
29945,
29930,
29939,
448,
318,
718,
29871,
29955,
29953,
29946,
29896,
353,
29871,
29900,
29892,
318,
718,
29871,
29946,
29945,
29929,
29896,
353,
29871,
29953,
29930,
29939,
448,
29871,
29941,
29930,
29939,
29889,
1317,
3855,
263,
6019,
1353,
29973,
13,
8824,
13,
12024,
3855,
29898,
29890,
29897,
367,
278,
937,
16291,
310,
448,
29941,
29941,
29930,
29890,
1068,
29906,
29914,
29906,
718,
29871,
29896,
29945,
29930,
29890,
718,
29871,
29941,
29889,
2803,
274,
367,
3855,
29898,
29896,
29900,
467,
1317,
8521,
29896,
6802,
6278,
29946,
29897,
718,
274,
29914,
6278,
29946,
29897,
20842,
29973,
13,
8824,
13,
20182,
852,
29871,
29900,
353,
29871,
29896,
29896,
29930,
29873,
448,
29871,
29946,
29900,
29953,
448,
29871,
29945,
29953,
29955,
29955,
29889,
1317,
260,
263,
20842,
1353,
29973,
13,
5574,
13,
20182,
852,
29871,
29946,
29930,
29881,
448,
29871,
29941,
29947,
353,
29871,
29906,
29889,
1317,
8521,
29947,
29896,
29945,
6802,
29881,
29930,
29896,
29930,
29899,
29906,
20842,
29973,
13,
8824,
13,
12024,
343,
29898,
29894,
29897,
353,
325,
1068,
29941,
718,
29871,
29946,
29930,
29894,
1068,
29906,
448,
29871,
29945,
29930,
29894,
718,
29871,
29941,
29889,
2803,
285,
367,
343,
6278,
29945,
467,
2803,
330,
29898,
29884,
29897,
353,
318,
1068,
29906,
448,
29871,
29929,
29930,
29884,
448,
29871,
29896,
29955,
29889,
2803,
413,
367,
330,
29898,
29896,
29900,
467,
1317,
413,
29930,
6278,
29906,
718,
285,
718,
448,
29906,
29897,
20842,
29973,
13,
8824,
13,
12024,
281,
353,
448,
29953,
29906,
29953,
718,
29871,
29896,
29941,
29955,
29945,
29889,
1317,
281,
263,
20842,
1353,
29973,
13,
5574,
13,
20182,
852,
29871,
29945,
29930,
29920,
448,
29871,
29906,
29947,
29906,
29906,
448,
29871,
29906,
29929,
29941,
29941,
353,
29871,
29900,
29889,
1317,
503,
6019,
29973,
13,
5574,
13,
12024,
413,
353,
29871,
29941,
29947,
718,
448,
29955,
29889,
1317,
413,
6019,
29973,
13,
5574,
13,
20182,
852,
29871,
29947,
29930,
29885,
353,
29871,
29896,
29900,
29930,
29885,
448,
29871,
29946,
29889,
12142,
448,
29941,
29930,
29888,
448,
29871,
29896,
718,
29871,
29906,
353,
448,
29946,
29930,
29879,
29892,
448,
29906,
29930,
29888,
718,
29871,
29896,
29953,
353,
29871,
29945,
29930,
29879,
29889,
1317,
269,
29930,
29896,
29955,
718,
313,
29896,
448,
286,
29897,
20842,
29973,
13,
5574,
13,
20182,
852,
29871,
29945,
29953,
353,
448,
29941,
29930,
29880,
718,
301,
29889,
1317,
29871,
29941,
29914,
6278,
29955,
29897,
718,
8521,
29906,
29946,
29946,
29947,
6802,
29880,
263,
6019,
1353,
29973,
13,
8824,
13,
20182,
852,
29871,
29906,
29953,
29929,
353,
448,
29900,
29930,
29876,
718,
29871,
29946,
29930,
29876,
448,
29871,
29941,
29930,
29879,
29892,
448,
29876,
718,
29871,
29906,
29930,
29879,
353,
448,
29953,
29896,
29889,
1317,
302,
20842,
29973,
13,
8824,
13,
12024,
302,
353,
448,
29946,
718,
29871,
29955,
29889,
2803,
301,
353,
29871,
29946,
29945,
718,
448,
29955,
29929,
29889,
2803,
286,
353,
302,
448,
301,
29889,
1317,
286,
6019,
29973,
13,
5574,
13,
20182,
852,
29871,
29955,
29930,
29885,
448,
29871,
29946,
29930,
29885,
353,
448,
29941,
29929,
29889,
2803,
364,
353,
29871,
29906,
29947,
718,
286,
29889,
1317,
364,
20842,
29973,
13,
5574,
13,
20182,
852,
448,
29896,
29900,
29900,
448,
29871,
29906,
29946,
353,
448,
29946,
29930,
29926,
29889,
12142,
29871,
29900,
353,
448,
29900,
29930,
29876,
448,
302,
718,
432,
29889,
1317,
302,
263,
6019,
1353,
29973,
13,
5574,
13,
20182,
852,
448,
29941,
29930,
29883,
448,
29871,
29941,
353,
448,
29929,
29889,
12142,
29871,
29906,
29946,
353,
281,
718,
274,
29930,
29926,
29892,
29871,
29945,
29930
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
SHAFAQNA Exclusive: How do we know Allah (SWT) is satisfied with us?
SHAFAQNA (Shia International News Association) – Answering the question Sheikh Ansarian said the same question was asked from Imam Baqer (AS) and Imam explained by saying that “refer to your heart and see if you like the friends of Allah? If you do, surely the Almighty also likes you”. [1] Sheikh Ansarian added that the friendship of Allah (SWT) can be realised in two ways. One is that what are the signs of Allah’s love to created beings in general and the other what are the signs towards an obedient servant of the Almighty?
In the first instance there are many signs indicating the love of the Creator towards the created beings such as spiritual feelings. The truth is if we do not like someone we do not go to see them, phone them, write to them or invite them to our house. The holy Quran, this great letter of Allah has been sent to humans inviting them to worship specially do SALAAT and FASTING in certain times. Are these not signs of love from Allah? Who is closer to us than veins in our necks and is placed between our hearts and beings. As the great Iranian Poet Sa’adi said “the friend is closer to me than myself but strange that I am far from the friend”.
Sheikh Ansarian pointed to Dua Abu Hamza where Imam Sajjad (AS) said, “thanks to Allah (SWT) whom whenever I wished, asked for my needs. Thanks to Allah who is kind to me without needing anything from me”. For the second situation the best way to see the signs, are to refer to our hearts and find out if we love Allah, love Allah’s friends, love praying and love all the things chosen for us by the Almighty? Obviously Allah will be satisfied by our prayers and good deeds such as SALAT, FASTING, RESPECT FOR PARENTS, etc. and will be dissatisfied by those forbidden acts.
Sheikh Ansarian referred to a narration from Imam Baqer (AS) where he said “Allah has covered three things in three others. Firstly satisfaction in obedience, so do not count any good deeds as small. Secondly anger in sins, so do not count any sins as small and thirdly Allah’s friends are hidden amongst people, so do not belittle anyone. [2] Therefore when someone does a good deed with pure and holy intention for the sake of Allah’s satisfaction, is certainly on a right path but when an individual commits an inappropriate act, moves away from the right path. | [
1,
317,
15715,
4519,
29984,
3521,
1222,
7009,
573,
29901,
1128,
437,
591,
1073,
838,
8083,
313,
29903,
17755,
29897,
338,
15787,
411,
502,
29973,
13,
13,
23498,
4519,
29984,
3521,
313,
2713,
423,
4623,
10130,
7993,
29897,
785,
673,
292,
278,
1139,
2296,
28464,
21877,
13956,
1497,
278,
1021,
1139,
471,
4433,
515,
1954,
314,
6000,
29939,
261,
313,
3289,
29897,
322,
1954,
314,
10824,
491,
5934,
393,
1346,
20275,
304,
596,
5192,
322,
1074,
565,
366,
763,
278,
7875,
310,
838,
8083,
29973,
960,
366,
437,
29892,
18880,
278,
838,
29885,
523,
29891,
884,
4188,
267,
366,
8643,
518,
29896,
29962,
2296,
28464,
21877,
13956,
2715,
393,
278,
27994,
310,
838,
8083,
313,
29903,
17755,
29897,
508,
367,
1855,
3368,
297,
1023,
5837,
29889,
3118,
338,
393,
825,
526,
278,
18906,
310,
838,
8083,
30010,
29879,
5360,
304,
2825,
367,
886,
297,
2498,
322,
278,
916,
825,
526,
278,
18906,
7113,
385,
704,
287,
993,
21649,
310,
278,
838,
29885,
523,
29891,
29973,
13,
13,
797,
278,
937,
2777,
727,
526,
1784,
18906,
23941,
278,
5360,
310,
278,
6760,
1061,
7113,
278,
2825,
367,
886,
1316,
408,
20954,
21737,
29889,
450,
8760,
338,
565,
591,
437,
451,
763,
4856,
591,
437,
451,
748,
304,
1074,
963,
29892,
9008,
963,
29892,
2436,
304,
963,
470,
2437,
568,
963,
304,
1749,
3699,
29889,
450,
26630,
660,
332,
273,
29892,
445,
2107,
5497,
310,
838,
8083,
756,
1063,
2665,
304,
25618,
2437,
11407,
963,
304,
26320,
961,
5584,
437,
317,
1964,
29909,
1299,
322,
13515,
1254,
4214,
297,
3058,
3064,
29889,
4683,
1438,
451,
18906,
310,
5360,
515,
838,
8083,
29973,
11644,
338,
17649,
304,
502,
1135,
2453,
1144,
297,
1749,
452,
4684,
322,
338,
7180,
1546,
1749,
26490,
322,
367,
886,
29889,
1094,
278,
2107,
14883,
713,
3929,
300,
5701,
30010,
10129,
1497,
1346,
1552,
5121,
338,
17649,
304,
592,
1135,
6142,
541,
8515,
393,
306,
626,
2215,
515,
278,
5121,
8643,
13,
13,
13468,
28464,
21877,
13956,
11520,
304,
360,
3357,
1976,
29884,
7904,
1362,
988,
1954,
314,
317,
1175,
29926,
328,
313,
3289,
29897,
1497,
29892,
1346,
386,
1331,
304,
838,
8083,
313,
29903,
17755,
29897,
6029,
10940,
306,
20024,
29892,
4433,
363,
590,
4225,
29889,
1834,
304,
838,
8083,
1058,
338,
2924,
304,
592,
1728,
817,
292,
3099,
515,
592,
8643,
1152,
278,
1473,
6434,
278,
1900,
982,
304,
1074,
278,
18906,
29892,
526,
304,
2737,
304,
1749,
26490,
322,
1284,
714,
565,
591,
5360,
838,
8083,
29892,
5360,
838,
8083,
30010,
29879,
7875,
29892,
5360,
12475,
292,
322,
5360,
599,
278,
2712,
10434,
363,
502,
491,
278,
838,
29885,
523,
29891,
29973,
25735,
838,
8083,
674,
367,
15787,
491,
1749,
12475,
414,
322,
1781,
316,
5779,
1316,
408,
317,
1964,
1299,
29892,
13515,
1254,
4214,
29892,
390,
2890,
4162,
1783,
15842,
349,
1718,
3919,
29903,
29892,
2992,
29889,
322,
674,
367,
16317,
27685,
1000,
491,
1906,
19752,
4215,
14741,
29889,
13,
13,
13468,
28464,
21877,
13956,
12992,
304,
263,
15474,
362,
515,
1954,
314,
6000,
29939,
261,
313,
3289,
29897,
988,
540,
1497,
1346,
2499,
8083,
756,
10664,
2211,
2712,
297,
2211,
4045,
29889,
3824,
368,
26470,
297,
704,
287,
5597,
29892,
577,
437,
451,
2302,
738,
1781,
316,
5779,
408,
2319,
29889,
6440,
368,
27343,
297,
269,
1144,
29892,
577,
437,
451,
2302,
738,
269,
1144,
408,
2319,
322,
4654,
368,
838,
8083,
30010,
29879,
7875,
526,
7934,
22611,
2305,
29892,
577,
437,
451,
1339,
1992,
5019,
29889,
518,
29906,
29962,
7857,
746,
4856,
947,
263,
1781,
316,
287,
411,
8296,
322,
26630,
16392,
363,
278,
16563,
310,
838,
8083,
30010,
29879,
26470,
29892,
338,
8959,
373,
263,
1492,
2224,
541,
746,
385,
5375,
25741,
385,
297,
932,
6649,
403,
1044,
29892,
16229,
3448,
515,
278,
1492,
2224,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Cycling New Zealand
4.11 - 1251 ratings - Source
Everything you need to know to get prepared. Bike maintenance tips to keep you on the road. Comprehensive listings for sleeping, eating and facilities along the way. Lonely Planet knows New Zealand. With some of the world's most varied and dramatic landscapes, New Zealand is a cyclist's dream. From the lush semitropical bush and geothermal wonders of the North Island, to the glaciers and icy-blue rivers of the South, we've chosen rides for every interest and ability level. Whether you want pleasant rural riding on narrow winding lanes, great offroad routes, or strenuous rides through the most spectacular landscapes, this guide gives you the best of New Zealand on two wheels.If you go mountain biking it is crucial you carry spares and a tool kit and know
how to maintain your bike, because if ... (2) spare tubes (2) tyre levers (2) chain
lube and a rag puncture repair kit (check the glue is OK) Allen keys to fit your bike
anbsp;...
Title
:
Cycling New Zealand
Author
:
Scott Kennedy
Publisher
:
Lonely Planet - 2009
ISBN-13
:
You must register with us as either a Registered User before you can Download this Book. You'll be greeted by a simple sign-up page.
Once you have finished the sign-up process, you will be redirected to your download Book page. | [
1,
8045,
19914,
1570,
13450,
13,
13,
29946,
29889,
29896,
29896,
448,
29871,
29896,
29906,
29945,
29896,
26838,
448,
7562,
13,
13,
26526,
1918,
366,
817,
304,
1073,
304,
679,
13240,
29889,
3457,
446,
25413,
25562,
304,
3013,
366,
373,
278,
6520,
29889,
422,
1457,
29882,
6270,
1051,
886,
363,
8709,
292,
29892,
321,
1218,
322,
23330,
3412,
278,
982,
29889,
365,
265,
873,
20540,
9906,
1570,
13450,
29889,
2973,
777,
310,
278,
3186,
29915,
29879,
1556,
23821,
322,
8541,
2454,
2982,
1557,
11603,
29892,
1570,
13450,
338,
263,
24502,
391,
29915,
29879,
12561,
29889,
3645,
278,
301,
1878,
3031,
277,
1336,
936,
27089,
322,
1737,
720,
837,
284,
281,
18452,
310,
278,
4644,
7935,
29892,
304,
278,
14751,
455,
414,
322,
29871,
4245,
29899,
9539,
27515,
310,
278,
4275,
29892,
591,
29915,
345,
10434,
364,
2247,
363,
1432,
4066,
322,
11509,
3233,
29889,
26460,
366,
864,
21246,
17692,
364,
4821,
373,
12474,
281,
4015,
10906,
267,
29892,
2107,
1283,
9972,
12049,
29892,
470,
851,
4814,
681,
364,
2247,
1549,
278,
1556,
6683,
562,
1070,
2982,
1557,
11603,
29892,
445,
10754,
4076,
366,
278,
1900,
310,
1570,
13450,
373,
1023,
21266,
1379,
29889,
3644,
366,
748,
14378,
289,
638,
292,
372,
338,
7618,
1455,
366,
8677,
805,
5114,
322,
263,
5780,
413,
277,
322,
1073,
13,
3525,
304,
7344,
596,
4768,
446,
29892,
1363,
565,
2023,
313,
29906,
29897,
29337,
23131,
267,
313,
29906,
29897,
7911,
276,
454,
874,
313,
29906,
29897,
9704,
13,
29880,
4003,
322,
263,
17052,
6035,
312,
545,
26032,
413,
277,
313,
3198,
278,
3144,
434,
338,
9280,
29897,
16092,
6611,
304,
6216,
596,
4768,
446,
13,
273,
29890,
1028,
29936,
856,
13,
13,
7030,
13,
13,
29901,
13,
13,
29733,
19914,
1570,
13450,
13,
13,
13720,
13,
13,
29901,
13,
13,
4421,
1501,
23166,
13,
13,
21076,
1674,
261,
13,
13,
29901,
13,
13,
29931,
265,
873,
20540,
448,
29871,
29906,
29900,
29900,
29929,
13,
13,
8587,
29899,
29896,
29941,
13,
13,
29901,
13,
13,
3492,
1818,
6036,
411,
502,
408,
2845,
263,
12577,
287,
4911,
1434,
366,
508,
25553,
445,
6726,
29889,
887,
29915,
645,
367,
1395,
300,
287,
491,
263,
2560,
1804,
29899,
786,
1813,
29889,
13,
13,
26222,
366,
505,
7743,
278,
1804,
29899,
786,
1889,
29892,
366,
674,
367,
6684,
287,
304,
596,
5142,
6726,
1813,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
The invention relates to computer memory, particularly to dynamic random access memory (DRAM).
A conventional DRAM cell requires expensive process steps to develop a capacitor. Moreover, a conventional dual-port DRAM requires major process changes to optimize the capacitor processing. Furthermore, compared to computer memory such as static random access memory (SRAM), the conventional DRAM is slower in speed due to the generation of charge sharing read differential. | [
1,
450,
297,
7316,
1104,
1078,
304,
6601,
3370,
29892,
10734,
304,
7343,
4036,
2130,
3370,
313,
29928,
25058,
467,
13,
29909,
28557,
360,
25058,
3038,
6858,
19390,
1889,
6576,
304,
2693,
263,
11101,
2105,
29889,
12808,
29892,
263,
28557,
14581,
29899,
637,
360,
25058,
6858,
4655,
1889,
3620,
304,
24656,
278,
11101,
2105,
9068,
29889,
16478,
29892,
9401,
304,
6601,
3370,
1316,
408,
2294,
4036,
2130,
3370,
313,
29903,
25058,
511,
278,
28557,
360,
25058,
338,
20312,
297,
6210,
2861,
304,
278,
12623,
310,
8323,
19383,
1303,
16712,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
As officials question the suspect of the now dozen mail bombs addressed to critics of Trump, the president is lamenting about how this might negatively affect Republicans leading up to the midterm elections. | [
1,
1094,
24921,
1139,
278,
12326,
310,
278,
1286,
24231,
10524,
13585,
29879,
20976,
304,
28431,
310,
27504,
29892,
278,
6673,
338,
301,
1166,
292,
1048,
920,
445,
1795,
3480,
6703,
6602,
8063,
550,
8236,
701,
304,
278,
7145,
8489,
20209,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
The Bluebeards Revengehttp://www.bluebeards-revenge.co.uk/
The manliest grooming brand on the planetFri, 31 Jul 2015 16:02:08 +0000en-UShourly1http://wordpress.org/?v=4.2.3Bluebeards stunt pilot takes to tarmac in nail-biting new ‘Plane Vs Car’ racehttp://www.bluebeards-revenge.co.uk/blog/bluebeards-stunt-pilot-takes-to-tarmac-in-nail-biting-new-plane-vs-car-race/
http://www.bluebeards-revenge.co.uk/blog/bluebeards-stunt-pilot-takes-to-tarmac-in-nail-biting-new-plane-vs-car-race/#commentsThu, 23 Jul 2015 11:19:53 +0000http://www.bluebeards-revenge.co.uk/?p=12414As far as manliness goes, we’d say performing nail-biting air displays in a branded Bluebeards stunt plane has got to be up there at the top of the scale.
But Bluebeards stunt pilot and true adrenaline junkie Ben Lovering is stepping things up a notch with his latest venture as he takes to the tarmac in a nail-biting new race dubbed ‘Plane vs Car’.
The race sees Ben teaming up with with friend and colleague Rich Goodwin in a white-knuckle bid to pit car against plane – and see which has got what it takes to come out on the very top.
With Ben climbing into the driving seat of a slick Porsche GT3 and Rich taking the flying controls of his Pitts Special, it’s set to be an unmissable affair for speed junkies, with the guys now in talks to take the race to airs hows up and down the country.
G-Klaw may be taking the side-lines for this particular project, but The Bluebeards Revenge will still be up there in the thick of the action, with the Porsche GT3 branded up to the maximum as Ben takes on his rival.
There are no confirmed dates as yet, but once the green light is given we’ll be letting you know where you can get in on a slice of the action. watch this space.
]]>http://www.bluebeards-revenge.co.uk/blog/bluebeards-stunt-pilot-takes-to-tarmac-in-nail-biting-new-plane-vs-car-race/feed/0Choosing the right hair-styling producthttp://www.bluebeards-revenge.co.uk/blog/choosing-the-right-hair-styling-product/
http://www.bluebeards-revenge.co.uk/blog/choosing-the-right-hair-styling-product/#commentsThu, 23 Jul 2015 09:09:52 +0000http://www.bluebeards-revenge.co.uk/?p=12399Back in the 90s, crispy spikes and slicked down curtains were what it was all about, and an industrial-sized tube of slimy hair gel was all that was required to achieve both. Thankfully, things have moved on since then, but along with the plethora of new men’s hairstyles on the block comes a confusing array of lotions and potions, making it a minefield for many when deciding which one to go for.
If you’re still sheepishly clutching the afore-mentioned tube of gel, and have been continuing to slather it on enthusiastically ever since school, then not only are you doing yourself a great disservice in the style stakes, but you could be doing your barnet more harm than good. The type of product you plump for depends heavily on hair type and the style you hope to achieve, and going for the wrong option could even result in damage to your hair.
Standing in the aisles of your local pharmacy and attempting to make a selection can prove quite the challenge, so to give you a push in the right direction, here’s the low-down on what each type of product has to offer, and which one you should be using now.
The Bluebeards Revenge Pomade
Pomade
A greasy or waxy substance, pomade is the weapon of choice for slick, wet-look styles. While traditional pomades were originally oil-based and a nightmare to wash out of the hair, today’s offerings will often be water-based, providing all of the benefits with none of the consequences. Pomade works well on thinner hair of any length, and is great for taming waves or curls – but if your hair is particularly oily, it might not be the best choice for you. The biggest plus of using pomade over gel? More flexible hold, and no risk of flaking.
Gel
Gel is thick in consistency but easy to work with, making it a functional and versatile choice. Good for taming fly-aways, the hold it provides ranges from lighter to maximum, depending on the amount applied. Gel works well on thicker hair and short to medium lengths, and can be used on damp or dry hair. To use, distribute evenly over hands and run through hair to style. The downside? Gel is prone to unattractive flaking. Avoid touching once dried, as breaking the hold can result in a real mess.
The Bluebeards Revenge Matt Clay
Matt products
Clays, putties and pastes may all fall into this category, offering a dry or matt finish. Matt products provide pliable hold, adding plenty of texture without the shine. Clays are the best for creating effortless, tousled styles, as the hold they offer is invisible, but for something a little stronger you can opt for a paste or putty to much the same effect.
Wax
Wax is thicker than pomade, and oil-free, making it ideal for even those with greasier locks. Its density means that it works well on thicker, medium length hair, but if it isn’t applied correctly then clumping may occur. To avoid any mishaps, warm between palms and distribute evenly before applying to the hair.
Hopefully you are now feeling a bit more clued up when it comes to choosing the right hair-styling product. When weighing up the pros and cons, don’t forget to take into consideration the kind of look you are trying to create, as this is an important factor that will influence your choice. Don’t be afraid to experiment either – with the right, versatile cut, you can change it up on a regular basis.
]]>http://www.bluebeards-revenge.co.uk/blog/choosing-the-right-hair-styling-product/feed/0The Bluebeards Revenge named Shaving Range of the Year in first ever annual Barber Awardshttp://www.bluebeards-revenge.co.uk/blog/the-bluebeards-revenge-named-shaving-range-of-the-year-in-first-annual-barber-awards/
http://www.bluebeards-revenge.co.uk/blog/the-bluebeards-revenge-named-shaving-range-of-the-year-in-first-annual-barber-awards/#commentsWed, 15 Jul 2015 10:56:21 +0000http://www.bluebeards-revenge.co.uk/?p=12116The Bluebeards Revenge has been named Shaving Range of the Year in a prestigious awards ceremony held at this year’s Barber Connect.
The event, which took place at South Wales’s Celtic Manor hotel on Sunday, 28th June, saw the Bluebeards fight off stiff competition to claim the coveted Barber Awards title, with a number of other awards handed out to brands and industry professionals including Barbershop of the Year, Training Academy of the Year and Trimmer of the Year.
The awards ceremony proved to be a successful addition to Barber Connect 2015, and it is expected to become an annual occurrence in conjunction with the event.
With over 70 exhibitors, Barber Connect itself is now in its third year, with barbers flying in from around the world to attend. It is currently the only UK exhibition dedicated solely to barbering and men’s hairdressing, offering a unique opportunity for industry professionals to share new ideas and showcase their work.
With live cuts and shaves taking place on the day, the event also offered guests the chance to purchase tools and products at exclusive show prices, and as ever, The Bluebeards Revenge were in attendance on the day to display our wares.
It was a successful day for everyone involved, and we’re looking forward to doing it all again next year – and hopefully retaining our title.
]]>http://www.bluebeards-revenge.co.uk/blog/the-bluebeards-revenge-named-shaving-range-of-the-year-in-first-annual-barber-awards/feed/0Growing and caring for the manliest of beardshttp://www.bluebeards-revenge.co.uk/blog/growing-and-caring-for-the-manliest-of-beards/
http://www.bluebeards-revenge.co.uk/blog/growing-and-caring-for-the-manliest-of-beards/#commentsSun, 05 Jul 2015 17:17:58 +0000http://www.bluebeards-revenge.co.uk/?p=12055Beards have long been the ultimate man-accessory, and several years after bursting back onto the style scene, they’re still going strong. The rugged look is broadly perceived to be symbolic of masculinity, but while male grooming has only truly risen to prominence over the past decade or so, it is now a key part of any bearded gent’s journey to facial-haired perfection.
The Bluebeards Revenge Classic and Cuban Beard Oil
For those who are late to the party, any self-respecting beardie will be able to tell you that simply sprouting a few clumps of unruly fuzz is no longer the way to go about things. A good beard needs some careful pruning, shaping and nourishing in order to flourish, and luckily, there are several things that you can do to ensure that it turns out to be nothing less than a manly masterpiece.
If you’re starting completely from scratch, then patience is the ultimate key to success. Hold your horses, put down the scissors, and allow a good week of growth before you go tampering with the shape or length. Throughout this ‘limbo’ period, it’s vital that you keep the skin beneath in tip top condition. Look after it by using a decent facial scrub to slough away dead skin cells and remove any dirt and grime from the area. Facial hair can be a hotbed for bacteria to proliferate, harbouring oil and sweat which can result in all manner of unsightly acne. Bearded or not, it’s important to keep up a regular skincare routine in order to keep it at bay.
Apply a conditioning oil to the area to moisturise, nourish and protect the beard as it grows, taking care to massage into the skin as you go to avoid any dry areas developing. Remember, in order to grow a healthy piece of facial fuzz, you have to start at the source.
Once your beard reaches the desired length, maintenance begins to come into play. Invest in a beard comb and give it a regular once-over to eliminate any knots or tangles, using a pair of beard and moustache scissors to keep length in check. For sharper edges, a cut-throat razor is an essential tool, but to keep things really slick, a monthly visit to the barber for a tidy-up is highly recommended.
You can continue to use your beard oil on a weekly basis, as it will help to smooth and shape the beard as well as providing it with that all-important nourishment.
]]>http://www.bluebeards-revenge.co.uk/blog/growing-and-caring-for-the-manliest-of-beards/feed/0Choosing the right beard type for your face shapehttp://www.bluebeards-revenge.co.uk/blog/choosing-the-right-beard-type-for-your-face-shape/
http://www.bluebeards-revenge.co.uk/blog/choosing-the-right-beard-type-for-your-face-shape/#commentsTue, 30 Jun 2015 10:27:11 +0000http://www.bluebeards-revenge.co.uk/?p=12046Growing a beard might seem like a throw-away decision, but before you lock away the razor and shaving cream and jump in, there are a few things that you’d do well to know first.
The shape of your face could have a stronger influence than you think on whether or not you can pull off your new piece of facial fuzz. Despite what you might like to believe, one size does not fit all, so it’s worth doing your homework to avoid making a facial hair faux-pas.
Too much like hard work? Worry not. We’ve rounded up all you need to know on the matter to make your life easier, because we’re good to you like that. As for figuring out your own face shape, however, you’re on your own.
The Bluebeards Revenge Classic and Cuban Beard Oil
Square
A square jawline is considered the most masculine type to have, and it’s often worth emphasising rather than hiding. You can go for any type of beard, including a full one, but keep the edges squared-off so as not to lose your natural shape. A goatee will also flatter. If you dislike your face shape, then keep hair fuller on the chin, and shorter at the sides in order to slim the face.
Rectangular/Oblong
Avoid anything too angular, as this is a face shape with strong lines in itself. Longer faces are best suited to short-trimmed beards, as this enables them to avoid elongating the face even further.
Round
A neatly trimmed beard and hard lines along the cheekbones are your best bets.This style will slim the face, while squaring off slightly at the neckline gives the illusion of a more oval face shape
Oval
An oval face is by far the most versatile, with almost any beard style becoming fair game. It is one of the most symmetrical face types, which means there is no need to try and disguise any of your features. Experiment and see what you prefer – neatly-trimmed goatee, heavy scruff, or a stubbly 5 o’clock shadow will all flatter.
Small
The smaller-faced gent would do well to avoid a beard. We hate to be a kill-joy, but if it’s a real concern of yours then you won’t want to diminish it any further. In particular, avoid full, heavy beards. You don’t have to miss out on all the fun of facial hair, though – why not opt for a small moustache instead?
Large
Faces that are on the larger side can afford to go big with beards. Choose a full beard, and keep it trimmed so as to avoid any unnecessary elongation – your face is big enough already and you won’t benefit from the extra length.
Prominent chin
A full, traditional beard works well to balance a prominent chin – keep it thicker at the sides to create the illusion of added width.
No chin
To give the appearance of a stronger jawline and more pronounced chin, opt for a full beard that is shaped at the sides. Added will also help to create the illusion of the desired shape.
The on-the-go shaving product beat off stiff competition from scores of other big-name brands to take the coveted title, emerging victorious in the latest edition of the magazine as the 2015 winners were announced.
The Bluebeards Revenge Shaving Solution impressed judges with its silky, gel-like formula, which can be applied without a brush and makes for a smooth and easy shave.
Nick Gibbens, PR & Marketing Manager for The Bluebeards Revenge, said that the brand was thrilled with the recognition
“The award has come at a time when The Bluebeards Revenge is going from strength to strength, and we’re thrilled to be receiving such high-level recognition from the overseas media and customers alike. Men’s Health magazine is a highly respected title around the world, and we are very proud that the Shaving Solution has exceeded their expectations.”
The award is the latest and greatest in a string of impressive accolades afforded to the brand, following on from its 2013 and 2014 victories in the annual FHM Grooming Awards where it picked up Product of the Year and Grooming Brand of the Year respectively.
Explaining their reasons for selecting the brand as this year’s overall winner, FHM said: “This fresh British company have been making waves, and we, for one, like the cut of their jib. It’s not just the quality of their products that have us impressed; it’s the sheer breadth of products available.”
-ENDS-
For more information on The Bluebeards Revenge or for high res imagery, please contact Melanie Kruger Nick Gibbens on 01752 898191 or melanie @bluebeards-revenge.co.uk / [email protected].
Notes to Editors
About The Bluebeards Revenge
The Bluebeards Revenge is a premium range of quality shaving and men’s skincare products designed to combat tough stubble and tackle common shaving problems like razor burn and rash. The shaving products contain Decelerine™, a unique ingredient that has been designed to reduce beard growth. More information can be found at www.bluebeards-revenge.co.uk.
##
]]>http://www.bluebeards-revenge.co.uk/blog/the-bluebeards-revenge-scoops-prestigious-grooming-gong-in-mens-health-south-africas-2015-awards/feed/0Why growing a beard may be good for your healthhttp://www.bluebeards-revenge.co.uk/blog/why-growing-a-beard-may-be-good-for-your-health/
http://www.bluebeards-revenge.co.uk/blog/why-growing-a-beard-may-be-good-for-your-health/#commentsFri, 26 Jun 2015 10:32:48 +0000http://www.bluebeards-revenge.co.uk/?p=12035Turns out bearded may well be best after all…
Beards are fast becoming the trend that never ends, but lately they have fallen victim to a negative piece of press that suggests they might be somewhat unhygienic. Articles on the issue, however, have neglected to take into consideration the personal habits of beard-sporting individuals, and likewise, the positive points that wearing one has to offer.
Not convinced? Here’s our pick of the best reasons to grow a beard – besides looking pretty damn manly, of course.
Relief from shaving rash
Contrary to popular belief, friction between blade and skin is not the sole cause of razor rash in sensitive-skinned individuals, although it is often the culprit. ‘Folliculitis barbae’, as it’s known, can also be caused by a bacterium called staphylococcus, and can begin and be consistently aggravated by repeatedly reaching for the same shaving equipment – contaminated with the bacteria – on a daily basis. Failure to change your blade or clean your brush can result in reinfection and a whole heap of irritation, leaving skin sore, itchy, and – worse still – unsightly.
The best way to rid yourself of this nasty condition? Give shaving a break. Gentle exfoliators and cleansers containing salicylic acid will help, but putting down the razor for a while and allowing your skin to recover is the best thing that you can do for yourself. Not only will your skin begin to heal more quickly, but you’ll also get to sprout a slick beard which will cover the evidence.
The Bluebeards Revenge Classic and Cuban Beard Oil
Protect from allergies
Sensitive to pollen and dust? A beard could become your new best friend. Some believe that facial hair can filter out those pesky particles, while others insist that fuzz only serves to retain them and keep them a little too close for comfort. Whichever is true, it seems to be beneficial, as the presence of small amounts of pollen and dust appear to actually ‘desensitise’ the immune system to them. The result of this is that the body gets used to small amounts of pollen and dust trapped in the facial hair and becomes less likely to react to them. Result!
Protect from skin cancer
Sporting a thick beard may leave you hot and bothered come summertime, but don’t go shaving it all off just yet. A recent study conducted at Australia’s University of Southern Queensland looked at how effective facial hair is in defending the skin from the sun’s UV rays, and revealed that a beard can help to prevent skin cancer by providing an estimated 90-95% protection, depending on the beard’s length, density and angle of facial hair. This does not, however, mean that it’s time to bin off the sunscreen just yet, as all beards are different – and even the thickest can’t offer you 100% protection.
Disguise acne scars and bad skin
Cultivating a beard could do you plenty of favours if you’ve suffered from acne in the past. Attempting in vain to cover up marks and scars can be the bane of many men’s existence, particularly without the luxury of makeup that is afforded to their female counterparts. A heavy beard will mask any unsightly areas of skin on the chin, and nobody will be any the wiser.
One step ahead of the pack? Whether you’ve long been cultivating a beard or are simply considering taking the plunge, The Bluebeards Revenge’s brand new range of Beard Oils will ensure that your facial fuzz remains in tip top condition at all times. Designed to moisturise, condition and smooth the manliest of face-manes, the Classic Blend and Cuban Blend are now available to buy priced at £9.99 each.
]]>http://www.bluebeards-revenge.co.uk/blog/why-growing-a-beard-may-be-good-for-your-health/feed/0The idiot’s guide to beard grooming, beard care & maintenancehttp://www.bluebeards-revenge.co.uk/blog/the-idiots-guide-to-beard-grooming-beard-care-maintenance/
http://www.bluebeards-revenge.co.uk/blog/the-idiots-guide-to-beard-grooming-beard-care-maintenance/#commentsThu, 25 Jun 2015 14:39:49 +0000http://www.bluebeards-revenge.co.uk/?p=12048For the past two years in men’s grooming and fashion the beard has reigned supreme. From celebrities to magazine covers, the beard is seen pretty much everywhere. The current trend is especially towards beard and mustache styles seen from the turn of the century, particularly from the Victorian era. For those looking to grow a beard and keep it in great shape at all times we have put together some top tips for the care and maintenance of beards.
The Bluebeards Revenge Classic and Cuban Beard Oil
Exfoliate your face
When first growing out your beard it can become very scratchy and itchy for the first few days. To lessen these effects while your skin gets used to being covered by the hair try these methods of care. First exfoliate your face and hair with a mild face scrub. The exfoliating action softens the outer layer of hair made from keratin allowing moisturisers and water to enter and soften the hair. Apply The Bluebeards Revenge Post-Shave balm daily as this will also help to soften the skin and hair.
Use a quality beard wash and conditioner
Once your beard has grown out enough to begin maintaining and styling the first course of action is to use a decent beard wash and conditioner. Beard hair is more coarse and thick than head hair and requires different ingredients to take care of it properly which is why normal shampoo and conditioners will not work nearly as well as a specially formulated product. A good quality comb or brush is essential for keeping those lower locks looking as good or better than the top!
The Bluebeards Revenge Moustache Wax
Use a quality beard oil
Once all nice and combed, apply a styling or conditioning product as this will help keep things in top form. One of the most popular treatments is a beard oil. The oils from The Bluebeards Revenge will keep your beard well conditioned and provide a nice slight sheen, as well as keep you smelling nice and manly. Not to be forgotten, the mustache is an important part of the beard and applying a good mustache wax will keep your hirsute pursuits in fine form! The best application is to take a small amount from the jar with your fingernail, rub between the fingers to warm, apply to the mustache and beard, then comb and style according to your tastes!
Use a pair of specially designed moustache and beard scissors
Another item to consider for easier beard and mustache maintenance is a good set of clippers or scissors. Keeping those hairs in line and shaped well will make the difference of looking like a very dapper gentleman or Tom Hanks from the movie Castaway. Wash and comb as normal then trim a little at a time from the edges until you achieve the desired shape and profile. If you do not feel comfortable doing this yourself, your barber will willingly oblige a trim and style the next time you are in for a haircut.
We wish you the very best with your hirsute pursuits of beard and mustache growing. As with all things grooming a little care and maintenance added to your routine will keep you looking your best and impressing everyone around you.
Despite reports that ‘peak beard’ has been reached, it is becoming increasingly clear that the mighty beard is here to stay.
And to help keep them in check, premium men’s grooming brand The Bluebeards Revenge has released a new range of quality beard oils to transform them from untamed beasts to manly masterpieces.
The Bluebeards Revenge Classic and Cuban Beard Oil
The collection consists of two oils (both 50ml) dubbed ‘Classic Blend’ and ‘Cuban Blend’, with each offering a unique blend of fresh and masculine-smelling oils and fragrances designed to smooth, moisturise and protect facial hair while eliminating frizz and enhancing beard shape.
For the precious few yet to be seduced by the beard’s appeal, the brand has also launched a new moustache wax, which is available in handy 20ml tubs for touch-ups on the go.
Known as ‘The World’s Manliest Grooming Brand’, The Bluebeards Revenge is best known for its iconic wet shaving products, starting life as a shaving line aimed at men with tough stubble. It has since expanded to encompass all aspects of grooming, providing ‘The Ultimate Grooming Experience for Real Men’.
The new beard and moustache styling range join a broad collection of products already available from the British brand, including the new hair-styling range recently added to its already impressive repertoire.
The beard oils and moustache wax are now available from The Bluebeards Revenge (www.bluebeards-revenge.co.uk/shop), priced at £9.99 and £6.99 respectively.
Notes to Editors
About The Bluebeards Revenge
The Bluebeards Revenge is a premium range of quality shaving and men’s skincare products designed to combat tough stubble and tackle common shaving problems like razor burn and rash. The shaving products contain Decelerine™, a unique ingredient that has been designed to reduce beard growth. More information can be found at www.bluebeards-revenge.co.uk.
##
]]>http://www.bluebeards-revenge.co.uk/blog/the-bluebeards-revenge-launches-new-range-of-barbershop-quality-beard-oils-moustache-wax/feed/0The Bluebeards Revenge Father’s Day Gift Guidehttp://www.bluebeards-revenge.co.uk/blog/the-bluebeards-revenge-fathers-day-gift-guide/
http://www.bluebeards-revenge.co.uk/blog/the-bluebeards-revenge-fathers-day-gift-guide/#commentsThu, 11 Jun 2015 12:32:05 +0000http://www.bluebeards-revenge.co.uk/?p=11954Stuck on what to get your dad this year? Picky parents can be hard to please, but The Bluebeards Revenge has rounded up the manliest of gifts for you, all of which are sure to put a smile on any father’s face.
GIFT SETS
For Dads in need of a complete grooming overhaul, the Perfect Man Kit is an ideal way to discretely drive home the hint – and the best thing is, he’ll never clock you. Sure to put a smile on every father’s face and get you straight back into the good books..
If he looks just fine but hasn’t updated his fragrance in years, then the Eau de Toilette Gift Set will be just the job. A fresh and masculine scent presented in a vibrant blue bottle, the EDT comes complete with a matching shower gel. This is one kit that will have him smelling like a real man in no time.
Re-introduce him to the world of traditional wet shaving with The Bluebeards Revenge Starter Kit. Containing a pot of our iconic luxury Shaving Cream, a Doubloon Shaving Brush and anti-perspirant deodorant, we’ve also thrown in a 20ml sample size of our Post-Shave Balm
If he’s one step ahead of the game and already a seasoned wet shaver, the Deluxe Kit will fit the gifting bill nicely. A luxury selection of products including a full-size Pre-Shave Oil, Shaving Cream and Post-Shave Balm along with a Doubloon shaving brush to help him on his way to that perfect shave. The kit also contains an anti-perspirant deodorant to finish his morning routine the right way..
One for the man who likes a little bit of luxury in his life, the Privateer Collection doubleedge razor gift set comprises the infamous Scimitar safety razor, along with a pot of luxury Shaving Cream and Post-Shave Balm and a Doubloon shaving brush.
HAIR & BODY
Give him the tools to create high-shine, wet-look styles reminiscent of the 6os with our brand new water-based Pomade. Chances are, he wore them the first time round, so this blast from the past will no doubt be a welcome one.
Can’t afford the gift set option? Worry not, that doesn’t mean you’ll have to put up with his poor choice of aftershave for the foreseeable future. The Eau de Toilette comes in a vibrant blue bottle, laser-etched with the iconic Bluebeards skull.
SHAVING ESSENTIALS
If you’ve got a father with persistent facial hair, the chances are that he’s fed up with his daily shave. Put some pleasure back into his morning with a single pot of The Bluebeards Revenge’s luxury shaving cream – not only does it whip up into a fine lather to facilitate an easier shave, but it also helps to combat common shaving woes such as razor rash and burn.
Fathers who are forever in a hurry in the mornings will appreciate The Bluebeards Revenge’s brushless Shaving Solution. No need for a brush or bowl, this can be applied straight to the face with fingers for a quick and easy shave.
Preparation is key when it comes to the perfect shave, and an angry, red rash will no doubt make for an angry, red dad. The Bluebeards Revenge Pre-Shave Oil will eradicate shaving woes by enhancing razor glide and softening the hairs beforehand for an easier, smoother experience.
Just as preparation is important, following up with the right products is vital. The BVluebeards Revenge’s Post Shave Balm will calm and soothe any irritation, adding essential moisture back into the skin and providing all the nourishment it needs.
For that extra moisture hit, the Cooling Moisturiser can be used all over the face, and is just the job for sensitive-skinned dads. At his age, he should be moisturising morning and night to minimise the appearance of lines and wrinkles – and gifting him this should ensure that he gets the hint.
If he likes a life of luxury, then go that one step further and pick him up The Bluebeards Revenge’s Privateer Collection Mach 3. Stylish and contemporary, it’s built from durable high-grade resin, and is lightweight yet comfortably substantial to use.
Last but not least, don’t forget the blades. They may be an altogether less exciting purchase than the main event, but what’s a brand spanking new razor without the necessaries to use it? Our double-edge razor blades slot nicely into the Scimitar, and can also be snapped in half to fit the Cut-Throat Shavette.
SHAVING ACCESSORIES
Add an air of luxury to his morning shave with The Bluebeards Revenge’s chrome shaving bowl. Mixing up a lacklustre lather on the back of your hand will no longer suffice, as shaving reverts back to the original and best methods of days gone by. All that’s required is this bowl, a brush and some water to whip The Bluebeards Revenge’s luxury Shaving Cream into the most impressive lather your dad has ever seen. Sold?
Father’s Day coincides nicely with the holiday season, and what better way to store his manly grooming essentials than in The Bluebeards Revenge’s Travel Washbag? Big enough to house all the necessaries and yet small enough to fit nicely into his suitcase – job done.
For dads who are already accustomed to the traditional wet shave, the Shaving Towel will take things that one step further. Soaked in hot water and wrapped around the target area pre-shave, this makes for a relaxing addition to the routine as a once-a-week treat.
If you’ve already kitted him out with all the Bluebeards gear he could posibly need for previous birthday, Christmas and Father’s Day presents, then chances are, he’ll need somewhere to store them. The Privateer Collection Chrome Brush and Razor Stand will keep his shaving tools in check, and is great for showing them off on the bathroom shelf. | [
1,
450,
10924,
915,
3163,
830,
854,
479,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
13,
1576,
767,
20409,
4071,
28826,
14982,
373,
278,
15754,
27034,
29892,
29871,
29941,
29896,
2739,
29871,
29906,
29900,
29896,
29945,
29871,
29896,
29953,
29901,
29900,
29906,
29901,
29900,
29947,
718,
29900,
29900,
29900,
29900,
264,
29899,
29965,
2713,
473,
368,
29896,
1124,
597,
23424,
29889,
990,
13401,
29894,
29922,
29946,
29889,
29906,
29889,
29941,
21319,
915,
3163,
380,
1657,
19840,
4893,
304,
260,
2817,
562,
297,
302,
737,
29899,
2966,
292,
716,
5129,
3247,
1662,
478,
29879,
1704,
30010,
8175,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
9539,
915,
3163,
29899,
303,
1657,
29899,
29886,
309,
327,
29899,
29873,
6926,
29899,
517,
29899,
29873,
2817,
562,
29899,
262,
29899,
29876,
737,
29899,
2966,
292,
29899,
1482,
29899,
22116,
29899,
4270,
29899,
4287,
29899,
25525,
29914,
13,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
9539,
915,
3163,
29899,
303,
1657,
29899,
29886,
309,
327,
29899,
29873,
6926,
29899,
517,
29899,
29873,
2817,
562,
29899,
262,
29899,
29876,
737,
29899,
2966,
292,
29899,
1482,
29899,
22116,
29899,
4270,
29899,
4287,
29899,
25525,
8484,
21032,
1349,
29884,
29892,
29871,
29906,
29941,
2739,
29871,
29906,
29900,
29896,
29945,
29871,
29896,
29896,
29901,
29896,
29929,
29901,
29945,
29941,
718,
29900,
29900,
29900,
29900,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
13401,
29886,
29922,
29896,
29906,
29946,
29896,
29946,
2887,
2215,
408,
767,
1915,
404,
5771,
29892,
591,
30010,
29881,
1827,
15859,
302,
737,
29899,
2966,
292,
4799,
14423,
297,
263,
14982,
287,
10924,
915,
3163,
380,
1657,
10694,
756,
2355,
304,
367,
701,
727,
472,
278,
2246,
310,
278,
6287,
29889,
13,
13,
6246,
10924,
915,
3163,
380,
1657,
19840,
322,
1565,
594,
1267,
284,
457,
432,
2960,
347,
4111,
365,
957,
292,
338,
1886,
3262,
2712,
701,
263,
451,
305,
411,
670,
9281,
9712,
545,
408,
540,
4893,
304,
278,
260,
2817,
562,
297,
263,
302,
737,
29899,
2966,
292,
716,
8175,
15416,
2580,
5129,
3247,
1662,
7186,
1704,
30010,
29889,
13,
13,
1576,
8175,
18553,
4111,
3815,
292,
701,
411,
411,
5121,
322,
23056,
3437,
4385,
7197,
5080,
297,
263,
4796,
29899,
3959,
2707,
280,
21000,
304,
22754,
1559,
2750,
10694,
785,
322,
1074,
607,
756,
2355,
825,
372,
4893,
304,
2041,
714,
373,
278,
1407,
2246,
29889,
13,
13,
3047,
4111,
10784,
10549,
964,
278,
19500,
12949,
310,
263,
269,
1406,
7102,
5955,
21342,
29941,
322,
4385,
5622,
278,
22764,
11761,
310,
670,
27150,
12630,
29892,
372,
30010,
29879,
731,
304,
367,
385,
443,
9894,
519,
26195,
363,
6210,
432,
2960,
583,
29892,
411,
278,
18239,
1286,
297,
5969,
2039,
304,
2125,
278,
8175,
304,
4799,
29879,
920,
29879,
701,
322,
1623,
278,
4234,
29889,
13,
13,
29954,
29899,
29968,
10653,
1122,
367,
5622,
278,
2625,
29899,
9012,
363,
445,
3153,
2060,
29892,
541,
450,
10924,
915,
3163,
830,
854,
479,
674,
1603,
367,
701,
727,
297,
278,
12003,
310,
278,
3158,
29892,
411,
278,
7102,
5955,
21342,
29941,
14982,
287,
701,
304,
278,
7472,
408,
4111,
4893,
373,
670,
17055,
29889,
13,
13,
8439,
526,
694,
16725,
10116,
408,
3447,
29892,
541,
2748,
278,
7933,
3578,
338,
2183,
591,
30010,
645,
367,
27697,
366,
1073,
988,
366,
508,
679,
297,
373,
263,
22780,
310,
278,
3158,
29889,
6505,
445,
2913,
29889,
13,
13,
5262,
29958,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
9539,
915,
3163,
29899,
303,
1657,
29899,
29886,
309,
327,
29899,
29873,
6926,
29899,
517,
29899,
29873,
2817,
562,
29899,
262,
29899,
29876,
737,
29899,
2966,
292,
29899,
1482,
29899,
22116,
29899,
4270,
29899,
4287,
29899,
25525,
29914,
18798,
29914,
29900,
15954,
14556,
278,
1492,
11315,
29899,
22062,
1847,
3234,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1859,
14556,
29899,
1552,
29899,
1266,
29899,
29882,
1466,
29899,
22062,
1847,
29899,
4704,
29914,
13,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1859,
14556,
29899,
1552,
29899,
1266,
29899,
29882,
1466,
29899,
22062,
1847,
29899,
4704,
8484,
21032,
1349,
29884,
29892,
29871,
29906,
29941,
2739,
29871,
29906,
29900,
29896,
29945,
29871,
29900,
29929,
29901,
29900,
29929,
29901,
29945,
29906,
718,
29900,
29900,
29900,
29900,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
13401,
29886,
29922,
29896,
29906,
29941,
29929,
29929,
5841,
297,
278,
29871,
29929,
29900,
29879,
29892,
2181,
275,
2272,
805,
29379,
322,
269,
1406,
287,
1623,
3151,
2408,
29879,
892,
825,
372,
471,
599,
1048,
29892,
322,
385,
18408,
29899,
29879,
1891,
260,
4003,
310,
2243,
326,
29891,
11315,
9127,
471,
599,
393,
471,
3734,
304,
6176,
1716,
29889,
3374,
3730,
29892,
2712,
505,
6153,
373,
1951,
769,
29892,
541,
3412,
411,
278,
5644,
386,
2207,
310,
716,
1757,
30010,
29879,
447,
765,
5577,
373,
278,
2908,
5304,
263,
16051,
1409,
310,
3287,
1080,
322,
3104,
1080,
29892,
3907,
372,
263,
7903,
2671,
363,
1784,
746,
1602,
4821,
607,
697,
304,
748,
363,
29889,
13,
13,
3644,
366,
30010,
276,
1603,
29735,
728,
368,
1067,
10519,
292,
278,
263,
1079,
29899,
358,
28487,
260,
4003,
310,
9127,
29892,
322,
505,
1063,
3133,
292,
304,
2243,
1624,
372,
373,
23644,
15736,
1711,
3926,
1951,
3762,
29892,
769,
451,
871,
526,
366,
2599,
7535,
263,
2107,
766,
5509,
297,
278,
3114,
380,
6926,
29892,
541,
366,
1033,
367,
2599,
596,
2594,
1212,
901,
10311,
1135,
1781,
29889,
450,
1134,
310,
3234,
366,
715,
3427,
363,
7111,
20365,
373,
11315,
1134,
322,
278,
3114,
366,
4966,
304,
6176,
29892,
322,
2675,
363,
278,
2743,
2984,
1033,
1584,
1121,
297,
18658,
304,
596,
11315,
29889,
13,
13,
11042,
292,
297,
278,
263,
275,
793,
310,
596,
1887,
1374,
2817,
4135,
322,
15661,
304,
1207,
263,
9262,
508,
6356,
3755,
278,
18766,
29892,
577,
304,
2367,
366,
263,
5503,
297,
278,
1492,
5305,
29892,
1244,
30010,
29879,
278,
4482,
29899,
3204,
373,
825,
1269,
1134,
310,
3234,
756,
304,
5957,
29892,
322,
607,
697,
366,
881,
367,
773,
1286,
29889,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
14351,
1943,
13,
13,
29925,
290,
1943,
13,
13,
29909,
1395,
8995,
470,
281,
26825,
5960,
749,
29892,
8280,
1943,
338,
278,
28639,
310,
7348,
363,
269,
1406,
29892,
7990,
29899,
6914,
11949,
29889,
5806,
13807,
8280,
3076,
892,
10437,
17182,
29899,
6707,
322,
263,
4646,
29885,
598,
304,
471,
29882,
714,
310,
278,
11315,
29892,
9826,
30010,
29879,
5957,
886,
674,
4049,
367,
4094,
29899,
6707,
29892,
13138,
599,
310,
278,
23633,
411,
5642,
310,
278,
27721,
29889,
14351,
1943,
1736,
1532,
373,
266,
3993,
11315,
310,
738,
3309,
29892,
322,
338,
2107,
363,
260,
11500,
20037,
470,
11051,
29879,
785,
541,
565,
596,
11315,
338,
10734,
288,
2354,
29892,
372,
1795,
451,
367,
278,
1900,
7348,
363,
366,
29889,
450,
24842,
2298,
310,
773,
8280,
1943,
975,
9127,
29973,
5853,
25706,
4808,
29892,
322,
694,
12045,
310,
17422,
9292,
29889,
13,
13,
29954,
295,
13,
13,
29954,
295,
338,
12003,
297,
5718,
3819,
541,
4780,
304,
664,
411,
29892,
3907,
372,
263,
13303,
322,
1224,
24285,
7348,
29889,
7197,
363,
260,
11500,
11340,
29899,
1450,
1036,
29892,
278,
4808,
372,
8128,
20238,
515,
301,
14643,
304,
7472,
29892,
8679,
373,
278,
5253,
7436,
29889,
18685,
1736,
1532,
373,
266,
6541,
11315,
322,
3273,
304,
18350,
27497,
29892,
322,
508,
367,
1304,
373,
270,
1160,
470,
15589,
11315,
29889,
1763,
671,
29892,
1320,
2666,
1584,
368,
975,
6567,
322,
1065,
1549,
11315,
304,
3114,
29889,
450,
1623,
2975,
29973,
18685,
338,
544,
650,
304,
443,
1131,
1461,
573,
17422,
9292,
29889,
319,
5405,
6023,
292,
2748,
270,
1255,
29892,
408,
16679,
278,
4808,
508,
1121,
297,
263,
1855,
4473,
29889,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
9811,
26234,
13,
13,
29924,
1131,
9316,
13,
13,
6821,
1036,
29892,
1925,
2938,
322,
4940,
267,
1122,
599,
6416,
964,
445,
7663,
29892,
27032,
263,
15589,
470,
286,
1131,
8341,
29889,
9811,
9316,
3867,
282,
492,
519,
4808,
29892,
4417,
20947,
310,
18459,
1728,
278,
528,
457,
29889,
2233,
1036,
526,
278,
1900,
363,
4969,
7225,
2222,
29892,
9411,
839,
11949,
29892,
408,
278,
4808,
896,
5957,
338,
27597,
29892,
541,
363,
1554,
263,
2217,
23505,
366,
508,
3523,
363,
263,
11417,
470,
1925,
1017,
304,
1568,
278,
1021,
2779,
29889,
13,
13,
29956,
1165,
13,
13,
29956,
1165,
338,
266,
6541,
1135,
8280,
1943,
29892,
322,
17182,
29899,
9021,
29892,
3907,
372,
10839,
363,
1584,
1906,
411,
1395,
294,
631,
658,
4684,
29889,
8011,
9027,
2794,
393,
372,
1736,
1532,
373,
266,
6541,
29892,
18350,
3309,
11315,
29892,
541,
565,
372,
3508,
30010,
29873,
7436,
5149,
769,
1067,
3427,
292,
1122,
6403,
29889,
1763,
4772,
738,
286,
728,
2547,
29892,
14294,
1546,
5112,
1516,
322,
1320,
2666,
1584,
368,
1434,
15399,
304,
278,
11315,
29889,
13,
13,
29950,
2300,
3730,
366,
526,
1286,
11223,
263,
2586,
901,
1067,
6742,
701,
746,
372,
5304,
304,
23906,
278,
1492,
11315,
29899,
22062,
1847,
3234,
29889,
1932,
591,
1141,
292,
701,
278,
10791,
322,
1136,
29892,
1016,
30010,
29873,
9566,
304,
2125,
964,
19220,
278,
2924,
310,
1106,
366,
526,
1811,
304,
1653,
29892,
408,
445,
338,
385,
4100,
7329,
393,
674,
9949,
596,
7348,
29889,
3872,
30010,
29873,
367,
13421,
304,
7639,
2845,
785,
411,
278,
1492,
29892,
1224,
24285,
5700,
29892,
366,
508,
1735,
372,
701,
373,
263,
4943,
8405,
29889,
13,
13,
5262,
29958,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1859,
14556,
29899,
1552,
29899,
1266,
29899,
29882,
1466,
29899,
22062,
1847,
29899,
4704,
29914,
18798,
29914,
29900,
1576,
10924,
915,
3163,
830,
854,
479,
4257,
1383,
5555,
12146,
310,
278,
8905,
297,
937,
3926,
17568,
2261,
495,
9220,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
9539,
915,
3163,
29899,
27901,
479,
29899,
17514,
29899,
845,
5555,
29899,
3881,
29899,
974,
29899,
1552,
29899,
6360,
29899,
262,
29899,
4102,
29899,
812,
950,
29899,
1646,
495,
29899,
29874,
2935,
29914,
13,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
9539,
915,
3163,
29899,
27901,
479,
29899,
17514,
29899,
845,
5555,
29899,
3881,
29899,
974,
29899,
1552,
29899,
6360,
29899,
262,
29899,
4102,
29899,
812,
950,
29899,
1646,
495,
29899,
29874,
2935,
8484,
21032,
29956,
287,
29892,
29871,
29896,
29945,
2739,
29871,
29906,
29900,
29896,
29945,
29871,
29896,
29900,
29901,
29945,
29953,
29901,
29906,
29896,
718,
29900,
29900,
29900,
29900,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
13401,
29886,
29922,
29896,
29906,
29896,
29896,
29953,
1576,
10924,
915,
3163,
830,
854,
479,
756,
1063,
4257,
1383,
5555,
12146,
310,
278,
8905,
297,
263,
544,
5286,
2738,
24441,
25672,
4934,
472,
445,
1629,
30010,
29879,
2261,
495,
14971,
29889,
13,
13,
1576,
1741,
29892,
607,
3614,
2058,
472,
4275,
13706,
30010,
29879,
315,
2152,
293,
2315,
272,
16730,
373,
16340,
29892,
29871,
29906,
29947,
386,
5306,
29892,
4446,
278,
10924,
915,
3163,
8589,
1283,
380,
2593,
13888,
304,
5995,
278,
18838,
300,
287,
2261,
495,
9220,
3611,
29892,
411,
263,
1353,
310,
916,
24441,
29692,
714,
304,
1506,
4167,
322,
13661,
6351,
1338,
3704,
2261,
2596,
29882,
459,
310,
278,
8905,
29892,
26101,
10355,
310,
278,
8905,
322,
1605,
19400,
310,
278,
8905,
29889,
13,
13,
1576,
24441,
25672,
11827,
304,
367,
263,
9150,
6124,
304,
2261,
495,
14971,
29871,
29906,
29900,
29896,
29945,
29892,
322,
372,
338,
3806,
304,
4953,
385,
17568,
27170,
297,
9589,
651,
411,
278,
1741,
29889,
13,
13,
3047,
975,
29871,
29955,
29900,
10371,
17259,
29892,
2261,
495,
14971,
3528,
338,
1286,
297,
967,
4654,
1629,
29892,
411,
2594,
2596,
22764,
297,
515,
2820,
278,
3186,
304,
14333,
29889,
739,
338,
5279,
278,
871,
10261,
29130,
16955,
14419,
368,
304,
2594,
495,
292,
322,
1757,
30010,
29879,
447,
1823,
1253,
292,
29892,
27032,
263,
5412,
15130,
363,
13661,
6351,
1338,
304,
6232,
716,
7014,
322,
1510,
4878,
1009,
664,
29889,
13,
13,
3047,
5735,
5700,
29879,
322,
528,
5989,
5622,
2058,
373,
278,
2462,
29892,
278,
1741,
884,
12520,
28865,
278,
8825,
304,
20590,
8492,
322,
9316,
472,
29192,
1510,
26094,
29892,
322,
408,
3926,
29892,
450,
10924,
915,
3163,
830,
854,
479,
892,
297,
14333,
749,
373,
278,
2462,
304,
2479,
1749,
1370,
267,
29889,
13,
13,
3112,
471,
263,
9150,
2462,
363,
14332,
9701,
29892,
322,
591,
30010,
276,
3063,
6375,
304,
2599,
372,
599,
1449,
2446,
1629,
785,
322,
27581,
11551,
292,
1749,
3611,
29889,
13,
13,
5262,
29958,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
9539,
915,
3163,
29899,
27901,
479,
29899,
17514,
29899,
845,
5555,
29899,
3881,
29899,
974,
29899,
1552,
29899,
6360,
29899,
262,
29899,
4102,
29899,
812,
950,
29899,
1646,
495,
29899,
29874,
2935,
29914,
18798,
29914,
29900,
29954,
798,
292,
322,
1559,
292,
363,
278,
767,
20409,
310,
367,
3163,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
29887,
798,
292,
29899,
392,
29899,
4287,
292,
29899,
1454,
29899,
1552,
29899,
1171,
20409,
29899,
974,
29899,
915,
3163,
29914,
13,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
29887,
798,
292,
29899,
392,
29899,
4287,
292,
29899,
1454,
29899,
1552,
29899,
1171,
20409,
29899,
974,
29899,
915,
3163,
8484,
21032,
29903,
348,
29892,
29871,
29900,
29945,
2739,
29871,
29906,
29900,
29896,
29945,
29871,
29896,
29955,
29901,
29896,
29955,
29901,
29945,
29947,
718,
29900,
29900,
29900,
29900,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
13401,
29886,
29922,
29896,
29906,
29900,
29945,
29945,
3629,
3163,
505,
1472,
1063,
278,
8494,
6490,
767,
29899,
5943,
706,
29892,
322,
3196,
2440,
1156,
20887,
292,
1250,
11480,
278,
3114,
9088,
29892,
896,
30010,
276,
1603,
2675,
4549,
29889,
450,
29833,
3192,
1106,
338,
7300,
368,
17189,
2347,
304,
367,
5829,
293,
310,
21799,
13593,
29892,
541,
1550,
14263,
4071,
28826,
756,
871,
19781,
5161,
264,
304,
2504,
262,
663,
975,
278,
4940,
316,
6332,
470,
577,
29892,
372,
338,
1286,
263,
1820,
760,
310,
738,
367,
25600,
8116,
30010,
29879,
16342,
304,
2258,
1455,
29899,
2350,
2859,
639,
20309,
29889,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
24300,
322,
28618,
273,
1522,
538,
438,
309,
13,
13,
2831,
1906,
1058,
526,
5683,
304,
278,
6263,
29892,
738,
1583,
29899,
690,
1103,
292,
367,
538,
347,
674,
367,
2221,
304,
2649,
366,
393,
3763,
7689,
449,
292,
263,
2846,
1067,
17204,
310,
443,
29878,
11850,
285,
18813,
338,
694,
5520,
278,
982,
304,
748,
1048,
2712,
29889,
319,
1781,
367,
538,
4225,
777,
16010,
544,
27964,
29892,
528,
21430,
322,
302,
473,
14424,
297,
1797,
304,
1652,
473,
728,
29892,
322,
9885,
2354,
29892,
727,
526,
3196,
2712,
393,
366,
508,
437,
304,
9801,
393,
372,
12169,
714,
304,
367,
3078,
3109,
1135,
263,
767,
368,
5835,
12343,
346,
29889,
13,
13,
3644,
366,
30010,
276,
6257,
6446,
515,
22728,
29892,
769,
282,
24701,
338,
278,
8494,
6490,
1820,
304,
2551,
29889,
21771,
596,
15100,
29892,
1925,
1623,
278,
885,
790,
943,
29892,
322,
2758,
263,
1781,
4723,
310,
14321,
1434,
366,
748,
21308,
546,
292,
411,
278,
8267,
470,
3309,
29889,
17044,
449,
445,
5129,
2576,
833,
30010,
3785,
29892,
372,
30010,
29879,
27131,
393,
366,
3013,
278,
19309,
19540,
297,
6872,
2246,
4195,
29889,
7419,
1156,
372,
491,
773,
263,
27189,
2258,
1455,
14387,
431,
304,
2243,
820,
3448,
7123,
19309,
9101,
322,
3349,
738,
270,
2728,
322,
867,
603,
515,
278,
4038,
29889,
7748,
1455,
11315,
508,
367,
263,
7375,
2580,
363,
289,
5761,
423,
304,
410,
29880,
9633,
403,
29892,
4023,
6526,
292,
17182,
322,
7901,
271,
607,
508,
1121,
297,
599,
8214,
310,
9644,
523,
368,
1274,
484,
29889,
1522,
25600,
470,
451,
29892,
372,
30010,
29879,
4100,
304,
3013,
701,
263,
4943,
2071,
3742,
598,
26529,
297,
1797,
304,
3013,
372,
472,
23041,
29889,
13,
13,
2052,
368,
263,
4195,
292,
17182,
304,
278,
4038,
304,
2730,
391,
332,
895,
29892,
302,
473,
728,
322,
12566,
278,
367,
538,
408,
372,
25088,
29892,
5622,
2562,
304,
4158,
482,
964,
278,
19309,
408,
366,
748,
304,
4772,
738,
15589,
10161,
14338,
29889,
22738,
29892,
297,
1797,
304,
6548,
263,
9045,
29891,
8424,
310,
2258,
1455,
285,
18813,
29892,
366,
505,
304,
1369,
472,
278,
2752,
29889,
13,
13,
26222,
596,
367,
538,
22170,
278,
7429,
3309,
29892,
25413,
16410,
304,
2041,
964,
1708,
29889,
512,
10147,
297,
263,
367,
538,
4145,
322,
2367,
372,
263,
4943,
2748,
29899,
957,
304,
27399,
738,
889,
1862,
470,
18806,
793,
29892,
773,
263,
5101,
310,
367,
538,
322,
286,
18291,
1829,
885,
790,
943,
304,
3013,
3309,
297,
1423,
29889,
1152,
528,
279,
546,
12770,
29892,
263,
5700,
29899,
386,
307,
271,
8006,
272,
338,
385,
18853,
5780,
29892,
541,
304,
3013,
2712,
2289,
269,
1406,
29892,
263,
4098,
368,
6493,
304,
278,
2594,
495,
363,
263,
10668,
29891,
29899,
786,
338,
10712,
13622,
29889,
13,
13,
3492,
508,
6773,
304,
671,
596,
367,
538,
17182,
373,
263,
4723,
368,
8405,
29892,
408,
372,
674,
1371,
304,
10597,
322,
8267,
278,
367,
538,
408,
1532,
408,
13138,
372,
411,
393,
599,
29899,
17001,
302,
473,
18310,
29889,
13,
13,
5262,
29958,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
29887,
798,
292,
29899,
392,
29899,
4287,
292,
29899,
1454,
29899,
1552,
29899,
1171,
20409,
29899,
974,
29899,
915,
3163,
29914,
18798,
29914,
29900,
15954,
14556,
278,
1492,
367,
538,
1134,
363,
596,
3700,
8267,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1859,
14556,
29899,
1552,
29899,
1266,
29899,
915,
538,
29899,
1853,
29899,
1454,
29899,
8066,
29899,
2161,
29899,
12181,
29914,
13,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1859,
14556,
29899,
1552,
29899,
1266,
29899,
915,
538,
29899,
1853,
29899,
1454,
29899,
8066,
29899,
2161,
29899,
12181,
8484,
21032,
29911,
434,
29892,
29871,
29941,
29900,
8378,
29871,
29906,
29900,
29896,
29945,
29871,
29896,
29900,
29901,
29906,
29955,
29901,
29896,
29896,
718,
29900,
29900,
29900,
29900,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
13401,
29886,
29922,
29896,
29906,
29900,
29946,
29953,
29954,
798,
292,
263,
367,
538,
1795,
2833,
763,
263,
3183,
29899,
21694,
10608,
29892,
541,
1434,
366,
7714,
3448,
278,
8006,
272,
322,
528,
5555,
907,
314,
322,
12500,
297,
29892,
727,
526,
263,
2846,
2712,
393,
366,
30010,
29881,
437,
1532,
304,
1073,
937,
29889,
13,
13,
1576,
8267,
310,
596,
3700,
1033,
505,
263,
23505,
9949,
1135,
366,
1348,
373,
3692,
470,
451,
366,
508,
8206,
1283,
596,
716,
8424,
310,
2258,
1455,
285,
18813,
29889,
19454,
825,
366,
1795,
763,
304,
4658,
29892,
697,
2159,
947,
451,
6216,
599,
29892,
577,
372,
30010,
29879,
7088,
2599,
596,
3271,
1287,
304,
4772,
3907,
263,
2258,
1455,
11315,
285,
2993,
29899,
18182,
29889,
13,
13,
1762,
29877,
1568,
763,
2898,
664,
29973,
399,
3818,
451,
29889,
1334,
30010,
345,
28240,
701,
599,
366,
817,
304,
1073,
373,
278,
4383,
304,
1207,
596,
2834,
6775,
29892,
1363,
591,
30010,
276,
1781,
304,
366,
763,
393,
29889,
1094,
363,
2537,
3864,
714,
596,
1914,
3700,
8267,
29892,
3138,
29892,
366,
30010,
276,
373,
596,
1914,
29889,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
24300,
322,
28618,
273,
1522,
538,
438,
309,
13,
13,
29903,
4718,
13,
13,
29909,
6862,
432,
1450,
1220,
338,
5545,
278,
1556,
21799,
457,
1134,
304,
505,
29892,
322,
372,
30010,
29879,
4049,
7088,
19310,
5921,
3265,
1135,
25508,
29889,
887,
508,
748,
363,
738,
1134,
310,
367,
538,
29892,
3704,
263,
2989,
697,
29892,
541,
3013,
278,
12770,
10674,
1965,
29899,
2696,
577,
408,
451,
304,
14074,
596,
5613,
8267,
29889,
319,
748,
403,
29872,
674,
884,
1652,
2620,
29889,
960,
366,
766,
4561,
596,
3700,
8267,
29892,
769,
3013,
11315,
2989,
261,
373,
278,
521,
262,
29892,
322,
20511,
472,
278,
11192,
297,
1797,
304,
2243,
326,
278,
3700,
29889,
13,
13,
7364,
6825,
29914,
29949,
2204,
549,
13,
13,
29909,
5405,
3099,
2086,
6401,
29892,
408,
445,
338,
263,
3700,
8267,
411,
4549,
3454,
297,
3528,
29889,
6242,
261,
17240,
526,
1900,
480,
1573,
304,
3273,
29899,
15450,
2168,
367,
3163,
29892,
408,
445,
28936,
963,
304,
4772,
560,
549,
1218,
278,
3700,
1584,
4340,
29889,
13,
13,
29934,
618,
13,
13,
29909,
28539,
368,
17151,
2168,
367,
538,
322,
2898,
3454,
3412,
278,
923,
1416,
29890,
2873,
526,
596,
1900,
1010,
29879,
29889,
4013,
3114,
674,
2243,
326,
278,
3700,
29892,
1550,
10674,
4362,
1283,
10029,
472,
278,
18873,
1220,
4076,
278,
4486,
3958,
310,
263,
901,
288,
791,
3700,
8267,
13,
13,
29949,
791,
13,
13,
2744,
288,
791,
3700,
338,
491,
2215,
278,
1556,
1224,
24285,
29892,
411,
4359,
738,
367,
538,
3114,
14171,
6534,
3748,
29889,
739,
338,
697,
310,
278,
1556,
9682,
16888,
3700,
4072,
29892,
607,
2794,
727,
338,
694,
817,
304,
1018,
322,
766,
2543,
895,
738,
310,
596,
5680,
29889,
1222,
15362,
322,
1074,
825,
366,
5821,
785,
28539,
368,
29899,
15450,
2168,
748,
403,
29872,
29892,
9416,
885,
582,
600,
29892,
470,
263,
19281,
29890,
368,
29871,
29945,
288,
30010,
13058,
15504,
674,
599,
1652,
2620,
29889,
13,
13,
12636,
497,
13,
13,
1576,
7968,
29899,
17470,
287,
8116,
723,
437,
1532,
304,
4772,
263,
367,
538,
29889,
1334,
26277,
304,
367,
263,
12088,
29899,
2212,
29891,
29892,
541,
565,
372,
30010,
29879,
263,
1855,
5932,
310,
15850,
769,
366,
2113,
30010,
29873,
864,
304,
22964,
728,
372,
738,
4340,
29889,
512,
3153,
29892,
4772,
2989,
29892,
9416,
367,
3163,
29889,
887,
1016,
30010,
29873,
505,
304,
3052,
714,
373,
599,
278,
2090,
310,
2258,
1455,
11315,
29892,
2466,
785,
2020,
451,
3523,
363,
263,
2319,
286,
18291,
1829,
2012,
29973,
13,
13,
24105,
479,
13,
13,
29943,
3302,
393,
526,
373,
278,
7200,
2625,
508,
21750,
304,
748,
4802,
411,
367,
3163,
29889,
14542,
852,
263,
2989,
367,
538,
29892,
322,
3013,
372,
17151,
2168,
577,
408,
304,
4772,
738,
19039,
560,
549,
362,
785,
596,
3700,
338,
4802,
3307,
2307,
322,
366,
2113,
30010,
29873,
14169,
515,
278,
4805,
3309,
29889,
13,
13,
18571,
8946,
521,
262,
13,
13,
29909,
2989,
29892,
13807,
367,
538,
1736,
1532,
304,
17346,
263,
19555,
521,
262,
785,
3013,
372,
266,
6541,
472,
278,
11192,
304,
1653,
278,
4486,
3958,
310,
2715,
2920,
29889,
13,
13,
3782,
521,
262,
13,
13,
1762,
2367,
278,
10097,
310,
263,
23505,
432,
1450,
1220,
322,
901,
11504,
20979,
521,
262,
29892,
3523,
363,
263,
2989,
367,
538,
393,
338,
528,
10501,
472,
278,
11192,
29889,
25601,
674,
884,
1371,
304,
1653,
278,
4486,
3958,
310,
278,
7429,
8267,
29889,
13,
13,
1576,
373,
29899,
1552,
29899,
1484,
528,
5555,
3234,
16646,
1283,
380,
2593,
13888,
515,
19435,
310,
916,
4802,
29899,
978,
1506,
4167,
304,
2125,
278,
18838,
300,
287,
3611,
29892,
11176,
3460,
6879,
23308,
297,
278,
9281,
12203,
310,
278,
14853,
408,
278,
29871,
29906,
29900,
29896,
29945,
281,
16697,
892,
9326,
29889,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
1383,
5555,
24380,
527,
13120,
6577,
2710,
411,
967,
4047,
3459,
29892,
9127,
29899,
4561,
7063,
29892,
607,
508,
367,
7436,
1728,
263,
1506,
1878,
322,
3732,
363,
263,
10597,
322,
4780,
528,
1351,
29889,
13,
13,
29940,
860,
15347,
29890,
575,
29892,
12089,
669,
4485,
15133,
15629,
363,
450,
10924,
915,
3163,
830,
854,
479,
29892,
1497,
393,
278,
14982,
471,
1468,
24455,
411,
278,
19679,
13,
13,
30015,
1576,
9862,
756,
2041,
472,
263,
931,
746,
450,
10924,
915,
3163,
830,
854,
479,
338,
2675,
515,
9324,
304,
9324,
29892,
322,
591,
30010,
276,
1468,
24455,
304,
367,
13442,
1316,
1880,
29899,
5563,
19679,
515,
278,
975,
344,
294,
5745,
322,
20330,
394,
9345,
29889,
7567,
30010,
29879,
15202,
14853,
338,
263,
10712,
3390,
287,
3611,
2820,
278,
3186,
29892,
322,
591,
526,
1407,
22314,
393,
278,
1383,
5555,
24380,
756,
13461,
287,
1009,
2149,
800,
3178,
13,
13,
1576,
9862,
338,
278,
9281,
322,
14176,
297,
263,
1347,
310,
21210,
573,
1035,
324,
3076,
21750,
287,
304,
278,
14982,
29892,
1494,
373,
515,
967,
29871,
29906,
29900,
29896,
29941,
322,
29871,
29906,
29900,
29896,
29946,
6879,
3842,
297,
278,
17568,
383,
29950,
29924,
6070,
28826,
9220,
988,
372,
18691,
701,
10969,
310,
278,
8905,
322,
6070,
28826,
18007,
310,
278,
8905,
8307,
29889,
13,
13,
9544,
433,
2827,
1009,
9590,
363,
18851,
278,
14982,
408,
445,
1629,
30010,
29879,
12463,
19576,
29892,
383,
29950,
29924,
1497,
29901,
1346,
4013,
10849,
4908,
5001,
505,
1063,
3907,
20037,
29892,
322,
591,
29892,
363,
697,
29892,
763,
278,
5700,
310,
1009,
432,
747,
29889,
739,
30010,
29879,
451,
925,
278,
11029,
310,
1009,
9316,
393,
505,
502,
527,
13120,
29936,
372,
30010,
29879,
278,
1183,
261,
18423,
386,
310,
9316,
3625,
3178,
13,
13,
29899,
1430,
8452,
29899,
13,
13,
2831,
901,
2472,
373,
450,
10924,
915,
3163,
830,
854,
479,
470,
363,
1880,
620,
6382,
708,
29892,
3113,
6958,
6286,
6067,
28499,
914,
13853,
15347,
29890,
575,
373,
29871,
29900,
29896,
29955,
29945,
29906,
29871,
29947,
29929,
29947,
29896,
29929,
29896,
470,
9232,
6067,
732,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
847,
25985,
29992,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29889,
13,
13,
3664,
267,
304,
7641,
943,
13,
13,
28173,
450,
10924,
915,
3163,
830,
854,
479,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
338,
263,
5188,
1974,
3464,
310,
11029,
528,
5555,
322,
1757,
30010,
29879,
2071,
3742,
598,
9316,
8688,
304,
15499,
260,
820,
19281,
569,
322,
22002,
280,
3619,
528,
5555,
4828,
763,
8006,
272,
12138,
322,
364,
1161,
29889,
450,
528,
5555,
9316,
1712,
3826,
7367,
457,
30536,
29892,
263,
5412,
2348,
1127,
993,
393,
756,
1063,
8688,
304,
10032,
367,
538,
14321,
29889,
5853,
2472,
508,
367,
1476,
472,
7821,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29889,
13,
13,
2277,
13,
13,
5262,
29958,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
9539,
915,
3163,
29899,
27901,
479,
29899,
29879,
1111,
3554,
29899,
558,
5286,
2738,
29899,
29887,
8345,
292,
29899,
29887,
549,
29899,
262,
29899,
29885,
575,
29899,
354,
4298,
29899,
29879,
2438,
29899,
29874,
1341,
5070,
29899,
29906,
29900,
29896,
29945,
29899,
29874,
2935,
29914,
18798,
29914,
29900,
11008,
15678,
263,
367,
538,
1122,
367,
1781,
363,
596,
9045,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
14606,
29899,
29887,
798,
292,
29899,
29874,
29899,
915,
538,
29899,
13029,
29899,
915,
29899,
16773,
29899,
1454,
29899,
8066,
29899,
354,
4298,
29914,
13,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
14606,
29899,
29887,
798,
292,
29899,
29874,
29899,
915,
538,
29899,
13029,
29899,
915,
29899,
16773,
29899,
1454,
29899,
8066,
29899,
354,
4298,
8484,
21032,
27034,
29892,
29871,
29906,
29953,
8378,
29871,
29906,
29900,
29896,
29945,
29871,
29896,
29900,
29901,
29941,
29906,
29901,
29946,
29947,
718,
29900,
29900,
29900,
29900,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
13401,
29886,
29922,
29896,
29906,
29900,
29941,
29945,
27407,
29879,
714,
367,
25600,
1122,
1532,
367,
1900,
1156,
599,
30098,
13,
13,
3629,
3163,
526,
5172,
14171,
278,
534,
355,
393,
2360,
10614,
29892,
541,
301,
2486,
896,
505,
19225,
28985,
304,
263,
8178,
8424,
310,
3965,
393,
14661,
896,
1795,
367,
10579,
28859,
4790,
819,
293,
29889,
12952,
373,
278,
2228,
29892,
3138,
29892,
505,
22851,
287,
304,
2125,
964,
19220,
278,
7333,
2299,
1169,
310,
367,
538,
29899,
29879,
637,
292,
15724,
29892,
322,
763,
3538,
29892,
278,
6374,
3291,
393,
591,
4362,
697,
756,
304,
5957,
29889,
13,
13,
3664,
25617,
29973,
2266,
30010,
29879,
1749,
5839,
310,
278,
1900,
9590,
304,
6548,
263,
367,
538,
785,
18034,
3063,
5051,
5625,
29876,
767,
368,
29892,
310,
3236,
29889,
13,
13,
9662,
2575,
515,
528,
5555,
364,
1161,
13,
13,
1168,
509,
653,
304,
5972,
17750,
29892,
1424,
2463,
1546,
12995,
311,
322,
19309,
338,
451,
278,
14419,
4556,
310,
8006,
272,
364,
1161,
297,
20502,
29899,
808,
27464,
15724,
29892,
5998,
372,
338,
4049,
278,
13949,
19428,
29889,
5129,
29943,
324,
506,
352,
23448,
2594,
2291,
29872,
30010,
29892,
408,
372,
30010,
29879,
2998,
29892,
508,
884,
367,
8581,
491,
263,
289,
5761,
1974,
2000,
380,
481,
5819,
2029,
542,
8668,
29892,
322,
508,
3380,
322,
367,
5718,
2705,
946,
3874,
29894,
630,
491,
28424,
20888,
363,
278,
1021,
528,
5555,
21083,
785,
640,
9103,
630,
411,
278,
289,
5761,
423,
785,
373,
263,
14218,
8405,
29889,
29098,
545,
304,
1735,
596,
12995,
311,
470,
5941,
596,
1506,
1878,
508,
1121,
297,
15561,
20309,
322,
263,
3353,
16947,
310,
3805,
768,
362,
29892,
10124,
19309,
269,
487,
29892,
372,
23766,
29892,
322,
785,
15029,
1603,
785,
9644,
523,
368,
29889,
13,
13,
1576,
1900,
982,
304,
8177,
7535,
310,
445,
11777,
29891,
4195,
29973,
25538,
528,
5555,
263,
2867,
29889,
20655,
280,
429,
4542,
29875,
4097,
322,
4531,
550,
414,
6943,
4497,
4245,
506,
22193,
674,
1371,
29892,
541,
10594,
1623,
278,
8006,
272,
363,
263,
1550,
322,
14372,
596,
19309,
304,
9792,
338,
278,
1900,
2655,
393,
366,
508,
437,
363,
7535,
29889,
2216,
871,
674,
596,
19309,
3380,
304,
540,
284,
901,
9098,
29892,
541,
366,
30010,
645,
884,
679,
304,
7689,
449,
263,
269,
1406,
367,
538,
607,
674,
4612,
278,
10757,
29889,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
24300,
322,
28618,
273,
1522,
538,
438,
309,
13,
13,
1184,
371,
312,
515,
599,
15064,
583,
13,
13,
29903,
575,
3321,
304,
1248,
2435,
322,
19786,
29973,
319,
367,
538,
1033,
4953,
596,
716,
1900,
5121,
29889,
3834,
4658,
393,
2258,
1455,
11315,
508,
4175,
714,
1906,
8928,
3459,
17105,
29892,
1550,
4045,
1663,
391,
393,
285,
18813,
871,
19700,
304,
11551,
963,
322,
3013,
963,
263,
2217,
2086,
3802,
363,
13016,
29889,
806,
4070,
369,
338,
1565,
29892,
372,
2444,
304,
367,
7795,
5611,
29892,
408,
278,
10122,
310,
2319,
26999,
310,
1248,
2435,
322,
19786,
2615,
304,
2869,
5129,
2783,
575,
277,
895,
30010,
278,
5198,
1540,
1788,
304,
963,
29889,
450,
1121,
310,
445,
338,
393,
278,
3573,
4947,
1304,
304,
2319,
26999,
310,
1248,
2435,
322,
19786,
1020,
2986,
297,
278,
2258,
1455,
11315,
322,
7415,
3109,
5517,
304,
7657,
304,
963,
29889,
7867,
29991,
13,
13,
1184,
371,
312,
515,
19309,
23900,
13,
13,
29903,
637,
292,
263,
12003,
367,
538,
1122,
5967,
366,
7375,
322,
24738,
287,
2041,
22792,
814,
603,
29892,
541,
1016,
30010,
29873,
748,
528,
5555,
372,
599,
1283,
925,
3447,
29889,
319,
7786,
6559,
18043,
472,
8314,
30010,
29879,
3014,
310,
14234,
25195,
5148,
472,
920,
11828,
2258,
1455,
11315,
338,
297,
822,
2548,
278,
19309,
515,
278,
6575,
30010,
29879,
501,
29963,
15570,
29879,
29892,
322,
17845,
393,
263,
367,
538,
508,
1371,
304,
5557,
19309,
23900,
491,
13138,
385,
15899,
29871,
29929,
29900,
29899,
29929,
29945,
29995,
13047,
29892,
8679,
373,
278,
367,
538,
30010,
29879,
3309,
29892,
9027,
322,
10696,
310,
2258,
1455,
11315,
29889,
910,
947,
451,
29892,
3138,
29892,
2099,
393,
372,
30010,
29879,
931,
304,
9016,
1283,
278,
6575,
10525,
925,
3447,
29892,
408,
599,
367,
3163,
526,
1422,
785,
322,
1584,
278,
12003,
342,
508,
30010,
29873,
5957,
366,
29871,
29896,
29900,
29900,
29995,
13047,
29889,
13,
13,
4205,
2543,
895,
1274,
484,
885,
1503,
322,
4319,
19309,
13,
13,
29907,
499,
440,
1218,
263,
367,
538,
1033,
437,
366,
20947,
310,
5025,
2470,
565,
366,
30010,
345,
17654,
515,
1274,
484,
297,
278,
4940,
29889,
6212,
3456,
292,
297,
15722,
304,
4612,
701,
17997,
322,
885,
1503,
508,
367,
278,
289,
1662,
310,
1784,
1757,
30010,
29879,
10379,
29892,
10734,
1728,
278,
21684,
2857,
310,
1207,
786,
393,
338,
21750,
287,
304,
1009,
12944,
6795,
20895,
29889,
319,
9416,
367,
538,
674,
11105,
738,
9644,
523,
368,
10161,
310,
19309,
373,
278,
521,
262,
29892,
322,
23196,
674,
367,
738,
278,
281,
7608,
29889,
13,
13,
6716,
4331,
14432,
310,
278,
4870,
29973,
26460,
366,
30010,
345,
1472,
1063,
18834,
1218,
263,
367,
538,
470,
526,
3763,
13858,
5622,
278,
715,
19440,
29892,
450,
10924,
915,
3163,
830,
854,
479,
30010,
29879,
14982,
716,
3464,
310,
1522,
538,
438,
2719,
674,
9801,
393,
596,
2258,
1455,
285,
18813,
9242,
297,
6872,
2246,
4195,
472,
599,
3064,
29889,
12037,
287,
304,
2730,
391,
332,
895,
29892,
4195,
322,
10597,
278,
767,
20409,
310,
3700,
29899,
1171,
267,
29892,
278,
24300,
3164,
355,
322,
28618,
273,
3164,
355,
526,
1286,
3625,
304,
15649,
544,
7612,
472,
15151,
29929,
29889,
29929,
29929,
1269,
29889,
13,
13,
5262,
29958,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
14606,
29899,
29887,
798,
292,
29899,
29874,
29899,
915,
538,
29899,
13029,
29899,
915,
29899,
16773,
29899,
1454,
29899,
8066,
29899,
354,
4298,
29914,
18798,
29914,
29900,
1576,
1178,
24414,
30010,
29879,
10754,
304,
367,
538,
4071,
28826,
29892,
367,
538,
2562,
669,
25413,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
8819,
1862,
29899,
13075,
29899,
517,
29899,
915,
538,
29899,
29887,
8345,
292,
29899,
915,
538,
29899,
18020,
29899,
3396,
841,
749,
29914,
13,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
8819,
1862,
29899,
13075,
29899,
517,
29899,
915,
538,
29899,
29887,
8345,
292,
29899,
915,
538,
29899,
18020,
29899,
3396,
841,
749,
8484,
21032,
1349,
29884,
29892,
29871,
29906,
29945,
8378,
29871,
29906,
29900,
29896,
29945,
29871,
29896,
29946,
29901,
29941,
29929,
29901,
29946,
29929,
718,
29900,
29900,
29900,
29900,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
13401,
29886,
29922,
29896,
29906,
29900,
29946,
29947,
2831,
278,
4940,
1023,
2440,
297,
1757,
30010,
29879,
4071,
28826,
322,
13460,
278,
367,
538,
756,
337,
12961,
22747,
1004,
29889,
3645,
7793,
26549,
583,
304,
14853,
18469,
29892,
278,
367,
538,
338,
3595,
5051,
1568,
16978,
29889,
450,
1857,
534,
355,
338,
7148,
7113,
367,
538,
322,
1818,
1829,
11949,
3595,
515,
278,
2507,
310,
278,
6462,
29892,
10734,
515,
278,
12684,
713,
3152,
29889,
1152,
1906,
3063,
304,
6548,
263,
367,
538,
322,
3013,
372,
297,
2107,
8267,
472,
599,
3064,
591,
505,
1925,
4208,
777,
2246,
25562,
363,
278,
2562,
322,
25413,
310,
367,
3163,
29889,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
24300,
322,
28618,
273,
1522,
538,
438,
309,
13,
13,
1252,
4542,
29347,
596,
3700,
13,
13,
10401,
937,
15678,
714,
596,
367,
538,
372,
508,
4953,
1407,
22728,
29891,
322,
372,
23766,
363,
278,
937,
2846,
3841,
29889,
1763,
3109,
264,
1438,
9545,
1550,
596,
19309,
4947,
1304,
304,
1641,
10664,
491,
278,
11315,
1018,
1438,
3519,
310,
2562,
29889,
3824,
429,
4542,
29347,
596,
3700,
322,
11315,
411,
263,
286,
789,
3700,
14387,
431,
29889,
450,
429,
4542,
29875,
1218,
3158,
4964,
575,
278,
11420,
7546,
310,
11315,
1754,
515,
13023,
21203,
14372,
2730,
391,
332,
275,
414,
322,
4094,
304,
3896,
322,
4964,
264,
278,
11315,
29889,
2401,
368,
450,
10924,
915,
3163,
830,
854,
479,
4918,
29899,
2713,
1351,
6411,
29885,
14218,
408,
445,
674,
884,
1371,
304,
4964,
264,
278,
19309,
322,
11315,
29889,
13,
13,
11403,
263,
11029,
367,
538,
471,
29882,
322,
4195,
261,
13,
13,
26222,
596,
367,
538,
756,
21633,
714,
3307,
304,
3380,
7344,
292,
322,
15877,
1847,
278,
937,
3236,
310,
3158,
338,
304,
671,
263,
27189,
367,
538,
471,
29882,
322,
4195,
261,
29889,
1522,
538,
11315,
338,
901,
1302,
7989,
322,
12003,
1135,
2343,
11315,
322,
6858,
1422,
2348,
1127,
10070,
304,
2125,
2562,
310,
372,
6284,
607,
338,
2020,
4226,
528,
314,
1129,
29877,
322,
4195,
414,
674,
451,
664,
8886,
408,
1532,
408,
263,
961,
5584,
883,
7964,
3234,
29889,
319,
1781,
11029,
4145,
470,
1506,
1878,
338,
18853,
363,
12515,
1906,
5224,
658,
4684,
3063,
408,
1781,
470,
2253,
1135,
278,
2246,
29991,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
341,
18291,
1829,
399,
1165,
13,
13,
11403,
263,
11029,
367,
538,
17182,
13,
13,
26222,
599,
7575,
322,
419,
2580,
29892,
3394,
263,
15877,
1847,
470,
4195,
292,
3234,
408,
445,
674,
1371,
3013,
2712,
297,
2246,
883,
29889,
3118,
310,
278,
1556,
5972,
7539,
1860,
338,
263,
367,
538,
17182,
29889,
450,
288,
2719,
515,
450,
10924,
915,
3163,
830,
854,
479,
674,
3013,
596,
367,
538,
1532,
4195,
287,
322,
3867,
263,
7575,
7248,
1183,
264,
29892,
408,
1532,
408,
3013,
366,
1560,
7807,
7575,
322,
767,
368,
29889,
2216,
304,
367,
20898,
29892,
278,
1818,
1829,
338,
385,
4100,
760,
310,
278,
367,
538,
322,
15399,
263,
1781,
1818,
1829,
281,
1165,
674,
3013,
596,
298,
12935,
1082,
12359,
19544,
297,
2691,
883,
29991,
450,
1900,
2280,
338,
304,
2125,
263,
2319,
5253,
515,
278,
14631,
411,
596,
285,
292,
824,
737,
29892,
14051,
1546,
278,
23915,
304,
14294,
29892,
3394,
304,
278,
1818,
1829,
322,
367,
538,
29892,
769,
4145,
322,
3114,
5034,
304,
596,
260,
579,
267,
29991,
13,
13,
11403,
263,
5101,
310,
961,
5584,
8688,
286,
18291,
1829,
322,
367,
538,
885,
790,
943,
13,
13,
2744,
1228,
2944,
304,
2050,
363,
6775,
367,
538,
322,
1818,
1829,
25413,
338,
263,
1781,
731,
310,
9335,
22437,
470,
885,
790,
943,
29889,
19152,
292,
1906,
11315,
29879,
297,
1196,
322,
528,
10501,
1532,
674,
1207,
278,
4328,
310,
3063,
763,
263,
1407,
270,
23239,
16615,
470,
4335,
379,
1331,
515,
278,
14064,
4834,
21694,
29889,
399,
1161,
322,
4145,
408,
4226,
769,
17151,
263,
2217,
472,
263,
931,
515,
278,
12770,
2745,
366,
6176,
278,
7429,
8267,
322,
8722,
29889,
960,
366,
437,
451,
4459,
25561,
2599,
445,
7535,
29892,
596,
2594,
495,
674,
674,
11687,
704,
27084,
263,
17151,
322,
3114,
278,
2446,
931,
366,
526,
297,
363,
263,
447,
2076,
329,
29889,
13,
13,
4806,
6398,
366,
278,
1407,
1900,
411,
596,
298,
12935,
1082,
12359,
19544,
310,
367,
538,
322,
1818,
1829,
15678,
29889,
1094,
411,
599,
2712,
4071,
28826,
263,
2217,
2562,
322,
25413,
2715,
304,
596,
26529,
674,
3013,
366,
3063,
596,
1900,
322,
21210,
292,
14332,
2820,
366,
29889,
13,
13,
4002,
29886,
568,
13676,
393,
5129,
412,
557,
367,
538,
30010,
756,
1063,
7450,
29892,
372,
338,
14171,
10231,
368,
2821,
393,
278,
27977,
367,
538,
338,
1244,
304,
7952,
29889,
13,
13,
2855,
304,
1371,
3013,
963,
297,
1423,
29892,
5188,
1974,
1757,
30010,
29879,
4071,
28826,
14982,
450,
10924,
915,
3163,
830,
854,
479,
756,
5492,
263,
716,
3464,
310,
11029,
367,
538,
288,
2719,
304,
4327,
963,
515,
443,
29873,
2795,
367,
19416,
304,
767,
368,
5835,
12343,
778,
29889,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
24300,
322,
28618,
273,
1522,
538,
438,
309,
13,
13,
1576,
4333,
11624,
310,
1023,
288,
2719,
313,
20313,
29871,
29945,
29900,
828,
29897,
15416,
2580,
5129,
2385,
293,
3164,
355,
30010,
322,
5129,
29907,
431,
273,
3164,
355,
30010,
29892,
411,
1269,
27032,
263,
5412,
1999,
355,
310,
10849,
322,
21799,
457,
29899,
3844,
7807,
288,
2719,
322,
5227,
629,
2925,
8688,
304,
10597,
29892,
2730,
391,
332,
895,
322,
12566,
2258,
1455,
11315,
1550,
10397,
1218,
3484,
5617,
322,
427,
5403,
3277,
367,
538,
8267,
29889,
13,
13,
2831,
278,
758,
8802,
2846,
3447,
304,
367,
269,
6085,
1133,
491,
278,
367,
538,
30010,
29879,
25530,
29892,
278,
14982,
756,
884,
15241,
263,
716,
286,
18291,
1829,
281,
1165,
29892,
607,
338,
3625,
297,
1361,
29891,
29871,
29906,
29900,
828,
23131,
29879,
363,
6023,
29899,
14340,
373,
278,
748,
29889,
13,
13,
29968,
21369,
408,
5129,
1576,
2787,
30010,
29879,
2315,
20409,
6070,
28826,
18007,
30010,
29892,
450,
10924,
915,
3163,
830,
854,
479,
338,
1900,
2998,
363,
967,
9849,
293,
7990,
528,
5555,
9316,
29892,
6257,
2834,
408,
263,
528,
5555,
1196,
12242,
287,
472,
1757,
411,
260,
820,
19281,
569,
29889,
739,
756,
1951,
17832,
304,
427,
2388,
465,
599,
21420,
310,
4071,
28826,
29892,
13138,
5129,
1576,
18514,
6490,
6070,
28826,
28224,
5597,
363,
8195,
7567,
30010,
29889,
13,
13,
1576,
716,
367,
538,
322,
286,
18291,
1829,
15877,
1847,
3464,
5988,
263,
7300,
4333,
310,
9316,
2307,
3625,
515,
278,
4908,
14982,
29892,
3704,
278,
716,
11315,
29899,
22062,
1847,
3464,
10325,
2715,
304,
967,
2307,
21210,
573,
337,
546,
18734,
29889,
13,
13,
1576,
367,
538,
288,
2719,
322,
286,
18291,
1829,
281,
1165,
526,
1286,
3625,
515,
450,
10924,
915,
3163,
830,
854,
479,
313,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
19032,
511,
544,
7612,
472,
15151,
29929,
29889,
29929,
29929,
322,
15151,
29953,
29889,
29929,
29929,
8307,
29889,
13,
13,
3664,
267,
304,
7641,
943,
13,
13,
28173,
450,
10924,
915,
3163,
830,
854,
479,
13,
13,
1576,
10924,
915,
3163,
830,
854,
479,
338,
263,
5188,
1974,
3464,
310,
11029,
528,
5555,
322,
1757,
30010,
29879,
2071,
3742,
598,
9316,
8688,
304,
15499,
260,
820,
19281,
569,
322,
22002,
280,
3619,
528,
5555,
4828,
763,
8006,
272,
12138,
322,
364,
1161,
29889,
450,
528,
5555,
9316,
1712,
3826,
7367,
457,
30536,
29892,
263,
5412,
2348,
1127,
993,
393,
756,
1063,
8688,
304,
10032,
367,
538,
14321,
29889,
5853,
2472,
508,
367,
1476,
472,
7821,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29889,
13,
13,
2277,
13,
13,
5262,
29958,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
9539,
915,
3163,
29899,
27901,
479,
29899,
15343,
267,
29899,
1482,
29899,
3881,
29899,
974,
29899,
1646,
2596,
29882,
459,
29899,
29567,
29899,
915,
538,
29899,
29877,
2719,
29899,
29885,
18291,
1829,
29899,
29893,
1165,
29914,
18798,
29914,
29900,
1576,
10924,
915,
3163,
830,
854,
479,
17852,
30010,
29879,
8373,
402,
2027,
16886,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
9539,
915,
3163,
29899,
27901,
479,
29899,
29888,
19467,
29899,
3250,
29899,
29887,
2027,
29899,
13075,
29914,
13,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
29914,
7312,
29914,
1552,
29899,
9539,
915,
3163,
29899,
27901,
479,
29899,
29888,
19467,
29899,
3250,
29899,
29887,
2027,
29899,
13075,
8484,
21032,
1349,
29884,
29892,
29871,
29896,
29896,
8378,
29871,
29906,
29900,
29896,
29945,
29871,
29896,
29906,
29901,
29941,
29906,
29901,
29900,
29945,
718,
29900,
29900,
29900,
29900,
1124,
597,
1636,
29889,
9539,
915,
3163,
29899,
27901,
479,
29889,
1111,
29889,
2679,
13401,
29886,
29922,
29896,
29896,
29929,
29945,
29946,
855,
2707,
373,
825,
304,
679,
596,
270,
328,
445,
1629,
29973,
349,
18219,
11825,
508,
367,
2898,
304,
3113,
29892,
541,
450,
10924,
915,
3163,
830,
854,
479,
756,
28240,
701,
278,
767,
20409,
310,
330,
17741,
363,
366,
29892,
599,
310,
607,
526,
1854,
304,
1925,
263,
17819,
373,
738,
4783,
30010,
29879,
3700,
29889,
13,
13,
29954,
6545,
29911,
11368,
29903,
13,
13,
2831,
360,
7925,
297,
817,
310,
263,
4866,
4071,
28826,
975,
2350,
352,
29892,
278,
2431,
3647,
2315,
26240,
338,
385,
10839,
982,
304,
766,
4838,
873,
7899,
3271,
278,
13182,
785,
322,
278,
1900,
2655,
338,
29892,
540,
30010,
645,
2360,
12006,
366,
29889,
18585,
304,
1925,
263,
17819,
373,
1432,
4783,
30010,
29879,
3700,
322,
679,
366,
7812,
1250,
964,
278,
1781,
8277,
636,
13,
13,
3644,
540,
3430,
925,
2691,
541,
22602,
30010,
29873,
4784,
670,
5227,
629,
749,
297,
2440,
29892,
769,
278,
382,
585,
316,
1763,
488,
24087,
402,
2027,
3789,
674,
367,
925,
278,
4982,
29889,
319,
10849,
322,
21799,
457,
885,
296,
9132,
297,
263,
325,
4626,
424,
7254,
18046,
280,
29892,
278,
9408,
29911,
5304,
4866,
411,
263,
9686,
1510,
261,
9127,
29889,
910,
338,
697,
413,
277,
393,
674,
505,
1075,
1560,
7807,
763,
263,
1855,
767,
297,
694,
931,
29889,
13,
13,
1123,
29899,
524,
3518,
346,
1075,
304,
278,
3186,
310,
13807,
7990,
528,
5555,
411,
450,
10924,
915,
3163,
830,
854,
479,
624,
4254,
26240,
29889,
2866,
17225,
263,
3104,
310,
1749,
9849,
293,
21684,
2857,
1383,
5555,
315,
1633,
29892,
263,
19176,
14073,
265,
1383,
5555,
1771,
1878,
322,
9418,
29899,
6774,
29886,
381,
424,
316,
17606,
424,
29892,
591,
30010,
345,
884,
12005,
297,
263,
29871,
29906,
29900,
828,
4559,
2159,
310,
1749,
4918,
29899,
2713,
1351,
7392,
29885,
13,
13,
3644,
540,
30010,
29879,
697,
4331,
14432,
310,
278,
3748,
322,
2307,
263,
4259,
287,
7990,
528,
12483,
29892,
278,
5556,
1314,
29872,
26240,
674,
6216,
278,
330,
24377,
11118,
28138,
29889,
319,
21684,
2857,
9262,
310,
9316,
3704,
263,
2989,
29899,
2311,
4721,
29899,
2713,
1351,
438,
309,
29892,
1383,
5555,
315,
1633,
322,
4918,
29899,
2713,
1351,
7392,
29885,
3412,
411,
263,
19176,
14073,
265,
528,
5555,
1506,
1878,
304,
1371,
1075,
373,
670,
982,
304,
393,
4922,
528,
1351,
29889,
450,
413,
277,
884,
3743,
385,
9418,
29899,
6774,
29886,
381,
424,
316,
17606,
424,
304,
8341,
670,
7250,
26529,
278,
1492,
982,
636,
13,
13,
6716,
363,
278,
767,
1058,
4188,
267,
263,
2217,
2586,
310,
21684,
2857,
297,
670,
2834,
29892,
278,
12230,
261,
14348,
3765,
12864,
8006,
272,
19797,
731,
7199,
4637,
278,
3041,
314,
681,
2522,
326,
3673,
15332,
8006,
272,
29892,
3412,
411,
263,
3104,
310,
21684,
2857,
1383,
5555,
315,
1633,
322,
4918,
29899,
2713,
1351,
7392,
29885,
322,
263,
19176,
14073,
265,
528,
5555,
1506,
1878,
29889,
13,
13,
15715,
8193,
669,
350,
13668,
29979,
13,
13,
29954,
573,
1075,
278,
8492,
304,
1653,
1880,
29899,
845,
457,
29892,
7990,
29899,
6914,
11949,
1083,
262,
275,
1760,
310,
278,
29871,
29953,
359,
411,
1749,
14982,
716,
4094,
29899,
6707,
14351,
1943,
29889,
678,
2925,
526,
29892,
540,
26758,
963,
278,
937,
931,
4513,
29892,
577,
445,
1999,
579,
515,
278,
4940,
674,
694,
7404,
367,
263,
12853,
697,
29889,
13,
13,
6028,
30010,
29873,
21750,
278,
19797,
731,
2984,
29973,
399,
3818,
451,
29892,
393,
1838,
30010,
29873,
2099,
366,
30010,
645,
505,
304,
1925,
701,
411,
670,
6460,
7348,
310,
1156,
845,
1351,
363,
278,
363,
968,
29872,
519,
5434,
29889,
450,
382,
585,
316,
1763,
488,
24087,
5304,
297,
263,
325,
4626,
424,
7254,
18046,
280,
29892,
1869,
261,
29899,
3486,
287,
411,
278,
9849,
293,
10924,
915,
3163,
2071,
913,
29889,
13,
13,
7068,
7520,
4214,
382,
1799,
3919,
25758,
29903,
13,
13,
3644,
366,
30010,
345,
2355,
263,
4783,
411,
28152,
2258,
1455,
11315,
29892,
278,
521,
2925,
526,
393,
540,
30010,
29879,
21242,
701,
411,
670,
14218,
528,
1351,
29889,
12065,
777,
15377,
1250,
964,
670,
7250,
411,
263,
2323,
3104,
310,
450,
10924,
915,
3163,
830,
854,
479,
30010,
29879,
21684,
2857,
528,
5555,
907,
314,
785,
451,
871,
947,
372,
377,
666,
701,
964,
263,
2691,
301,
1624,
304,
16089,
10388,
385,
6775,
528,
1351,
29892,
541,
372,
884,
6911,
304,
15499,
3619,
528,
5555,
8879,
267,
1316,
408,
8006,
272,
364,
1161,
322,
12138,
29889,
13,
13,
29943,
19467,
1058,
526,
22296,
297,
263,
12166,
719,
297,
278,
286,
1398,
886,
674,
11188,
450,
10924,
915,
3163,
830,
854,
479,
30010,
29879,
1506,
1878,
2222,
1383,
5555,
24380,
29889,
1939,
817,
363,
263,
1506,
1878,
470,
12580,
29880,
29892,
445,
508,
367,
7436,
7812,
304,
278,
3700,
411,
23915,
363,
263,
4996,
322,
4780,
528,
1351,
29889,
13,
13,
6572,
862,
362,
338,
1820,
746,
372,
5304,
304,
278,
4922,
528,
1351,
29892,
322,
385,
26230,
29892,
2654,
364,
1161,
674,
694,
7404,
1207,
363,
385,
26230,
29892,
2654,
270,
328,
29889,
450,
10924,
915,
3163,
830,
854,
479,
4721,
29899,
2713,
1351,
438,
309,
674,
604,
328,
9593,
528,
5555,
8879,
267,
491,
427,
5403,
3277,
8006,
272,
5857,
311,
322,
4964,
8333,
278,
11315,
29879,
1434,
3179,
363,
385,
6775,
29892,
1560,
29877,
1228,
7271,
29889,
13,
13,
14084,
408,
10223,
362,
338,
4100,
29892,
1494,
701,
411,
278,
1492,
9316,
338,
27131,
29889,
450,
350,
29963,
29880,
434,
915,
3163,
830,
854,
479,
30010,
29879,
4918,
1383,
1351,
7392,
29885,
674,
21732,
322,
577,
10323,
738,
3805,
768,
362,
29892,
4417,
18853,
2730,
391,
545,
1250,
964,
278,
19309,
322,
13138,
599,
278,
302,
473,
18310,
372,
4225,
29889,
13,
13,
2831,
393,
4805,
2730,
391,
545,
7124,
29892,
278,
315,
1507,
292,
4546,
391,
332,
7608,
508,
367,
1304,
599,
975,
278,
3700,
29892,
322,
338,
925,
278,
4982,
363,
20502,
29899,
808,
27464,
270,
7925,
29889,
2180,
670,
5046,
29892,
540,
881,
367,
2730,
391,
332,
5921,
7250,
322,
4646,
304,
6260,
895,
278,
10097,
310,
3454,
322,
2358,
682,
793,
785,
322,
330,
24377,
1075,
445,
881,
9801,
393,
540,
4947,
278,
13182,
29889,
13,
13,
3644,
540,
4188,
267,
263,
2834,
310,
21684,
2857,
29892,
769,
748,
393,
697,
4331,
4340,
322,
5839,
1075,
701,
450,
10924,
915,
3163,
830,
854,
479,
30010,
29879,
12230,
261,
14348,
17197,
29871,
29941,
29889,
624,
29891,
1674,
322,
24952,
29892,
372,
30010,
29879,
4240,
515,
1411,
519,
1880,
29899,
8228,
620,
262,
29892,
322,
338,
3578,
7915,
3447,
13016,
2197,
23228,
304,
671,
29889,
13,
13,
8897,
541,
451,
3203,
29892,
1016,
30010,
29873,
9566,
278,
1999,
3076,
29889,
2688,
1122,
367,
385,
19148,
3109,
5566,
11407,
20590,
1135,
278,
1667,
1741,
29892,
541,
825,
30010,
29879,
263,
14982,
805,
804,
292,
716,
8006,
272,
1728,
278,
3520,
4314,
304,
671,
372,
29973,
8680,
3765,
29899,
12864,
8006,
272,
1999,
3076,
21497,
28138,
964,
278,
2522,
326,
3673,
29892,
322,
508,
884,
367,
5807,
17280,
297,
4203,
304,
6216,
278,
315,
329,
29899,
1349,
307,
271,
1383,
485,
2353,
29889,
13,
13,
7068,
7520,
4214,
319,
26925,
1955,
29059,
13,
13,
2528,
385,
4799,
310,
21684,
2857,
304,
670,
7250,
528,
1351,
411,
450,
10924,
915,
3163,
830,
854,
479,
30010,
29879,
16735,
528,
5555,
12580,
29880,
29889,
23478,
292,
701,
263,
10225,
29880,
504,
276,
301,
1624,
373,
278,
1250,
310,
596,
1361,
674,
694,
5520,
9378,
625,
29892,
408,
528,
5555,
24187,
1372,
1250,
304,
278,
2441,
322,
1900,
3519,
310,
3841,
7695,
491,
29889,
2178,
393,
30010,
29879,
3734,
338,
445,
12580,
29880,
29892,
263,
1506,
1878,
322,
777,
4094,
304,
377,
666,
450,
10924,
915,
3163,
830,
854,
479,
30010,
29879,
21684,
2857,
1383,
5555,
315,
1633,
964,
278,
1556,
21210,
573,
301,
1624,
596,
270,
328,
756,
3926,
3595,
29889,
19019,
29973,
13,
13,
29943,
1624,
30010,
29879,
8373,
22819,
2247,
28138,
411,
278,
8753,
22394,
4259,
29892,
322,
825,
2253,
982,
304,
3787,
670,
767,
368,
4071,
28826,
3686,
9409,
1135,
297,
450,
10924,
915,
3163,
830,
854,
479,
30010,
29879,
3201,
955,
399,
1161,
23156,
29973,
7997,
3307,
304,
3699,
599,
278,
3520,
4314,
322,
3447,
2319,
3307,
304,
6216,
28138,
964,
670,
14726,
4878,
785,
4982,
2309,
29889,
13,
13,
2831,
270,
7925,
1058,
526,
2307,
1035,
1796,
287,
304,
278,
13807,
7990,
528,
1351,
29892,
278,
1383,
5555,
22578,
295,
674,
2125,
2712,
393,
697,
4331,
4340,
29889,
1105,
12535,
297,
7375,
4094,
322,
21021,
2820,
278,
3646,
4038,
758,
29899,
845,
1351,
29892,
445,
3732,
363,
263,
26681,
292,
6124,
304,
278,
26529,
408,
263,
2748,
29899,
29874,
29899,
18448,
7539,
29889,
13,
13,
3644,
366,
30010,
345,
2307,
413,
4430,
1075,
714,
411,
599,
278,
10924,
915,
3163,
330,
799,
540,
1033,
926,
14981,
817,
363,
3517,
12060,
3250,
29892,
17661,
322,
17852,
30010,
29879,
8373,
22981,
29892,
769,
521,
2925,
526,
29892,
540,
30010,
645,
817,
9051,
304,
3787,
963,
29889,
450,
12230,
261,
14348,
10228,
1771,
1878,
322,
24961,
272,
6679,
674,
3013,
670,
528,
5555,
8492,
297,
1423,
29892,
322,
338,
2107,
363,
6445,
963,
1283,
373,
278,
27683,
8345,
528,
761,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
Programmatic multi-select on the Silverlight DataGrid control
Is it possible to programmatically perform multi-select operations (eg. extend selection, remove selection) on the Silverlight 4 DataGrid control?
A:
I didn't notice it at first, but the SelectedItems collection on the DataGrid is directly editable. So you can add/remove things on that collection directly to change selection.
| [
1,
660,
29901,
13,
13,
9283,
29885,
2454,
2473,
29899,
2622,
373,
278,
16466,
4366,
3630,
5756,
2761,
13,
13,
3624,
372,
1950,
304,
1824,
20300,
2189,
2473,
29899,
2622,
6931,
313,
387,
29889,
10985,
9262,
29892,
3349,
9262,
29897,
373,
278,
16466,
4366,
29871,
29946,
3630,
5756,
2761,
29973,
13,
13,
29909,
29901,
13,
13,
29902,
3282,
29915,
29873,
8369,
372,
472,
937,
29892,
541,
278,
22012,
6913,
4333,
373,
278,
3630,
5756,
338,
4153,
3863,
519,
29889,
1105,
366,
508,
788,
29914,
5992,
2712,
373,
393,
4333,
4153,
304,
1735,
9262,
29889,
29871,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
#pragma once
// stolen from https://github.com/gpakosz/Assert
#if defined(_WIN32)
# define vi_debug_break() __debugbreak()
#elif defined(__ORBIS__)
# define vi_debug_break() __builtin_trap()
#elif defined(__clang__)
# define vi_debug_break() __builtin_debugtrap()
#elif defined(linux) || defined(__linux) || defined(__linux__) || defined(__APPLE__)
# include <signal.h>
# define vi_debug_break() raise(SIGTRAP)
#elif defined(__GNUC__)
# define vi_debug_break() __builtin_trap()
#else
# define vi_debug_break() ((void)0)
#endif
#define vi_debug(fmt, ...) fprintf(stderr, "%s:%d: " fmt "\n", __func__, __LINE__, __VA_ARGS__)
inline void vi_assert(bool x)
{
if (!x) { vi_debug_break(); }
}
| [
1,
396,
28436,
2748,
13,
13,
458,
380,
18975,
515,
2045,
597,
3292,
29889,
510,
29914,
29887,
29886,
557,
13165,
29914,
14697,
13,
29937,
361,
3342,
7373,
25152,
29941,
29906,
29897,
13,
29937,
29871,
4529,
3516,
29918,
8382,
29918,
8690,
580,
4770,
8382,
8690,
580,
13,
29937,
23681,
3342,
22168,
1955,
29933,
3235,
1649,
29897,
13,
29937,
29871,
4529,
3516,
29918,
8382,
29918,
8690,
580,
4770,
16145,
262,
29918,
29873,
2390,
580,
13,
29937,
23681,
3342,
22168,
695,
574,
1649,
29897,
13,
29937,
29871,
4529,
3516,
29918,
8382,
29918,
8690,
580,
4770,
16145,
262,
29918,
8382,
29873,
2390,
580,
13,
29937,
23681,
3342,
29898,
9389,
29897,
3830,
3342,
22168,
9389,
29897,
3830,
3342,
22168,
9389,
1649,
29897,
3830,
3342,
22168,
20576,
1307,
1649,
29897,
13,
29937,
29871,
3160,
529,
25436,
29889,
29882,
29958,
13,
29937,
29871,
4529,
3516,
29918,
8382,
29918,
8690,
580,
12020,
29898,
5425,
29954,
5659,
3301,
29897,
13,
29937,
23681,
3342,
22168,
29954,
11601,
29907,
1649,
29897,
13,
29937,
29871,
4529,
3516,
29918,
8382,
29918,
8690,
580,
4770,
16145,
262,
29918,
29873,
2390,
580,
13,
29937,
2870,
13,
29937,
29871,
4529,
3516,
29918,
8382,
29918,
8690,
580,
5135,
5405,
29897,
29900,
29897,
13,
29937,
15224,
13,
13,
29937,
7922,
3516,
29918,
8382,
29898,
23479,
29892,
29757,
285,
8124,
29898,
303,
20405,
29892,
11860,
29879,
16664,
29881,
29901,
376,
19200,
6634,
29876,
613,
4770,
9891,
1649,
29892,
4770,
18521,
1649,
29892,
4770,
20449,
29918,
1718,
10749,
1649,
29897,
13,
13,
14764,
1780,
3516,
29918,
9294,
29898,
11227,
921,
29897,
13,
29912,
13,
12,
361,
5384,
29916,
29897,
426,
3516,
29918,
8382,
29918,
8690,
890,
500,
13,
29913,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
I imagine the Redskins would get a lot of flak from their older fans if they were to change the name....but if they do it right think of all the money they can rake in from selling their new apparel.
As someone on Deadspin commented they could just offer to tweak the meaning of "redskins" and put an Idaho potato on their helmets.
You don't have to imagine. Many of the older fans would throw a fit. The passion regarding the name is such that if you are not a 'skins fan, you are better off not commenting on the issue here. For the record, some former players called for a name change while they were still playing.
__________________"I have the ultimate respect for White Sox fans. They were as miserable as the Cubs and Red Sox fans ever were but always had the good decency to keep it to themselves. And when they finally won the World Series, they celebrated without annoying every other fan in the country." Jim Caple, ESPN (January 12, 2011)
"We have now sunk to a depth at which the restatement of the (bleeding) obvious is the first duty of intelligent men." — George Orwell
Have the new SOX BP/Spring Training caps gone onsale yet? I didn't see it on the official site. They look nice matched up with the black jerseys based on the photos released today from inside the clubhouse. I'm hoping this will be my new favorite cap. I really liked the similar styled BP cap from a few years ago, except the mesh fabric was not as nice as the new ones.
I also like the revised Braves cap. I'm still warming up to all the alternate logos and white crowns. I'm glad the SOX kept their caps simple, although I wonder how the Diamond SOX or the Flying SOX would have looked.
I disagree with the over-sensitive people who bitch and moan about this ****ing nonsense.
It is an honor for Native Americans to be used as sports teams' nicknames/logos.
Teams use Native American names and imagery because in the past they were strong, fierce, and brave warriors.
I have especially disagreed with Paul Lukas of ESPN/ Uni Watch over this issue.
Edit: I can understand the outrage over the Cleveland Indians' Chief Wahoo logo and The Washington Redskins' name but, for folks to be upset over the names and imagery of ALL of these teams is just ridiculous.
If they ever mess with the Blackhawks name or logo I'll be the one who's outraged.
Haha, wow, yeah that's sort of a huge leap there, not assuming but telling Native Americans that they should be proud to be, essentially, a brand. Holy ****.
Without trying to be too political, which is difficult in a thread like this, my thoughts on this are like this. While some depictions of Native Americans or use of Native American names in sports are racist (Chief Wahoo for example, or the team name "Redskins"), I think that not every example of using native American imagery is racist. I have always found the Blackhawks logo to be a respectful depiction of a noble Native American warrior, specifically of Black Hawk. I think though that some people go too far, Paul Lukas is becoming one of them, in the assertion that all tribal imagery be removed. Sports Illustrated had a poll in 2002 that showed that 83% of Native Americans said they did not object to nor did they want teams to stop using Native American imagery in sports. A lot of people, Paul Lukas included, have cited some flaws in that poll and perhaps there are some but they also seem to dismiss that poll in an attempt to have it fit in with their own narrative. I wish SI or ESPN would run another poll now to remedy some of the flaws with the old one and maybe see if Native Americans find SOME logos offensive and not others.
Without trying to be too political, which is difficult in a thread like this, my thoughts on this are like this. While some depictions of Native Americans or use of Native American names in sports are racist (Chief Wahoo for example, or the team name "Redskins"), I think that not every example of using native American imagery is racist. I have always found the Blackhawks logo to be a respectful depiction of a noble Native American warrior, specifically of Black Hawk. I think though that some people go too far, Paul Lukas is becoming one of them, in the assertion that all tribal imagery be removed. Sports Illustrated had a poll in 2002 that showed that 83% of Native Americans said they did not object to nor did they want teams to stop using Native American imagery in sports. A lot of people, Paul Lukas included, have cited some flaws in that poll and perhaps there are some but they also seem to dismiss that poll in an attempt to have it fit in with their own narrative. I wish SI or ESPN would run another poll now to remedy some of the flaws with the old one and maybe see if Native Americans find SOME logos offensive and not others.
For me a lot of it depends on that individual team's relationship with and portrayel of whatever given Native American tribe or Indian they are using as a logo or name. Like, the Redskins? Yeah **** that. That's a disgrace. There is no comparision with an organization like that to, say, the Blackhawks.
They now come in actual sizes rather than small-medium, medium-large, and large-extra large.
They also look big and boxy like the authentic in-game caps.
Both are also let down.
Thanks! $35.00! The price went up. They do look a little more boxy so I think I will wait until they hit the stores so I can try one on first. I hope they have the lower crown.
In looking at the product description, they indicate that this is the game 59Fifty cap. Perhaps that's why the caps have actual sizes. I wonder if the SOX are adding this cap as an alternate cap for games? Perhaps they are wearing it with the black jerseys/road uniforms? The higher price would justify that.
...or maybe the desciption is incorrect.
Edit - The SOX have it up on their website store (MLB). Looks like it is a 59Fifty, but they indicate that it is for batting practice. I wonder if the 39Thirty caps are being discontinued?
These responses remind me of the infamous rant by jeremyb1, self-appointed leader of the "stat-geeks."
What? This is nothing at all like that. Not one bit. No one is making up the fact that lots of Native Americans are offended by offensive logos parodying them and their heritage and customs, not to mention using derogatory racial terms and images as sports team names and mascots. Is EVERY Native American outraged about EVERY single example of it? No, like I said, it's a case on case basis. But to have someone say they should be "honored" just to be included in the wonderful world of sports in that way, **** that. What's more important, being respectful to these people or ****ing sports? It's not surprising because people gotta have their sports. It wouldn't be the end of my world if the Blackhawks changed their name/logo because they were disrespectful of it.
But this is good though, very illuminating, posts like these. Nice to know what kind of people we're dealing with by being this honest.
What? This is nothing at all like that. Not one bit. No one is making up the fact that lots of Native Americans are offended by offensive logos parodying them and their heritage and customs, not to mention using derogatory racial terms and images as sports team names and mascots. Is EVERY Native American outraged about EVERY single example of it? No, like I said, it's a case on case basis. But to have someone say they should be "honored" just to be included in the wonderful world of sports in that way, **** that. What's more important, being respectful to these people or ****ing sports? It's not surprising because people gotta have their sports. It wouldn't be the end of my world if the Blackhawks changed their name/logo because they were disrespectful of it.
But this is good though, very illuminating, posts like these. Nice to know what kind of people we're dealing with by being this honest.
I said I was reminded of the thread jeremyb1 started, not that it was exactly like it. I made the comparison because thome25 seemed to be trying to speak for Native Americans as though they're incapable of speaking for themselves, just as jeremyb1 was doing with Shingo. | [
1,
306,
14034,
278,
4367,
808,
1144,
723,
679,
263,
3287,
310,
17422,
29895,
515,
1009,
9642,
24909,
565,
896,
892,
304,
1735,
278,
1024,
3045,
4187,
565,
896,
437,
372,
1492,
1348,
310,
599,
278,
6909,
896,
508,
1153,
446,
297,
515,
269,
7807,
1009,
716,
623,
17243,
29889,
13,
13,
2887,
4856,
373,
16992,
1028,
262,
19952,
896,
1033,
925,
5957,
304,
7780,
557,
278,
6593,
310,
376,
1127,
808,
1144,
29908,
322,
1925,
385,
5163,
29745,
3104,
1219,
373,
1009,
1081,
29885,
1691,
29889,
13,
13,
3492,
1016,
29915,
29873,
505,
304,
14034,
29889,
9267,
310,
278,
9642,
24909,
723,
3183,
263,
6216,
29889,
450,
15935,
11211,
278,
1024,
338,
1316,
393,
565,
366,
526,
451,
263,
525,
808,
1144,
13524,
29892,
366,
526,
2253,
1283,
451,
3440,
292,
373,
278,
2228,
1244,
29889,
1152,
278,
2407,
29892,
777,
4642,
10769,
2000,
363,
263,
1024,
1735,
1550,
896,
892,
1603,
8743,
29889,
13,
13,
27097,
1649,
29908,
29902,
505,
278,
8494,
6490,
3390,
363,
8037,
1105,
29916,
24909,
29889,
2688,
892,
408,
27788,
519,
408,
278,
315,
23954,
322,
4367,
1105,
29916,
24909,
3926,
892,
541,
2337,
750,
278,
1781,
1602,
3819,
304,
3013,
372,
304,
6053,
29889,
1126,
746,
896,
7146,
2113,
278,
2787,
10488,
29892,
896,
26301,
1728,
12327,
5414,
1432,
916,
13524,
297,
278,
4234,
1213,
8507,
5915,
280,
29892,
26480,
29940,
313,
29967,
15623,
653,
29871,
29896,
29906,
29892,
29871,
29906,
29900,
29896,
29896,
29897,
13,
13,
29908,
4806,
505,
1286,
269,
2960,
304,
263,
10809,
472,
607,
278,
1791,
271,
882,
310,
278,
313,
569,
21219,
29897,
6924,
338,
278,
937,
13360,
310,
13052,
296,
1757,
1213,
813,
5122,
1394,
5872,
13,
13,
25559,
278,
716,
7791,
29990,
350,
29925,
29914,
19634,
26101,
26091,
7695,
373,
29879,
744,
3447,
29973,
306,
3282,
29915,
29873,
1074,
372,
373,
278,
6221,
3268,
29889,
2688,
1106,
7575,
19228,
701,
411,
278,
4628,
432,
261,
344,
952,
2729,
373,
278,
20612,
5492,
9826,
515,
2768,
278,
4402,
8697,
29889,
306,
29915,
29885,
17231,
445,
674,
367,
590,
716,
25448,
2117,
29889,
306,
2289,
23289,
278,
2788,
15877,
839,
350,
29925,
2117,
515,
263,
2846,
2440,
8020,
29892,
5174,
278,
27716,
18187,
471,
451,
408,
7575,
408,
278,
716,
6743,
29889,
13,
13,
29902,
884,
763,
278,
337,
11292,
5032,
1960,
2117,
29889,
306,
29915,
29885,
1603,
1370,
4056,
701,
304,
599,
278,
25010,
1480,
359,
322,
4796,
11660,
1983,
29889,
306,
29915,
29885,
10932,
278,
7791,
29990,
8126,
1009,
26091,
2560,
29892,
5998,
306,
4997,
920,
278,
22904,
898,
7791,
29990,
470,
278,
383,
5890,
7791,
29990,
723,
505,
5148,
29889,
13,
13,
29902,
22941,
929,
411,
278,
975,
29899,
23149,
3321,
2305,
1058,
289,
2335,
322,
2730,
273,
1048,
445,
334,
17435,
292,
302,
787,
1947,
29889,
13,
13,
3112,
338,
385,
10657,
363,
19042,
23035,
304,
367,
1304,
408,
14717,
10907,
29915,
25985,
7039,
29914,
1188,
359,
29889,
13,
13,
7141,
2232,
671,
19042,
3082,
2983,
322,
6382,
708,
1363,
297,
278,
4940,
896,
892,
4549,
29892,
21334,
346,
29892,
322,
26565,
1370,
28739,
29889,
13,
13,
29902,
505,
7148,
22941,
276,
287,
411,
3739,
365,
2679,
294,
310,
26480,
29940,
29914,
853,
29875,
24274,
975,
445,
2228,
29889,
13,
13,
6103,
29901,
306,
508,
2274,
278,
714,
6617,
975,
278,
27249,
17072,
29915,
14546,
399,
26779,
20194,
322,
450,
7660,
4367,
808,
1144,
29915,
1024,
541,
29892,
363,
900,
2039,
304,
367,
24081,
300,
975,
278,
2983,
322,
6382,
708,
310,
15149,
310,
1438,
10907,
338,
925,
8177,
12906,
681,
29889,
13,
13,
3644,
896,
3926,
4473,
411,
278,
6054,
29882,
1450,
2039,
1024,
470,
20194,
306,
29915,
645,
367,
278,
697,
1058,
29915,
29879,
714,
1431,
287,
29889,
13,
13,
29950,
25613,
29892,
281,
340,
29892,
21915,
393,
29915,
29879,
2656,
310,
263,
12176,
454,
481,
727,
29892,
451,
10241,
541,
14509,
19042,
23035,
393,
896,
881,
367,
22314,
304,
367,
29892,
13674,
29892,
263,
14982,
29889,
17733,
18610,
10521,
13,
13,
3047,
449,
1811,
304,
367,
2086,
8604,
29892,
607,
338,
5189,
297,
263,
3244,
763,
445,
29892,
590,
13133,
373,
445,
526,
763,
445,
29889,
5806,
777,
1401,
919,
1080,
310,
19042,
23035,
470,
671,
310,
19042,
3082,
2983,
297,
14717,
526,
11021,
391,
313,
1451,
2575,
399,
26779,
363,
1342,
29892,
470,
278,
3815,
1024,
376,
9039,
808,
1144,
4968,
306,
1348,
393,
451,
1432,
1342,
310,
773,
7531,
3082,
6382,
708,
338,
11021,
391,
29889,
306,
505,
2337,
1476,
278,
6054,
29882,
1450,
2039,
20194,
304,
367,
263,
3390,
1319,
1401,
2463,
310,
263,
15996,
19042,
3082,
1370,
13479,
29892,
10816,
310,
6054,
10875,
29895,
29889,
306,
1348,
2466,
393,
777,
2305,
748,
2086,
2215,
29892,
3739,
365,
2679,
294,
338,
14171,
697,
310,
963,
29892,
297,
278,
28306,
393,
599,
9434,
284,
6382,
708,
367,
6206,
29889,
12453,
28070,
630,
750,
263,
21180,
297,
29871,
29906,
29900,
29900,
29906,
393,
10018,
393,
29871,
29947,
29941,
29995,
310,
19042,
23035,
1497,
896,
1258,
451,
1203,
304,
3643,
1258,
896,
864,
10907,
304,
5040,
773,
19042,
3082,
6382,
708,
297,
14717,
29889,
319,
3287,
310,
2305,
29892,
3739,
365,
2679,
294,
5134,
29892,
505,
274,
1573,
777,
17422,
5652,
297,
393,
21180,
322,
6060,
727,
526,
777,
541,
896,
884,
2833,
304,
18918,
393,
21180,
297,
385,
4218,
304,
505,
372,
6216,
297,
411,
1009,
1914,
15474,
1230,
29889,
306,
6398,
22717,
470,
26480,
29940,
723,
1065,
1790,
21180,
1286,
304,
1083,
7584,
777,
310,
278,
17422,
5652,
411,
278,
2030,
697,
322,
5505,
1074,
565,
19042,
23035,
1284,
7791,
2303,
1480,
359,
1283,
6270,
322,
451,
4045,
29889,
13,
13,
3047,
449,
1811,
304,
367,
2086,
8604,
29892,
607,
338,
5189,
297,
263,
3244,
763,
445,
29892,
590,
13133,
373,
445,
526,
763,
445,
29889,
5806,
777,
1401,
919,
1080,
310,
19042,
23035,
470,
671,
310,
19042,
3082,
2983,
297,
14717,
526,
11021,
391,
313,
1451,
2575,
399,
26779,
363,
1342,
29892,
470,
278,
3815,
1024,
376,
9039,
808,
1144,
4968,
306,
1348,
393,
451,
1432,
1342,
310,
773,
7531,
3082,
6382,
708,
338,
11021,
391,
29889,
306,
505,
2337,
1476,
278,
6054,
29882,
1450,
2039,
20194,
304,
367,
263,
3390,
1319,
1401,
2463,
310,
263,
15996,
19042,
3082,
1370,
13479,
29892,
10816,
310,
6054,
10875,
29895,
29889,
306,
1348,
2466,
393,
777,
2305,
748,
2086,
2215,
29892,
3739,
365,
2679,
294,
338,
14171,
697,
310,
963,
29892,
297,
278,
28306,
393,
599,
9434,
284,
6382,
708,
367,
6206,
29889,
12453,
28070,
630,
750,
263,
21180,
297,
29871,
29906,
29900,
29900,
29906,
393,
10018,
393,
29871,
29947,
29941,
29995,
310,
19042,
23035,
1497,
896,
1258,
451,
1203,
304,
3643,
1258,
896,
864,
10907,
304,
5040,
773,
19042,
3082,
6382,
708,
297,
14717,
29889,
319,
3287,
310,
2305,
29892,
3739,
365,
2679,
294,
5134,
29892,
505,
274,
1573,
777,
17422,
5652,
297,
393,
21180,
322,
6060,
727,
526,
777,
541,
896,
884,
2833,
304,
18918,
393,
21180,
297,
385,
4218,
304,
505,
372,
6216,
297,
411,
1009,
1914,
15474,
1230,
29889,
306,
6398,
22717,
470,
26480,
29940,
723,
1065,
1790,
21180,
1286,
304,
1083,
7584,
777,
310,
278,
17422,
5652,
411,
278,
2030,
697,
322,
5505,
1074,
565,
19042,
23035,
1284,
7791,
2303,
1480,
359,
1283,
6270,
322,
451,
4045,
29889,
13,
13,
2831,
592,
263,
3287,
310,
372,
7111,
373,
393,
5375,
3815,
29915,
29879,
9443,
411,
322,
2011,
764,
295,
310,
6514,
2183,
19042,
3082,
29563,
470,
7560,
896,
526,
773,
408,
263,
20194,
470,
1024,
29889,
8502,
29892,
278,
4367,
808,
1144,
29973,
15011,
334,
17435,
393,
29889,
2193,
29915,
29879,
263,
766,
3874,
346,
29889,
1670,
338,
694,
5734,
2459,
411,
385,
13013,
763,
393,
304,
29892,
1827,
29892,
278,
6054,
29882,
1450,
2039,
29889,
13,
13,
15597,
1286,
2041,
297,
3935,
15786,
3265,
1135,
2319,
29899,
27891,
29892,
18350,
29899,
16961,
29892,
322,
2919,
29899,
17833,
2919,
29889,
13,
13,
15597,
884,
1106,
4802,
322,
1045,
3594,
763,
278,
15585,
297,
29899,
11802,
26091,
29889,
13,
13,
29933,
720,
526,
884,
1235,
1623,
29889,
13,
13,
16894,
29991,
395,
29941,
29945,
29889,
29900,
29900,
29991,
450,
8666,
3512,
701,
29889,
2688,
437,
1106,
263,
2217,
901,
1045,
3594,
577,
306,
1348,
306,
674,
4480,
2745,
896,
7124,
278,
14422,
577,
306,
508,
1018,
697,
373,
937,
29889,
306,
4966,
896,
505,
278,
5224,
20844,
29889,
13,
13,
797,
3063,
472,
278,
3234,
6139,
29892,
896,
12266,
393,
445,
338,
278,
3748,
29871,
29945,
29929,
29943,
361,
1017,
2117,
29889,
11637,
393,
29915,
29879,
2020,
278,
26091,
505,
3935,
15786,
29889,
306,
4997,
565,
278,
7791,
29990,
526,
4417,
445,
2117,
408,
385,
25010,
2117,
363,
8090,
29973,
11637,
896,
526,
591,
4362,
372,
411,
278,
4628,
432,
261,
344,
952,
29914,
9972,
9090,
29879,
29973,
450,
6133,
8666,
723,
26922,
393,
29889,
13,
13,
856,
272,
5505,
278,
553,
455,
683,
338,
10240,
29889,
13,
13,
6103,
448,
450,
7791,
29990,
505,
372,
701,
373,
1009,
4700,
3787,
313,
1988,
29933,
467,
19887,
763,
372,
338,
263,
29871,
29945,
29929,
29943,
361,
1017,
29892,
541,
896,
12266,
393,
372,
338,
363,
8957,
292,
6944,
29889,
306,
4997,
565,
278,
29871,
29941,
29929,
1349,
13163,
26091,
526,
1641,
766,
1285,
262,
6742,
29973,
13,
13,
1349,
968,
20890,
1083,
513,
592,
310,
278,
3041,
314,
681,
364,
424,
491,
432,
261,
6764,
29890,
29896,
29892,
1583,
29899,
932,
2461,
287,
11822,
310,
278,
376,
6112,
29899,
479,
14541,
1213,
13,
13,
5618,
29973,
910,
338,
3078,
472,
599,
763,
393,
29889,
2216,
697,
2586,
29889,
1939,
697,
338,
3907,
701,
278,
2114,
393,
14568,
310,
19042,
23035,
526,
1283,
2760,
491,
1283,
6270,
1480,
359,
610,
1486,
292,
963,
322,
1009,
902,
16639,
322,
2888,
29879,
29892,
451,
304,
3585,
773,
589,
468,
7606,
1153,
1455,
4958,
322,
4558,
408,
14717,
3815,
2983,
322,
5516,
29883,
1862,
29889,
1317,
382,
5348,
29979,
19042,
3082,
714,
1431,
287,
1048,
382,
5348,
29979,
2323,
1342,
310,
372,
29973,
1939,
29892,
763,
306,
1497,
29892,
372,
29915,
29879,
263,
1206,
373,
1206,
8405,
29889,
1205,
304,
505,
4856,
1827,
896,
881,
367,
376,
27305,
4395,
29908,
925,
304,
367,
5134,
297,
278,
20695,
3186,
310,
14717,
297,
393,
982,
29892,
334,
17435,
393,
29889,
1724,
29915,
29879,
901,
4100,
29892,
1641,
3390,
1319,
304,
1438,
2305,
470,
334,
17435,
292,
14717,
29973,
739,
29915,
29879,
451,
26800,
1363,
2305,
2355,
941,
505,
1009,
14717,
29889,
739,
7656,
29915,
29873,
367,
278,
1095,
310,
590,
3186,
565,
278,
6054,
29882,
1450,
2039,
3939,
1009,
1024,
29914,
14569,
1363,
896,
892,
766,
690,
1103,
1319,
310,
372,
29889,
13,
13,
6246,
445,
338,
1781,
2466,
29892,
1407,
4486,
9735,
1218,
29892,
11803,
763,
1438,
29889,
20103,
304,
1073,
825,
2924,
310,
2305,
591,
29915,
276,
16743,
411,
491,
1641,
445,
15993,
29889,
13,
13,
5618,
29973,
910,
338,
3078,
472,
599,
763,
393,
29889,
2216,
697,
2586,
29889,
1939,
697,
338,
3907,
701,
278,
2114,
393,
14568,
310,
19042,
23035,
526,
1283,
2760,
491,
1283,
6270,
1480,
359,
610,
1486,
292,
963,
322,
1009,
902,
16639,
322,
2888,
29879,
29892,
451,
304,
3585,
773,
589,
468,
7606,
1153,
1455,
4958,
322,
4558,
408,
14717,
3815,
2983,
322,
5516,
29883,
1862,
29889,
1317,
382,
5348,
29979,
19042,
3082,
714,
1431,
287,
1048,
382,
5348,
29979,
2323,
1342,
310,
372,
29973,
1939,
29892,
763,
306,
1497,
29892,
372,
29915,
29879,
263,
1206,
373,
1206,
8405,
29889,
1205,
304,
505,
4856,
1827,
896,
881,
367,
376,
27305,
4395,
29908,
925,
304,
367,
5134,
297,
278,
20695,
3186,
310,
14717,
297,
393,
982,
29892,
334,
17435,
393,
29889,
1724,
29915,
29879,
901,
4100,
29892,
1641,
3390,
1319,
304,
1438,
2305,
470,
334,
17435,
292,
14717,
29973,
739,
29915,
29879,
451,
26800,
1363,
2305,
2355,
941,
505,
1009,
14717,
29889,
739,
7656,
29915,
29873,
367,
278,
1095,
310,
590,
3186,
565,
278,
6054,
29882,
1450,
2039,
3939,
1009,
1024,
29914,
14569,
1363,
896,
892,
766,
690,
1103,
1319,
310,
372,
29889,
13,
13,
6246,
445,
338,
1781,
2466,
29892,
1407,
4486,
9735,
1218,
29892,
11803,
763,
1438,
29889,
20103,
304,
1073,
825,
2924,
310,
2305,
591,
29915,
276,
16743,
411,
491,
1641,
445,
15993,
29889,
13,
13,
29902,
1497,
306,
471,
1083,
513,
287,
310,
278,
3244,
432,
261,
6764,
29890,
29896,
4687,
29892,
451,
393,
372,
471,
3721,
763,
372,
29889,
306,
1754,
278,
10230,
1363,
266,
608,
29906,
29945,
6140,
304,
367,
1811,
304,
7726,
363,
19042,
23035,
408,
2466,
896,
29915,
276,
297,
5030,
519,
310,
13590,
363,
6053,
29892,
925,
408,
432,
261,
6764,
29890,
29896,
471,
2599,
411,
1383,
20191,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Gay Samurai
Rodger McFarlane, caretaker to the end.
When I last glimpsed the famous large ears of Rodger McFarlane, who chose Truth or Consequences, New Mexico, as the enigmatic site for his recent suicide, he was standing outside a May 1 screening of Outrage, a documentary about closeted politicians. Rodger was the film’s standout star, the only one with laugh lines. (“I actually kind of admire them,” he says of the stalwart wives of Larry Craig and Jim McGreevey. “But that is some weird shit.”)
Rodger was always the star. He liked to say “I won my Oscar at a young age,” in reference to his work running Gay Men’s Health Crisis, which is where we met 25 years ago. He went on to become one of the savviest organizational strategists in the fight against AIDS. Six foot six and athletic, with towering Alabama charm and wit, he built Broadway Cares/Equity Fights AIDS into a grant-making behemoth, and then moved to Denver to remake Tim Gill’s gay-rights fund, where he worked until December, into a player in national politics. Now 54, you could still imagine him aboard a Navy submarine or trekking to the North Pole or competing in extreme Eco-Challenge races.
He looked happy to be back in New York. He did not seem to be in pain. But it turns out that he’d broken his back on the first day of an Eco-Challenge in Fiji in 2002, and though he underwent one operation, his friend Howard Grossman, a doctor, tells me he refused the surgical rebuilding that might have lessened his agony. His athletic life was behind him. “I know that was very distressing for him,” says Tim Sweeney, his successor at the Gill Foundation. “I would say, ‘Go coach! Do amateur competitions,’ and he gave me this look like ‘Are you out of your mind?’ ”
What none of his friends knew was that a recent heart attack added to his troubles. He refused bypass, too. He hated the idea of being hospitalized. Though he’d written The Complete Bedside Companion: A No-Nonsense Guide to Caring for the Seriously Ill, he was a terrible patient.
In his world, he was the caretaker. He doted on his brother David, who died of AIDS, and on the literary agent Jed Mattes, as he died of cancer, and on his old flame Larry Kramer, during a liver transplant. “Rodger stage-managed everything,” Kramer says. “He was in his element there.”
“Let’s catch a drink,” Rodger called to me after the screening, but two days later, he was already in New Mexico. The trip had been too much for him. “I really didn’t want to come back to civilization at all,” he said.
He had checked in to the Blackstone Hotsprings motel, and mailed farewells to his closest friends. He made arrangements with an undertaker. He settled his bills, and on May 15, sometime after 9 a.m., a bike rider found his lanky remains, pistol in hand. “I think of a gun as my Samurai sword,” he wrote.
Rodger always deplored self-pity. Grossman believes Rodger’s fatalism probably can’t be separated from his history in the epidemic, watching so many people die so horribly. “Life is fucking tough, and it’s not fair, goddamn it,” Rodger told me a year ago. “And if you didn’t learn that in the eighties, you didn’t learn anything.” | [
1,
28832,
3685,
332,
1794,
13,
13,
29934,
397,
914,
4052,
29943,
279,
25821,
29892,
2562,
29873,
5790,
304,
278,
1095,
29889,
13,
13,
10401,
306,
1833,
330,
2576,
567,
287,
278,
13834,
2919,
22827,
310,
7733,
914,
4052,
29943,
279,
25821,
29892,
1058,
12784,
1605,
2806,
470,
1281,
6831,
2063,
29892,
1570,
12568,
29892,
408,
278,
427,
335,
29885,
2454,
3268,
363,
670,
7786,
23921,
680,
29892,
540,
471,
13407,
5377,
263,
2610,
29871,
29896,
4315,
292,
310,
4451,
6617,
29892,
263,
1842,
653,
1048,
4694,
300,
287,
2832,
14722,
29889,
7733,
914,
471,
278,
2706,
30010,
29879,
2317,
449,
5810,
29892,
278,
871,
697,
411,
10569,
3454,
29889,
313,
30015,
29902,
2869,
2924,
310,
7336,
533,
963,
3995,
540,
4083,
310,
278,
28367,
10305,
281,
3145,
310,
26977,
28050,
322,
8507,
22805,
929,
6950,
29889,
1346,
6246,
393,
338,
777,
13543,
528,
277,
3178,
29897,
13,
13,
29934,
397,
914,
471,
2337,
278,
5810,
29889,
940,
23289,
304,
1827,
1346,
29902,
2113,
590,
19054,
472,
263,
4123,
5046,
3995,
297,
3407,
304,
670,
664,
2734,
28832,
7567,
30010,
29879,
15202,
29524,
275,
29892,
607,
338,
988,
591,
1539,
29871,
29906,
29945,
2440,
8020,
29889,
940,
3512,
373,
304,
4953,
697,
310,
278,
4048,
1403,
342,
8674,
1288,
16650,
2879,
297,
278,
8589,
2750,
319,
1367,
29903,
29889,
18372,
3661,
4832,
322,
28563,
293,
29892,
411,
19372,
292,
26911,
21192,
322,
12309,
29892,
540,
4240,
23291,
1704,
267,
29914,
6108,
537,
383,
5861,
319,
1367,
29903,
964,
263,
16690,
29899,
28990,
2306,
331,
720,
29892,
322,
769,
6153,
304,
3384,
369,
304,
337,
5675,
7870,
28047,
30010,
29879,
23852,
29899,
1266,
29879,
5220,
29892,
988,
540,
3796,
2745,
5846,
29892,
964,
263,
4847,
297,
4797,
22661,
29889,
2567,
29871,
29945,
29946,
29892,
366,
1033,
1603,
14034,
1075,
633,
29877,
538,
263,
13166,
1014,
24556,
470,
2578,
6859,
292,
304,
278,
4644,
349,
1772,
470,
5100,
292,
297,
18677,
382,
1111,
29899,
1451,
11768,
19830,
29889,
13,
13,
3868,
5148,
9796,
304,
367,
1250,
297,
1570,
3088,
29889,
940,
1258,
451,
2833,
304,
367,
297,
6788,
29889,
1205,
372,
12169,
714,
393,
540,
30010,
29881,
9391,
670,
1250,
373,
278,
937,
2462,
310,
385,
382,
1111,
29899,
1451,
11768,
297,
383,
13188,
297,
29871,
29906,
29900,
29900,
29906,
29892,
322,
2466,
540,
1090,
29893,
296,
697,
5858,
29892,
670,
5121,
17430,
402,
2124,
1171,
29892,
263,
11619,
29892,
10603,
592,
540,
15964,
278,
25300,
936,
337,
25237,
393,
1795,
505,
3109,
6419,
670,
946,
2592,
29889,
3600,
28563,
293,
2834,
471,
5742,
1075,
29889,
1346,
29902,
1073,
393,
471,
1407,
1320,
1253,
292,
363,
1075,
3995,
4083,
7870,
317,
1452,
1032,
29892,
670,
29433,
472,
278,
28047,
10606,
29889,
1346,
29902,
723,
1827,
29892,
5129,
8120,
11182,
29991,
1938,
28800,
5100,
2187,
18887,
322,
540,
4846,
592,
445,
1106,
763,
5129,
17506,
366,
714,
310,
596,
3458,
29973,
30010,
26622,
13,
13,
5618,
5642,
310,
670,
7875,
6363,
471,
393,
263,
7786,
5192,
5337,
2715,
304,
670,
18835,
29889,
940,
15964,
491,
3364,
29892,
2086,
29889,
940,
298,
630,
278,
2969,
310,
1641,
13457,
1891,
29889,
14832,
540,
30010,
29881,
3971,
450,
25034,
14195,
2975,
3831,
273,
291,
29901,
319,
1939,
29899,
29940,
787,
1947,
16886,
304,
1704,
292,
363,
278,
1816,
17365,
8408,
29892,
540,
471,
263,
16403,
16500,
29889,
13,
13,
797,
670,
3186,
29892,
540,
471,
278,
2562,
29873,
5790,
29889,
940,
270,
5715,
373,
670,
8099,
4699,
29892,
1058,
6423,
310,
319,
1367,
29903,
29892,
322,
373,
278,
22937,
10823,
18847,
9811,
267,
29892,
408,
540,
6423,
310,
23900,
29892,
322,
373,
670,
2030,
1652,
420,
26977,
476,
2572,
261,
29892,
2645,
263,
619,
369,
1301,
24389,
29889,
1346,
29934,
397,
914,
7408,
29899,
25240,
4129,
3995,
476,
2572,
261,
4083,
29889,
1346,
3868,
471,
297,
670,
1543,
727,
3178,
13,
13,
30015,
12024,
30010,
29879,
4380,
263,
13748,
3995,
7733,
914,
2000,
304,
592,
1156,
278,
4315,
292,
29892,
541,
1023,
3841,
2678,
29892,
540,
471,
2307,
297,
1570,
12568,
29889,
450,
17487,
750,
1063,
2086,
1568,
363,
1075,
29889,
1346,
29902,
2289,
3282,
30010,
29873,
864,
304,
2041,
1250,
304,
7631,
2133,
472,
599,
3995,
540,
1497,
29889,
13,
13,
3868,
750,
7120,
297,
304,
278,
6054,
12734,
379,
1862,
558,
886,
3184,
295,
29892,
322,
611,
2356,
20036,
5872,
29879,
304,
670,
21438,
7875,
29889,
940,
1754,
15196,
4110,
411,
385,
22332,
5790,
29889,
940,
17141,
670,
289,
6090,
29892,
322,
373,
2610,
29871,
29896,
29945,
29892,
1047,
5410,
1156,
29871,
29929,
263,
29889,
29885,
1696,
263,
4768,
446,
364,
1241,
1476,
670,
301,
804,
29891,
9242,
29892,
282,
19639,
297,
1361,
29889,
1346,
29902,
1348,
310,
263,
13736,
408,
590,
3685,
332,
1794,
22378,
3995,
540,
5456,
29889,
13,
13,
29934,
397,
914,
2337,
316,
572,
4395,
1583,
29899,
29886,
537,
29889,
402,
2124,
1171,
1339,
17180,
7733,
914,
30010,
29879,
18409,
1608,
3117,
508,
30010,
29873,
367,
13055,
515,
670,
4955,
297,
278,
9358,
680,
13076,
29892,
21217,
577,
1784,
2305,
762,
577,
4029,
1091,
368,
29889,
1346,
26754,
338,
285,
2707,
292,
260,
820,
29892,
322,
372,
30010,
29879,
451,
6534,
29892,
7339,
16846,
29876,
372,
3995,
7733,
914,
5429,
592,
263,
1629,
8020,
29889,
1346,
2855,
565,
366,
3282,
30010,
29873,
5110,
393,
297,
278,
9475,
583,
29892,
366,
3282,
30010,
29873,
5110,
3099,
3178
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
This copy is for your personal non-commercial use only. To order presentation-ready copies of Toronto Star content for distribution to colleagues, clients or customers, or inquire about permissions/licensing, please go to: www.TorontoStarReprints.com
Details of the purchase were not disclosed, but the new operators of the menswear chains says the debt structure of the company significantly reduced allowing it to focus on key initiatives for growth.
Article Continued Below
In January, cash-crunched Grafton-Fraser received temporary court protection so it could work to liquidate inventory and sell its assets.
A report filed with Ontario Superior Court said that Grafton-Fraser owed GSO Capital Partners about $39.4 million. It also owed $12.8 million to CIBC, which has a priority claim under an agreement between the two creditors.
Delivered dailyThe Morning Headlines Newsletter
The Toronto Star and thestar.com, each property of Toronto Star Newspapers Limited, One Yonge Street, 4th Floor, Toronto, ON, M5E 1E6. You can unsubscribe at any time. Please contact us or see our privacy policy for more information.
More from the Toronto Star & Partners
LOADING
Copyright owned or licensed by Toronto Star Newspapers Limited. All rights reserved. Republication or distribution of this content is expressly prohibited without the prior written consent of Toronto Star Newspapers Limited and/or its licensors. To order copies of Toronto Star articles, please go to: www.TorontoStarReprints.com | [
1,
910,
3509,
338,
363,
596,
7333,
1661,
29899,
510,
1050,
1455,
671,
871,
29889,
1763,
1797,
24329,
29899,
2040,
14591,
310,
17612,
7828,
2793,
363,
4978,
304,
23056,
21628,
29892,
13154,
470,
20330,
29892,
470,
297,
1548,
1048,
11239,
29914,
506,
575,
292,
29892,
3113,
748,
304,
29901,
7821,
29889,
29911,
272,
10268,
16213,
1123,
2158,
29879,
29889,
510,
13,
13,
10602,
310,
278,
20590,
892,
451,
766,
15603,
29892,
541,
278,
716,
12768,
310,
278,
18664,
705,
279,
521,
2708,
4083,
278,
2553,
29873,
3829,
310,
278,
5001,
16951,
12212,
14372,
372,
304,
8569,
373,
1820,
14511,
5056,
363,
14321,
29889,
13,
13,
9986,
2512,
2866,
262,
6742,
13866,
13,
13,
797,
5490,
29892,
274,
1161,
29899,
7283,
3322,
287,
402,
4154,
265,
29899,
29943,
3417,
261,
4520,
13201,
8973,
13047,
577,
372,
1033,
664,
304,
23904,
403,
11817,
706,
322,
19417,
967,
21608,
29889,
13,
13,
29909,
3461,
934,
29881,
411,
21718,
5670,
1611,
9245,
1497,
393,
402,
4154,
265,
29899,
29943,
3417,
261,
8152,
287,
402,
6156,
25343,
3455,
8397,
1048,
395,
29941,
29929,
29889,
29946,
7284,
29889,
739,
884,
8152,
287,
395,
29896,
29906,
29889,
29947,
7284,
304,
25781,
5371,
29892,
607,
756,
263,
20136,
5995,
1090,
385,
17327,
1546,
278,
1023,
16200,
943,
29889,
13,
13,
13157,
2147,
287,
14218,
1576,
3879,
1076,
12252,
9012,
10130,
15670,
13,
13,
1576,
17612,
7828,
322,
266,
342,
279,
29889,
510,
29892,
1269,
2875,
310,
17612,
7828,
1570,
1028,
21321,
28873,
29892,
3118,
612,
265,
479,
7103,
29892,
29871,
29946,
386,
383,
10102,
29892,
17612,
29892,
6732,
29892,
341,
29945,
29923,
29871,
29896,
29923,
29953,
29889,
887,
508,
443,
19496,
472,
738,
931,
29889,
3529,
6958,
502,
470,
1074,
1749,
5999,
4135,
8898,
363,
901,
2472,
29889,
13,
13,
20761,
515,
278,
17612,
7828,
669,
3455,
8397,
13,
13,
29428,
4214,
13,
13,
11882,
1266,
15205,
470,
7794,
21144,
491,
17612,
7828,
1570,
1028,
21321,
28873,
29889,
2178,
10462,
21676,
29889,
8063,
362,
470,
4978,
310,
445,
2793,
338,
4653,
368,
21460,
1573,
1728,
278,
7536,
3971,
20218,
310,
17612,
7828,
1570,
1028,
21321,
28873,
322,
29914,
272,
967,
7794,
575,
943,
29889,
1763,
1797,
14591,
310,
17612,
7828,
7456,
29892,
3113,
748,
304,
29901,
7821,
29889,
29911,
272,
10268,
16213,
1123,
2158,
29879,
29889,
510
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
from math import ceil
import threading
class Allotter(object):
def __init__(self, Handler, GlobalProgress):
self.globalprog = GlobalProgress
self.handler = Handler
# self.__allotter_lock__ = threading.Lock()
def makeBaseConn(self):
ranges = self.blockToRange(self.makeEvenBlock(len(self.handler.url.getAllUrl())))
for i, j in enumerate(self.handler.url.getAllUrl().keys()):
# print('make base conn')
self.globalprog.insert(j, *ranges[i])
if i + 1 >= len(ranges):
break
def splitRange(self, Range, num):
each = int((Range[1] - Range[0]) / num)
retlist = []
for i in range(num):
retlist.append((Range[0] + each * i, Range[0] + each * (i+1)))
if Range[1] > retlist[-1][1]:
retlist[-1] = (retlist[-1][0], Range[1])
return retlist
def makeEvenBlock(self, block_num):
"""it may returns more than total block"""
if not self.globalprog.block_map:
self.globalprog.makeMap()
each_block = ceil(len(self.globalprog.getMap()) * 1.0 / block_num)
blocks = []
# if each_block >= 1:
for i in range(block_num):
begin = i * each_block
end = (i + 1) * each_block
if begin < len(self.globalprog.getMap()):
blocks.append((begin, end))
else:
blocks.append((-1, -1))
blocks = list(filter(lambda x: x != (-1, -1), blocks))
# blocks.append((i * each_block, (i+1) * each_block))
blocks[-1] = (blocks[-1][0], len(self.globalprog.getMap()))
# else:
# blocks.append((0, len(self.globalprog.getMap())))
return blocks
# def assignAll(self):
# ranges = self.blockToRange(self.makeEvenBlock(self.handler.url.max_conn))
#
# for i in range(self.handler.url.max_conn):
# self.globalprog.insert(i, )
def getUrlsThread(self):
url_thread_table = [[] for i in range(len(self.handler.url.getAllId()))]
for i in self.globalprog.progresses.values():
if not i.isGoEnd():
url_thread_table[i.urlid].append(i)
return url_thread_table
def getIdleUrl(self):
idle_url = []
url_health = self.getUrlsHealth()
for i in self.handler.url.getAllUrl().keys():
for m in url_health:
if m[0] == i:
break
else:
idle_url.append(i)
return idle_url
def assignUrlid(self):
url_health_table = self.getUrlsHealth()
url_thread_table = self.getUrlsThread()
idle_url = self.getIdleUrl()
if not idle_url:
while True:
if not url_health_table:
put_urlid = -1
break
put_urlid = url_health_table.pop(-1)[0]
if self.handler.url.getAllUrl()[put_urlid].max_thread == -1 or \
len(url_thread_table[put_urlid]) < self.handler.url.getAllUrl()[put_urlid].max_thread:
break
else:
put_urlid = idle_url[0]
return put_urlid
def assignRange(self):
free_blocks = self.getFreeBlock()
half_block = [(int((i[1] - i[0]) / 2) + i[0], i[1]) for i in free_blocks]
ranges_table = self.blockToRange(half_block)
put_range = ranges_table[-1] if ranges_table else []
# print(put_range, self.globalprog.progresses.keys())
if put_range and put_range[0] == put_range[1]:
put_range = []
return put_range
def assign(self):
return self.assignUrlid(), self.assignRange()
def getUrlsHealth(self):
"""return: [(Urlid, AvgSpeed), ...]"""
urlspeed = {}
for i in self.globalprog.progresses.values():
if not i.isEnd():
urlspeed[i.urlid] = (urlspeed.get(i.urlid, (0, 0))[0] + 1,
urlspeed.get(i.urlid, (0, 0))[1] + i.getAvgSpeed())
for i, j in urlspeed.items():
urlspeed[i] = j[1] / j[0]
speed_table = sorted(urlspeed.items(), key=lambda x: x[1])
return speed_table
def getFreeBlock(self):
free_list = []
block_head = None
tmp_map = self.globalprog.getMap()
for i, j in enumerate(tmp_map):
if j is None:
if block_head is None:
block_head = i
else:
if block_head is not None:
free_list.append((block_head, i))
block_head = None
if block_head is not None:
free_list.append((block_head, len(tmp_map)))
return sorted(free_list, key=lambda x: (x[1] - x[0]))
def blockToRange(self, block_list):
retranges = []
the_last_block = len(self.globalprog.getMap())
for i in block_list:
begin = i[0] * self.handler.file.BLOCK_SIZE
end = i[1] * self.handler.file.BLOCK_SIZE
if i[0] < the_last_block:
if i[1] == the_last_block:
end = self.handler.file.size
retranges.append((begin, end))
else:
retranges.append((-1, -1))
# if retranges and retranges[-1][1] + self.handler.file.BLOCK_SIZE > self.handler.file.size:
# retranges[-1] = (retranges[-1][0], self.handler.file.size)
return list(filter(lambda x: x != (-1, -1), retranges))
| [
1,
29871,
13,
3166,
5844,
1053,
2257,
309,
13,
5215,
3244,
292,
13,
13,
1990,
2178,
327,
357,
29898,
3318,
1125,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
5166,
1358,
29892,
12002,
14470,
1125,
13,
4706,
1583,
29889,
10945,
29097,
353,
12002,
14470,
13,
4706,
1583,
29889,
13789,
353,
5166,
1358,
13,
13,
4706,
396,
1583,
17255,
497,
327,
357,
29918,
908,
1649,
353,
3244,
292,
29889,
16542,
580,
13,
13,
1678,
822,
1207,
5160,
1168,
29876,
29898,
1311,
1125,
13,
4706,
20238,
353,
1583,
29889,
1271,
1762,
6069,
29898,
1311,
29889,
5675,
29923,
854,
7445,
29898,
2435,
29898,
1311,
29889,
13789,
29889,
2271,
29889,
657,
3596,
5983,
580,
4961,
13,
13,
4706,
363,
474,
29892,
432,
297,
26985,
29898,
1311,
29889,
13789,
29889,
2271,
29889,
657,
3596,
5983,
2141,
8149,
580,
1125,
13,
9651,
396,
1596,
877,
5675,
2967,
11009,
1495,
13,
9651,
1583,
29889,
10945,
29097,
29889,
7851,
29898,
29926,
29892,
334,
29878,
6916,
29961,
29875,
2314,
13,
13,
9651,
565,
474,
718,
29871,
29896,
6736,
7431,
29898,
29878,
6916,
1125,
13,
18884,
2867,
13,
13,
13,
1678,
822,
6219,
6069,
29898,
1311,
29892,
12146,
29892,
954,
1125,
13,
4706,
1269,
353,
938,
3552,
6069,
29961,
29896,
29962,
448,
12146,
29961,
29900,
2314,
847,
954,
29897,
13,
13,
4706,
3240,
1761,
353,
5159,
13,
13,
4706,
363,
474,
297,
3464,
29898,
1949,
1125,
13,
9651,
3240,
1761,
29889,
4397,
3552,
6069,
29961,
29900,
29962,
718,
1269,
334,
474,
29892,
12146,
29961,
29900,
29962,
718,
1269,
334,
313,
29875,
29974,
29896,
4961,
13,
13,
4706,
565,
12146,
29961,
29896,
29962,
1405,
3240,
1761,
14352,
29896,
3816,
29896,
5387,
13,
9651,
3240,
1761,
14352,
29896,
29962,
353,
313,
2267,
1761,
14352,
29896,
3816,
29900,
1402,
12146,
29961,
29896,
2314,
13,
13,
4706,
736,
3240,
1761,
13,
13,
13,
13,
13,
1678,
822,
1207,
29923,
854,
7445,
29898,
1311,
29892,
2908,
29918,
1949,
1125,
13,
4706,
9995,
277,
1122,
3639,
901,
1135,
3001,
2908,
15945,
29908,
13,
4706,
565,
451,
1583,
29889,
10945,
29097,
29889,
1271,
29918,
1958,
29901,
13,
9651,
1583,
29889,
10945,
29097,
29889,
5675,
3388,
580,
13,
13,
4706,
1269,
29918,
1271,
353,
2257,
309,
29898,
2435,
29898,
1311,
29889,
10945,
29097,
29889,
657,
3388,
3101,
334,
29871,
29896,
29889,
29900,
847,
2908,
29918,
1949,
29897,
13,
13,
4706,
10930,
353,
5159,
13,
4706,
396,
565,
1269,
29918,
1271,
6736,
29871,
29896,
29901,
13,
13,
4706,
363,
474,
297,
3464,
29898,
1271,
29918,
1949,
1125,
13,
9651,
3380,
353,
474,
334,
1269,
29918,
1271,
13,
9651,
1095,
353,
313,
29875,
718,
29871,
29896,
29897,
334,
1269,
29918,
1271,
13,
9651,
565,
3380,
529,
7431,
29898,
1311,
29889,
10945,
29097,
29889,
657,
3388,
580,
1125,
13,
18884,
10930,
29889,
4397,
3552,
463,
29892,
1095,
876,
13,
9651,
1683,
29901,
13,
18884,
10930,
29889,
4397,
3552,
29899,
29896,
29892,
448,
29896,
876,
13,
13,
4706,
10930,
353,
1051,
29898,
4572,
29898,
2892,
921,
29901,
921,
2804,
8521,
29896,
29892,
448,
29896,
511,
10930,
876,
13,
4706,
396,
10930,
29889,
4397,
3552,
29875,
334,
1269,
29918,
1271,
29892,
313,
29875,
29974,
29896,
29897,
334,
1269,
29918,
1271,
876,
13,
13,
4706,
10930,
14352,
29896,
29962,
353,
313,
1271,
29879,
14352,
29896,
3816,
29900,
1402,
7431,
29898,
1311,
29889,
10945,
29097,
29889,
657,
3388,
22130,
13,
4706,
396,
1683,
29901,
13,
4706,
396,
268,
10930,
29889,
4397,
3552,
29900,
29892,
7431,
29898,
1311,
29889,
10945,
29097,
29889,
657,
3388,
580,
4961,
13,
4706,
736,
10930,
13,
13,
1678,
396,
822,
3566,
3596,
29898,
1311,
1125,
13,
1678,
396,
268,
20238,
353,
1583,
29889,
1271,
1762,
6069,
29898,
1311,
29889,
5675,
29923,
854,
7445,
29898,
1311,
29889,
13789,
29889,
2271,
29889,
3317,
29918,
13082,
876,
13,
1678,
396,
13,
1678,
396,
268,
363,
474,
297,
3464,
29898,
1311,
29889,
13789,
29889,
2271,
29889,
3317,
29918,
13082,
1125,
13,
1678,
396,
308,
1583,
29889,
10945,
29097,
29889,
7851,
29898,
29875,
29892,
1723,
13,
13,
13,
1678,
822,
679,
5983,
29879,
4899,
29898,
1311,
1125,
13,
4706,
3142,
29918,
7097,
29918,
2371,
353,
518,
2636,
363,
474,
297,
3464,
29898,
2435,
29898,
1311,
29889,
13789,
29889,
2271,
29889,
657,
3596,
1204,
22130,
29962,
13,
13,
4706,
363,
474,
297,
1583,
29889,
10945,
29097,
29889,
18035,
267,
29889,
5975,
7295,
13,
9651,
565,
451,
474,
29889,
275,
8120,
5044,
7295,
13,
18884,
3142,
29918,
7097,
29918,
2371,
29961,
29875,
29889,
2271,
333,
1822,
4397,
29898,
29875,
29897,
13,
13,
4706,
736,
3142,
29918,
7097,
29918,
2371,
13,
13,
1678,
822,
679,
1204,
280,
5983,
29898,
1311,
1125,
13,
4706,
28132,
29918,
2271,
353,
5159,
13,
4706,
3142,
29918,
354,
4298,
353,
1583,
29889,
657,
5983,
29879,
3868,
4298,
580,
13,
4706,
363,
474,
297,
1583,
29889,
13789,
29889,
2271,
29889,
657,
3596,
5983,
2141,
8149,
7295,
13,
9651,
363,
286,
297,
3142,
29918,
354,
4298,
29901,
13,
18884,
565,
286,
29961,
29900,
29962,
1275,
474,
29901,
13,
462,
1678,
2867,
13,
9651,
1683,
29901,
13,
18884,
28132,
29918,
2271,
29889,
4397,
29898,
29875,
29897,
13,
13,
4706,
736,
28132,
29918,
2271,
13,
13,
1678,
822,
3566,
5983,
333,
29898,
1311,
1125,
13,
4706,
3142,
29918,
354,
4298,
29918,
2371,
353,
1583,
29889,
657,
5983,
29879,
3868,
4298,
580,
13,
4706,
3142,
29918,
7097,
29918,
2371,
353,
1583,
29889,
657,
5983,
29879,
4899,
580,
13,
13,
4706,
28132,
29918,
2271,
353,
1583,
29889,
657,
1204,
280,
5983,
580,
13,
13,
4706,
565,
451,
28132,
29918,
2271,
29901,
13,
9651,
1550,
5852,
29901,
13,
18884,
565,
451,
3142,
29918,
354,
4298,
29918,
2371,
29901,
13,
462,
1678,
1925,
29918,
2271,
333,
353,
448,
29896,
13,
462,
1678,
2867,
13,
18884,
1925,
29918,
2271,
333,
353,
3142,
29918,
354,
4298,
29918,
2371,
29889,
7323,
6278,
29896,
9601,
29900,
29962,
13,
13,
18884,
565,
1583,
29889,
13789,
29889,
2271,
29889,
657,
3596,
5983,
580,
29961,
649,
29918,
2271,
333,
1822,
3317,
29918,
7097,
1275,
448,
29896,
470,
320,
13,
462,
4706,
7431,
29898,
2271,
29918,
7097,
29918,
2371,
29961,
649,
29918,
2271,
333,
2314,
529,
1583,
29889,
13789,
29889,
2271,
29889,
657,
3596,
5983,
580,
29961,
649,
29918,
2271,
333,
1822,
3317,
29918,
7097,
29901,
13,
462,
1678,
2867,
13,
13,
4706,
1683,
29901,
13,
9651,
1925,
29918,
2271,
333,
353,
28132,
29918,
2271,
29961,
29900,
29962,
13,
13,
4706,
736,
1925,
29918,
2271,
333,
13,
13,
13,
1678,
822,
3566,
6069,
29898,
1311,
1125,
13,
4706,
3889,
29918,
1271,
29879,
353,
1583,
29889,
657,
20475,
7445,
580,
13,
13,
4706,
4203,
29918,
1271,
353,
17288,
524,
3552,
29875,
29961,
29896,
29962,
448,
474,
29961,
29900,
2314,
847,
29871,
29906,
29897,
718,
474,
29961,
29900,
1402,
474,
29961,
29896,
2314,
363,
474,
297,
3889,
29918,
1271,
29879,
29962,
13,
13,
4706,
20238,
29918,
2371,
353,
1583,
29889,
1271,
1762,
6069,
29898,
24498,
29918,
1271,
29897,
13,
13,
4706,
1925,
29918,
3881,
353,
20238,
29918,
2371,
14352,
29896,
29962,
565,
20238,
29918,
2371,
1683,
5159,
13,
4706,
396,
1596,
29898,
649,
29918,
3881,
29892,
1583,
29889,
10945,
29097,
29889,
18035,
267,
29889,
8149,
3101,
13,
4706,
565,
1925,
29918,
3881,
322,
1925,
29918,
3881,
29961,
29900,
29962,
1275,
1925,
29918,
3881,
29961,
29896,
5387,
13,
9651,
1925,
29918,
3881,
353,
5159,
13,
4706,
736,
1925,
29918,
3881,
13,
13,
1678,
822,
3566,
29898,
1311,
1125,
13,
4706,
736,
1583,
29889,
16645,
5983,
333,
3285,
1583,
29889,
16645,
6069,
580,
13,
13,
1678,
822,
679,
5983,
29879,
3868,
4298,
29898,
1311,
1125,
13,
4706,
9995,
2457,
29901,
17288,
5983,
333,
29892,
7740,
29887,
26539,
511,
2023,
29962,
15945,
29908,
13,
13,
4706,
3142,
19322,
353,
6571,
13,
13,
4706,
363,
474,
297,
1583,
29889,
10945,
29097,
29889,
18035,
267,
29889,
5975,
7295,
13,
9651,
565,
451,
474,
29889,
275,
5044,
7295,
13,
18884,
3142,
19322,
29961,
29875,
29889,
2271,
333,
29962,
353,
313,
2271,
19322,
29889,
657,
29898,
29875,
29889,
2271,
333,
29892,
313,
29900,
29892,
29871,
29900,
876,
29961,
29900,
29962,
718,
29871,
29896,
29892,
13,
462,
462,
268,
3142,
19322,
29889,
657,
29898,
29875,
29889,
2271,
333,
29892,
313,
29900,
29892,
29871,
29900,
876,
29961,
29896,
29962,
718,
474,
29889,
657,
12810,
29887,
26539,
3101,
13,
13,
4706,
363,
474,
29892,
432,
297,
3142,
19322,
29889,
7076,
7295,
13,
9651,
3142,
19322,
29961,
29875,
29962,
353,
432,
29961,
29896,
29962,
847,
432,
29961,
29900,
29962,
13,
13,
4706,
6210,
29918,
2371,
353,
12705,
29898,
2271,
19322,
29889,
7076,
3285,
1820,
29922,
2892,
921,
29901,
921,
29961,
29896,
2314,
13,
13,
13,
4706,
736,
6210,
29918,
2371,
13,
13,
13,
1678,
822,
679,
20475,
7445,
29898,
1311,
1125,
13,
13,
4706,
3889,
29918,
1761,
353,
5159,
13,
13,
4706,
2908,
29918,
2813,
353,
6213,
13,
13,
4706,
13128,
29918,
1958,
353,
1583,
29889,
10945,
29097,
29889,
657,
3388,
580,
13,
13,
4706,
363,
474,
29892,
432,
297,
26985,
29898,
7050,
29918,
1958,
1125,
13,
9651,
565,
432,
338,
6213,
29901,
13,
18884,
565,
2908,
29918,
2813,
338,
6213,
29901,
13,
462,
1678,
2908,
29918,
2813,
353,
474,
13,
9651,
1683,
29901,
13,
18884,
565,
2908,
29918,
2813,
338,
451,
6213,
29901,
13,
462,
1678,
3889,
29918,
1761,
29889,
4397,
3552,
1271,
29918,
2813,
29892,
474,
876,
13,
462,
1678,
2908,
29918,
2813,
353,
6213,
13,
13,
4706,
565,
2908,
29918,
2813,
338,
451,
6213,
29901,
13,
9651,
3889,
29918,
1761,
29889,
4397,
3552,
1271,
29918,
2813,
29892,
7431,
29898,
7050,
29918,
1958,
4961,
13,
13,
4706,
736,
12705,
29898,
9021,
29918,
1761,
29892,
1820,
29922,
2892,
921,
29901,
313,
29916,
29961,
29896,
29962,
448,
921,
29961,
29900,
12622,
13,
13,
1678,
822,
2908,
1762,
6069,
29898,
1311,
29892,
2908,
29918,
1761,
1125,
13,
4706,
5663,
6916,
353,
5159,
13,
4706,
278,
29918,
4230,
29918,
1271,
353,
7431,
29898,
1311,
29889,
10945,
29097,
29889,
657,
3388,
3101,
13,
13,
4706,
363,
474,
297,
2908,
29918,
1761,
29901,
13,
9651,
3380,
353,
474,
29961,
29900,
29962,
334,
1583,
29889,
13789,
29889,
1445,
29889,
29933,
21339,
29918,
14226,
13,
9651,
1095,
353,
474,
29961,
29896,
29962,
334,
1583,
29889,
13789,
29889,
1445,
29889,
29933,
21339,
29918,
14226,
13,
13,
9651,
565,
474,
29961,
29900,
29962,
529,
278,
29918,
4230,
29918,
1271,
29901,
13,
18884,
565,
474,
29961,
29896,
29962,
1275,
278,
29918,
4230,
29918,
1271,
29901,
13,
462,
1678,
1095,
353,
1583,
29889,
13789,
29889,
1445,
29889,
2311,
13,
18884,
5663,
6916,
29889,
4397,
3552,
463,
29892,
1095,
876,
13,
9651,
1683,
29901,
13,
18884,
5663,
6916,
29889,
4397,
3552,
29899,
29896,
29892,
448,
29896,
876,
13,
13,
13,
4706,
396,
565,
5663,
6916,
322,
5663,
6916,
14352,
29896,
3816,
29896,
29962,
718,
1583,
29889,
13789,
29889,
1445,
29889,
29933,
21339,
29918,
14226,
1405,
1583,
29889,
13789,
29889,
1445,
29889,
2311,
29901,
13,
4706,
396,
268,
5663,
6916,
14352,
29896,
29962,
353,
313,
276,
509,
6916,
14352,
29896,
3816,
29900,
1402,
1583,
29889,
13789,
29889,
1445,
29889,
2311,
29897,
13,
13,
4706,
736,
1051,
29898,
4572,
29898,
2892,
921,
29901,
921,
2804,
8521,
29896,
29892,
448,
29896,
511,
5663,
6916,
876,
13,
13,
13,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Asheville, NC Hope For Horses
YP - The Real Yellow PagesSM - helps you find the right local businesses to meet your specific needs. Search results are sorted by a combination of factors to give you a set of choices in response to your search criteria. These factors are similar to those you might use to determine which business to select from a local Yellow Pages directory, including proximity to where you are searching, expertise in the specific services or products you need, and comprehensive business information to help evaluate a business's suitability for you. “Preferred” listings, or those with featured website buttons, indicate YP advertisers who directly provide information about their businesses to help consumers make more informed buying decisions. YP advertisers receive higher placement in the default ordering of search results and may appear in sponsored listings on the top, side, or bottom of the search results page.
This was the best idea I have had for an activity for my family. We got there and the staff were very warm and friendly. We got right on our horses and away we went. It was very relaxing and a beautiful ride. Once we got to the top the view was just as they had described. We could see for miles and miles. We will definitly be going back. I don't know how long they will be running the special, but it was only $25 each when we went. It only took us 10 minutes from Downtown Asheville and there was construction, so it closer than that on a good day. | [
1,
1094,
354,
4909,
29892,
25166,
7963,
1152,
379,
943,
267,
13,
13,
29979,
29925,
448,
450,
8195,
612,
4743,
349,
1179,
17061,
448,
6911,
366,
1284,
278,
1492,
1887,
5381,
267,
304,
5870,
596,
2702,
4225,
29889,
11856,
2582,
526,
12705,
491,
263,
10296,
310,
13879,
304,
2367,
366,
263,
731,
310,
19995,
297,
2933,
304,
596,
2740,
16614,
29889,
4525,
13879,
526,
2788,
304,
1906,
366,
1795,
671,
304,
8161,
607,
5381,
304,
1831,
515,
263,
1887,
612,
4743,
349,
1179,
3884,
29892,
3704,
23203,
537,
304,
988,
366,
526,
11975,
29892,
17924,
895,
297,
278,
2702,
5786,
470,
9316,
366,
817,
29892,
322,
15171,
6270,
5381,
2472,
304,
1371,
14707,
263,
5381,
29915,
29879,
14726,
3097,
363,
366,
29889,
1346,
6572,
14373,
30024,
1051,
886,
29892,
470,
1906,
411,
15000,
4700,
9828,
29892,
12266,
612,
29925,
18811,
275,
414,
1058,
4153,
3867,
2472,
1048,
1009,
5381,
267,
304,
1371,
11233,
414,
1207,
901,
23388,
1321,
5414,
1602,
12112,
29889,
612,
29925,
18811,
275,
414,
7150,
6133,
2174,
13561,
297,
278,
2322,
20520,
310,
2740,
2582,
322,
1122,
2615,
297,
21955,
4395,
1051,
886,
373,
278,
2246,
29892,
2625,
29892,
470,
5970,
310,
278,
2740,
2582,
1813,
29889,
13,
13,
4013,
471,
278,
1900,
2969,
306,
505,
750,
363,
385,
6354,
363,
590,
3942,
29889,
1334,
2355,
727,
322,
278,
13925,
892,
1407,
14294,
322,
19780,
29889,
1334,
2355,
1492,
373,
1749,
15100,
322,
3448,
591,
3512,
29889,
739,
471,
1407,
26681,
292,
322,
263,
9560,
22203,
29889,
9038,
591,
2355,
304,
278,
2246,
278,
1776,
471,
925,
408,
896,
750,
5439,
29889,
1334,
1033,
1074,
363,
7800,
322,
7800,
29889,
1334,
674,
8422,
368,
367,
2675,
1250,
29889,
306,
1016,
29915,
29873,
1073,
920,
1472,
896,
674,
367,
2734,
278,
4266,
29892,
541,
372,
471,
871,
395,
29906,
29945,
1269,
746,
591,
3512,
29889,
739,
871,
3614,
502,
29871,
29896,
29900,
6233,
515,
26028,
593,
776,
1094,
354,
4909,
322,
727,
471,
7632,
29892,
577,
372,
17649,
1135,
393,
373,
263,
1781,
2462,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Q:
CMMotionActivityManager Activities Not Printing When Calling
I made sure to add Motion to my plist. Not sure where I'm going wrong.
Below is my code:
import SwiftUI
import CoreMotion
struct Settings: View {
@State var walk = ""
@State var run = ""
@State var unk = ""
var body: some View {
VStack{
Text("Stationary: \(walk)")
Text("Walking: \(run)")
Text("Unknown: \(unk)")
Button(action: {
self.startTest()
}) {
Text("Start")
}
}
}
func startTest(){
let motionActivityManager = CMMotionActivityManager()
if CMMotionActivityManager.isActivityAvailable() {
motionActivityManager.startActivityUpdates(to: OperationQueue.main) { (motion) in
self.walk = (motion?.stationary)! ? "True" : "False"
self.run = (motion?.walking)! ? "True" : "False"
self.unk = (motion?.unknown)! ? "True" : "False"
print(self.walk)
print(self.run)
print(self.unk)
}
}
print("NONE")
}
}
A:
In this case (to make this view work) the fix is to make manager as property
struct Settings: View {
let motionActivityManager = CMMotionActivityManager()
// ... other code
func startTest(){
if CMMotionActivityManager.isActivityAvailable() {
// ... other code
but in general you have to place motionActivityManager somewhere at application-wide level (probably wrap in custom manager class), because startActivityUpdates(to:) can have only one hander. So you need to set up handler once and process/transform into your application wide notifications/events by yourself.
| [
1,
660,
29901,
13,
13,
29907,
7428,
8194,
3886,
3260,
21775,
1907,
2216,
13905,
292,
1932,
8251,
292,
13,
13,
29902,
1754,
1854,
304,
788,
7142,
291,
304,
590,
715,
391,
29889,
2216,
1854,
988,
306,
29915,
29885,
2675,
2743,
29889,
13,
21140,
340,
338,
590,
775,
29901,
13,
5215,
14156,
3120,
29871,
13,
5215,
10239,
29924,
8194,
13,
13,
4984,
19215,
29901,
4533,
426,
13,
13,
1678,
732,
2792,
722,
6686,
353,
5124,
13,
1678,
732,
2792,
722,
1065,
353,
5124,
13,
1678,
732,
2792,
722,
443,
29895,
353,
5124,
13,
13,
1678,
722,
3573,
29901,
777,
4533,
426,
13,
4706,
478,
7264,
29912,
13,
4706,
3992,
703,
22814,
653,
29901,
4269,
20919,
25760,
13,
4706,
3992,
703,
29956,
2235,
292,
29901,
4269,
3389,
25760,
13,
9651,
3992,
703,
14148,
29901,
4269,
2960,
25760,
13,
13,
9651,
11025,
29898,
2467,
29901,
426,
13,
18884,
1583,
29889,
2962,
3057,
580,
13,
9651,
5615,
426,
13,
18884,
3992,
703,
4763,
1159,
13,
9651,
500,
13,
13,
4706,
500,
13,
1678,
500,
13,
13,
1678,
3653,
1369,
3057,
4923,
13,
4706,
1235,
10884,
3886,
3260,
353,
315,
7428,
8194,
3886,
3260,
580,
13,
13,
4706,
565,
315,
7428,
8194,
3886,
3260,
29889,
275,
3886,
27635,
580,
426,
13,
9651,
10884,
3886,
3260,
29889,
2962,
3886,
3373,
15190,
29898,
517,
29901,
20462,
10620,
29889,
3396,
29897,
426,
313,
29885,
8194,
29897,
297,
13,
13,
18884,
1583,
29889,
20919,
353,
313,
29885,
8194,
9808,
19569,
653,
20198,
1577,
376,
5574,
29908,
584,
376,
8824,
29908,
13,
18884,
1583,
29889,
3389,
353,
313,
29885,
8194,
9808,
20919,
292,
20198,
1577,
376,
5574,
29908,
584,
376,
8824,
29908,
13,
18884,
1583,
29889,
2960,
353,
313,
29885,
8194,
9808,
26690,
20198,
1577,
376,
5574,
29908,
584,
376,
8824,
29908,
13,
18884,
1596,
29898,
1311,
29889,
20919,
29897,
13,
18884,
1596,
29898,
1311,
29889,
3389,
29897,
13,
18884,
1596,
29898,
1311,
29889,
2960,
29897,
13,
9651,
500,
13,
4706,
500,
13,
4706,
1596,
703,
29940,
12413,
1159,
13,
1678,
500,
13,
13,
29913,
13,
13,
29909,
29901,
13,
13,
797,
445,
1206,
313,
517,
1207,
445,
1776,
664,
29897,
278,
2329,
338,
304,
1207,
8455,
408,
2875,
13,
4984,
19215,
29901,
4533,
426,
13,
1678,
1235,
10884,
3886,
3260,
353,
315,
7428,
8194,
3886,
3260,
580,
13,
13,
1678,
849,
2023,
916,
775,
13,
13,
1678,
3653,
1369,
3057,
4923,
13,
4706,
565,
315,
7428,
8194,
3886,
3260,
29889,
275,
3886,
27635,
580,
426,
13,
13,
1678,
849,
2023,
916,
775,
13,
13,
4187,
297,
2498,
366,
505,
304,
2058,
10884,
3886,
3260,
9051,
472,
2280,
29899,
8157,
3233,
313,
771,
14815,
12244,
297,
2888,
8455,
770,
511,
1363,
1369,
3886,
3373,
15190,
29898,
517,
20925,
508,
505,
871,
697,
1361,
261,
29889,
1105,
366,
817,
304,
731,
701,
7834,
2748,
322,
1889,
29914,
9067,
964,
596,
2280,
9377,
25913,
29914,
13604,
491,
7535,
29889,
13,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Posterior Shoulder Instability.
Posterior shoulder instability is a relatively uncommon condition, occurring in ∼10% of those with shoulder instability. Because of the rarity of the condition and the lack of knowledge in treatment, it is often misdiagnosed or patients experience a delay in diagnosis. Posterior instability typically affects athletes participating in contact or overhead sports and is usually the result of repetitive microtrauma or blunt force with the shoulder in the provocative position of flexion, adduction, and internal rotation, leading to recurrent subluxation events. Acute traumatic posterior dislocations are rare injuries with an incidence rate of 1.1 per 100,000 person years. This rate is ∼20 times lower than that of anterior shoulder dislocations. Risk factors for recurrent instability are: (1) age below 40 at time of first instability; (2) dislocation during a seizure; (3) a large reverse Hill-Sachs lesion; and (4) glenoid retroversion. A firm understanding of the pathoanatomy, along with pertinent clinical and diagnostic modalities is required to accurately diagnosis and manage this condition. | [
1,
4918,
261,
1611,
10575,
261,
2799,
3097,
29889,
13,
6747,
261,
1611,
23468,
832,
3097,
338,
263,
13774,
443,
9435,
4195,
29892,
13920,
292,
297,
29871,
31186,
29896,
29900,
29995,
310,
1906,
411,
23468,
832,
3097,
29889,
7311,
310,
278,
364,
279,
537,
310,
278,
4195,
322,
278,
10225,
310,
7134,
297,
14502,
29892,
372,
338,
4049,
3984,
6051,
4211,
2662,
470,
22069,
7271,
263,
9055,
297,
24876,
19263,
29889,
4918,
261,
1611,
832,
3097,
12234,
6602,
29879,
28563,
267,
5221,
1218,
297,
6958,
470,
18702,
14717,
322,
338,
5491,
278,
1121,
310,
21159,
3321,
9200,
3018,
10859,
470,
1999,
1657,
4889,
411,
278,
23468,
297,
278,
25725,
1230,
2602,
310,
8525,
291,
29892,
594,
700,
428,
29892,
322,
7463,
13733,
29892,
8236,
304,
1162,
1264,
1014,
29880,
1314,
362,
4959,
29889,
7255,
1082,
1020,
398,
2454,
13446,
766,
2029,
800,
526,
10812,
10899,
14886,
411,
385,
5528,
5084,
6554,
310,
29871,
29896,
29889,
29896,
639,
29871,
29896,
29900,
29900,
29892,
29900,
29900,
29900,
2022,
2440,
29889,
910,
6554,
338,
29871,
31186,
29906,
29900,
3064,
5224,
1135,
393,
310,
14123,
23468,
766,
2029,
800,
29889,
390,
3873,
13879,
363,
1162,
1264,
832,
3097,
526,
29901,
313,
29896,
29897,
5046,
2400,
29871,
29946,
29900,
472,
931,
310,
937,
832,
3097,
29936,
313,
29906,
29897,
766,
5479,
2645,
263,
409,
466,
545,
29936,
313,
29941,
29897,
263,
2919,
11837,
9143,
29899,
29903,
496,
29879,
966,
291,
29936,
322,
313,
29946,
29897,
330,
2435,
3398,
24877,
3259,
29889,
319,
9226,
8004,
310,
278,
2224,
29877,
273,
8678,
29891,
29892,
3412,
411,
13499,
8946,
24899,
936,
322,
652,
21780,
13008,
1907,
338,
3734,
304,
7913,
2486,
24876,
19263,
322,
10933,
445,
4195,
29889
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Title: ntfs-3g 20070822 Beta
Date: 2006-08-30 18:16
Author: toy
Category: Apps
Slug: ntfs-3g_20070822_beta
此 [ntfs-3g](http://www.linux-ntfs.org) 驱动程序为访问 NTFS
文件系统提供完全的读写支持,但不包括访问加密文件、写入压缩文件、更改文件所有权及访问权限。由于目前
ntfs-3g 仍然在测试,所以需谨慎使用。
[下载 ntfs-3g 20070822
Beta](http://data.linux-ntfs.org/ntfs-3g-20070822-BETA.tgz)
| [
1,
18527,
29901,
302,
29873,
5847,
29899,
29941,
29887,
29871,
29906,
29900,
29900,
29955,
29900,
29947,
29906,
29906,
350,
1187,
13,
2539,
29901,
29871,
29906,
29900,
29900,
29953,
29899,
29900,
29947,
29899,
29941,
29900,
29871,
29896,
29947,
29901,
29896,
29953,
13,
13720,
29901,
304,
29891,
13,
10900,
29901,
2401,
29879,
13,
16973,
688,
29901,
302,
29873,
5847,
29899,
29941,
29887,
29918,
29906,
29900,
29900,
29955,
29900,
29947,
29906,
29906,
29918,
3571,
13,
13,
31389,
518,
593,
5847,
29899,
29941,
29887,
850,
1124,
597,
1636,
29889,
9389,
29899,
593,
5847,
29889,
990,
29897,
29871,
236,
172,
180,
30846,
31101,
31463,
30573,
235,
177,
194,
31658,
405,
8969,
29903,
13,
30333,
30631,
31185,
31675,
31302,
231,
193,
158,
31366,
30753,
30210,
235,
178,
190,
31479,
31541,
31695,
30214,
231,
192,
137,
30413,
31473,
233,
142,
175,
235,
177,
194,
31658,
30666,
31461,
30333,
30631,
30330,
31479,
30752,
232,
145,
142,
234,
191,
172,
30333,
30631,
30330,
31100,
31264,
30333,
30631,
30744,
30417,
233,
160,
134,
31436,
235,
177,
194,
31658,
233,
160,
134,
31175,
30267,
31272,
30909,
30895,
30658,
13,
593,
5847,
29899,
29941,
29887,
29871,
231,
190,
144,
31516,
30505,
31851,
31787,
30214,
30744,
30651,
31383,
235,
179,
171,
233,
136,
145,
30785,
30406,
30267,
13,
13,
29961,
30557,
31526,
302,
29873,
5847,
29899,
29941,
29887,
29871,
29906,
29900,
29900,
29955,
29900,
29947,
29906,
29906,
13,
29933,
1187,
850,
1124,
597,
1272,
29889,
9389,
29899,
593,
5847,
29889,
990,
29914,
593,
5847,
29899,
29941,
29887,
29899,
29906,
29900,
29900,
29955,
29900,
29947,
29906,
29906,
29899,
29933,
2544,
29909,
29889,
29873,
18828,
29897,
13
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |